:root {
  --bg: #f4f8f6;
  --bg-soft: #fbfdfb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #183434;
  --muted: #667874;
  --line: rgba(24, 52, 52, 0.1);
  --primary: #0c6a5f;
  --primary-dark: #07473f;
  --primary-soft: #d7eee8;
  --accent: #dd7a3f;
  --accent-dark: #b85d27;
  --sand: #e4edf0;
  --shadow-lg: 0 28px 70px rgba(24, 52, 52, 0.12);
  --shadow-md: 0 14px 30px rgba(24, 52, 52, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(12, 106, 95, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(221, 122, 63, 0.08), transparent 26%),
    linear-gradient(180deg, #f8fbf9 0%, #eef5f4 100%);
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 1.5rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(248, 251, 249, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, #2c9d8b 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-md);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.85rem;
}

.header-nav,
.header-actions,
.hero-actions,
.progress-heading,
.progress-footer,
.documents-list,
.footer-switcher {
  display: flex;
}

.header-nav {
  flex-wrap: wrap;
  gap: 1rem;
}

.header-nav a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--primary-dark);
}

.header-actions {
  align-items: center;
  gap: 0.7rem;
}

.language-switcher {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.lang-btn,
.amount-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lang-btn {
  padding: 0.5rem 0.8rem;
}

.lang-btn.active {
  background: var(--primary);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.button:hover,
.button:focus-visible,
.lang-btn:hover,
.lang-btn:focus-visible,
.amount-btn:hover,
.amount-btn:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #f39a5d 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(221, 122, 63, 0.26);
}

.button-secondary {
  border: 1px solid rgba(24, 52, 52, 0.1);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
}

.button-header {
  min-height: 46px;
  padding-inline: 1.1rem;
}

.button-block {
  width: 100%;
}

.hero,
.section {
  padding: 4.5rem 0;
}

.hero {
  padding-top: 2.5rem;
}

.hero-grid,
.hero-side,
.vision-grid,
.impact-grid,
.transparency-grid,
.media-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-grid {
  gap: 1.75rem;
}

.hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.hero-copy h1,
.hero-copy .hero-subtitle,
.hero-copy .hero-actions,
.hero-copy .trust-inline {
  margin-top: 0;
}

.hero-side {
  align-items: start;
  gap: 1.4rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0.9rem;
  font-size: 4.8rem;
}

.hero-copy h1 {
  font-size: 2.4rem;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: 3rem;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.hero-subtitle,
.section-heading p,
.vision-card p,
.impact-card p,
.gallery-card p,
.contact-card p,
.disclaimer,
.footer-copy,
.summary-text,
.microcopy,
.donation-note,
.trust-list li,
.footer-legal p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-inline,
.trust-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-inline li,
.trust-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
}

.trust-inline li::before,
.trust-list li::before {
  content: "";
  position: absolute;
  top: 0.56rem;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #f39a5d 100%);
}

.hero-story-card,
.donation-panel,
.vision-card,
.impact-card,
.gallery-card,
.trust-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.hero-story-card,
.donation-panel,
.vision-card,
.impact-card,
.trust-panel,
.contact-card {
  padding: 1.45rem;
}

.hero-story-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 71, 63, 0.92), rgba(12, 106, 95, 0.92)),
    url("https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?auto=format&fit=crop&w=1200&q=80") center/cover;
  color: #fff;
}

.hero-story-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -25% 38%;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
}

.hero-story-card > * {
  position: relative;
}

.hero-story-card p,
.story-metric-label {
  color: rgba(255, 255, 255, 0.84);
}

.story-tag {
  display: inline-flex;
  align-self: start;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-story-metrics,
.partner-strip,
.footer-contacts {
  display: grid;
  gap: 0.85rem;
}

.hero-story-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-story-metrics strong,
.summary-value,
.progress-amount,
.progress-goal,
#progressPercent {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.05;
}

.donation-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 247, 240, 0.97));
}

.donation-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.amount-btn {
  min-width: calc(50% - 0.35rem);
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text);
}

.amount-btn.active {
  border-color: var(--accent);
  background: rgba(221, 122, 63, 0.12);
  color: var(--accent-dark);
}

.donation-summary,
.donation-progress-card {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(12, 106, 95, 0.06);
}

.summary-label,
.progress-label,
.story-metric-label {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.progress-heading,
.progress-footer {
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.progress-meta {
  text-align: right;
}

.progress-bar {
  width: 100%;
  height: 16px;
  margin: 1rem 0 0.8rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 106, 95, 0.12);
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-dark) 0%, #2bb39a 100%);
  transition: width 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.info-points {
  gap: 0.75rem;
  margin: 1rem 0;
}

.info-point {
  flex: 1;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.info-point span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.info-point p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.site-modal.is-open {
  display: block;
}

.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 23, 22, 0.55);
  backdrop-filter: blur(6px);
}

.site-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 1rem), 920px);
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fffdf9 0%, #f1f7f5 100%);
  box-shadow: 0 30px 90px rgba(12, 29, 28, 0.22);
}

.site-modal-content {
  padding: 1.25rem;
}

