/* ── MDA AWARDS GALLERY PAGE ── */

.mda-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(184,146,42,0.14), transparent 34%),
    var(--navy);
  padding: 48px 6% 90px;
}

.mda-back {
  display: inline-block;
  margin-bottom: 70px;

  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;

  transition: color 0.2s;
}

.mda-back:hover {
  color: var(--gold);
}

.mda-hero {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.mda-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  color: var(--white);
  margin: 18px 0 18px;
}

.mda-hero p {
  color: rgba(255,255,255,0.58);
  font-size: 17px;
  line-height: 1.8;
}

.mda-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.mda-gallery-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(184,146,42,0.25);
  border-radius: 6px;
  overflow: hidden;

  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.mda-gallery-card:hover {
  transform: translateY(-6px);
  background: rgba(184,146,42,0.08);
  border-color: rgba(184,146,42,0.55);
}

.mda-gallery-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.mda-card-info {
  padding: 22px 24px 26px;
}

.mda-card-info span {
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mda-year-button {
  display: inline-block;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.mda-year-button:hover {
  color: var(--gold-light);
}

.mda-card-info h3 {
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 20px;
  line-height: 1.35;
}

.mda-detail-grid .mda-gallery-card img {
  object-fit: contain;
  background: rgba(255,255,255,0.04);
}

/* Responsive */
@media (max-width: 900px) {
  .mda-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mda-gallery-card img {
    height: 360px;
  }
}

@media (max-width: 600px) {
  .mda-page {
    padding: 32px 5% 70px;
  }

  .mda-back {
    margin-bottom: 48px;
  }

  .mda-gallery-grid {
    grid-template-columns: 1fr;
  }

  .mda-gallery-card img {
    height: auto;
  }
}

.privacy-page {
  background: var(--off-white);
  min-height: 100vh;

  padding: 120px 10% 80px;
}

.privacy-container {
  max-width: 900px;
}

.privacy-lead {
  font-size: 18px;
  line-height: 1.8;

  color: var(--gray);

  margin-bottom: 52px;
}

.privacy-block {
  margin-bottom: 42px;
}

.privacy-block h3 {
  font-family: 'Playfair Display', serif;

  color: var(--navy);

  font-size: 26px;

  margin-bottom: 14px;
}

.privacy-block p {
  color: var(--gray);

  font-size: 15px;
  line-height: 1.9;
}