.modal-close {
  position: sticky;
  top: 0.75rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0.75rem 0.75rem 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-intro {
  max-width: 64ch;
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.modal-info-grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.modal-info-card,
.modal-progress-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
}

.section-alt {
  background: linear-gradient(180deg, rgba(12, 106, 95, 0.04), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 64ch;
  margin-bottom: 2rem;
}

.section-heading-compact {
  margin-bottom: 1.25rem;
}

.left {
  margin-bottom: 1.4rem;
}

.partner-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.vision-grid,
.impact-grid,
.imprint-grid,
.media-grid,
.partner-strip,
.footer-contacts,
.help-grid,
.sponsor-grid {
  grid-template-columns: 1fr;
}

.project-copy,
.help-card,
.bank-details,
.imprint-content {
  color: var(--muted);
}

.project-copy {
  display: grid;
  gap: 1rem;
  max-width: 920px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
}

.project-copy p,
.help-card p,
.bank-details p,
.imprint-content p {
  margin-bottom: 0;
}

.help-grid,
.sponsor-grid,
.contact-section-grid {
  display: grid;
  gap: 1.25rem;
}

.help-card,
.sponsor-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.help-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.45rem;
}

.help-card h3 {
  color: var(--text);
}

.sponsor-card {
  display: grid;
  gap: 0.35rem;
  min-height: 128px;
  padding: 1.35rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sponsor-logo {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
  object-fit: contain;
}

.sponsor-card:hover,
.sponsor-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(24, 52, 52, 0.12);
}

.sponsor-card span {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
}

.sponsor-card small {
  color: var(--muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.bank-details {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.bank-details strong {
  color: var(--text);
}

.pdf-preview-section {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.pdf-preview-section h3 {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.pdf-preview-container {
  width: 100%;
  height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-soft);
}

.pdf-preview-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.pdf-actions {
  display: flex;
  gap: 0.75rem;
}

.imprint-content {
  display: grid;
  gap: 0.9rem;
}

.vision-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 248, 244, 0.92));
}

.impact-card {
  position: relative;
  overflow: hidden;
}

.impact-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 122, 63, 0.18), transparent 65%);
}

.impact-value {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--primary-dark);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
}

.transparency-grid {
  align-items: start;
}

.allocation-list {
  display: grid;
  gap: 1rem;
}

.transparency-card {
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.transparency-card h3 {
  margin-bottom: 0.5rem;
}

.trust-panel {
  background: linear-gradient(180deg, rgba(7, 71, 63, 0.96), rgba(12, 106, 95, 0.96));
  color: #fff;
}

.trust-panel h3 {
  margin-bottom: 1rem;
}

.trust-list li {
  color: rgba(255, 255, 255, 0.84);
}

.gallery-card {
  overflow: hidden;
  padding: 0;
  flex: 0 0 320px;
  margin-right: 20px;
}

.gallery-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-button-group {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.gallery-download-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(24, 52, 52, 0.15);
}

.gallery-download-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(24, 52, 52, 0.2);
}

.gallery-download-btn:active {
  transform: scale(0.95);
}

.gallery-pdf-btn {
  font-size: 1.1rem;
  padding: 0;
}

.gallery-card-copy {
  padding: 1.15rem 1.2rem 1.3rem;
}

/* Horizontal Gallery Navigation */
.gallery-navigation {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gallery-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(24, 52, 52, 0.15);
  flex-shrink: 0;
}

.gallery-nav-btn:hover:not(:disabled) {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(24, 52, 52, 0.2);
}

.gallery-nav-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.gallery-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.gallery-scroll-container {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.imprint-grid {
  display: grid;
  gap: 1rem;
}

.imprint-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.imprint-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 2.8rem 0 3.2rem;
  border-top: 1px solid rgba(24, 52, 52, 0.08);
  background: rgba(255, 255, 255, 0.48);
}

.footer-grid {
  align-items: start;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 249, 0.94));
}

.contact-card h4 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.contact-role {
  margin: 0 0 0.75rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.contact-links {
  display: grid;
  gap: 0.45rem;
}

.contact-links a {
  color: var(--primary-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-legal {
  margin-top: 1rem;
}

.footer-legal p {
  margin-bottom: 0.55rem;
}

.footer-copy {
  margin: 1rem 0 0;
}

@media (min-width: 720px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .hero,
  .section {
    padding: 5.3rem 0;
  }

  .vision-grid,
  .impact-grid,
  .imprint-grid,
  .media-grid,
  .partner-strip,
  .footer-contacts,
  .help-grid,
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    align-items: start;
    gap: 2rem;
  }

  .hero-side {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: start;
  }

  .vision-grid,
  .impact-grid,
  .imprint-grid,
  .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .transparency-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }

  .contact-section-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: start;
  }

  .partner-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }
}

@media (max-width: 979px) {
  .header-nav {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 719px) {
  h1 {
    font-size: 2.65rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-story-metrics strong,
  .summary-value,
  .progress-amount,
  .progress-goal,
  #progressPercent {
    font-size: 2rem;
  }

  .impact-value {
    font-size: 2.2rem;
  }

  .button-header {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .progress-heading,
  .progress-footer,
  .info-points {
    display: grid;
  }

  .progress-meta {
    text-align: left;
  }

  .site-modal-dialog {
    width: min(calc(100% - 0.75rem), 920px);
    max-height: calc(100vh - 0.75rem);
    margin: 0.375rem auto;
  }

  .site-modal-content {
    padding: 1rem;
  }

  .pdf-preview-container {
    height: 240px;
  }

  .gallery-download-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .gallery-button-group {
    top: 0.5rem;
    right: 0.5rem;
    gap: 0.35rem;
  }

  .gallery-card {
    flex: 0 0 280px;
    margin-right: 15px;
  }

  .gallery-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}

/* Large screens - show more cards at once */
@media (min-width: 980px) {
  .gallery-card {
    flex: 0 0 320px;
    margin-right: 20px;
  }

  .gallery-nav-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}
}
