:root {
  --primary: #17375e;
  --primary-2: #102741;
  --secondary: #233447;
  --accent: #b72e2e;
  --accent-2: #8f1f1f;
  --gold: #d4af37;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f8fafc;
  --card: #ffffff;
  --line: rgba(15, 23, 42, 0.08);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.sr-only { position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Crimson Text', serif;
  margin: 0 0 0.5rem;
}
p { line-height: 1.75; margin: 0 0 1rem; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  padding: 8px;
  flex: 0 0 58px;
}
.brand-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.brand-title {
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--primary);
}
.brand-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav ul,
.footer-links,
.contact-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav ul {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.main-nav a {
  color: var(--secondary);
  font-weight: 600;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 1.35rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 76vh;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 15, 31, 0.2), rgba(8, 15, 31, 0.65)),
    linear-gradient(120deg, rgba(18, 39, 67, 0.92), rgba(27, 47, 76, 0.68));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(183,46,46,0.18), transparent 22%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  padding: 5rem 0 6rem;
}
.hero-badge,
.eyebrow,
.item-badge,
.topic-badge,
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-media {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-frame {
  width: min(100%, 440px);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  backdrop-filter: blur(4px);
  position: relative;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.00)
  );
  pointer-events: none;
  z-index: 1;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-frame.is-empty {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.04);
}

.hero-photo-frame.is-empty img {
  opacity: 0;
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-media {
    order: -1;
  }

  .hero-photo-frame {
    width: min(100%, 360px);
    margin: 0 auto;
    aspect-ratio: 16 / 10;
  }
}

.hero-badge {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  max-width: 12ch;
  line-height: 1.02;
}
.hero-quote {
  max-width: 52rem;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-caption {
  color: rgba(255,255,255,0.82);
  max-width: 42rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 14px;
  padding: 0.95rem 1.3rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-2); }
.btn-secondary {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
}
.full-width { width: 100%; }

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(7, 13, 24, 0.38);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.38);
  border: 0;
  cursor: pointer;
}
.hero-dot.is-active { background: var(--gold); }

.section {
  padding: 5rem 0;
}
.section-light { background: #fff; }
.section-muted { background: #f3f6fa; }
.section-dark {
  background:
    linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #fff;
}
.section-card,
.story-card,
.contact-card,
.activity-card,
.conference-card,
.highlight-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.section-card {
  padding: 2rem;
}
.section-heading {
  margin-bottom: 1.6rem;
}
.section-heading.center {
  text-align: center;
}
.section-heading.light,
.section-heading.light p,
.section-heading.light .central-date {
  color: rgba(255,255,255,0.95);
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
}
.section-dark .section-heading h2 { color: #fff; }
.section-copy { max-width: 56rem; margin: 0 auto; }
.eyebrow {
  background: rgba(183,46,46,0.12);
  color: var(--accent);
}
.section-dark .eyebrow {
  background: rgba(255,255,255,0.13);
  color: #fff;
}
.lead {
  font-size: 1.07rem;
}

.featured-event {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.5rem;
  border-left: 5px solid var(--accent);
  background: #f8fafc;
  padding: 1.2rem;
  border-radius: 20px;
}
.featured-event-image {
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #e5edf6, #cfd9e7);
}
.featured-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-event-content h3 {
  font-size: 1.9rem;
  color: var(--primary);
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0.8rem 0 1rem;
}
.meta-pill {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--secondary);
}
.featured-badge {
  background: var(--accent);
  color: #fff;
  margin-bottom: 0.8rem;
}

.card-grid,
.highlight-grid,
.conference-grid {
  display: grid;
  gap: 1.4rem;
}
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.conference-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.activity-card,
.conference-card,
.highlight-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.activity-card:hover,
.conference-card:hover,
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}
.card-image {
  height: 220px;
  background: linear-gradient(135deg, #dde8f5, #c6d3e4);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 1.25rem 1.25rem 1.45rem;
}
.item-badge,
.topic-badge {
  background: rgba(23,55,94,0.08);
  color: var(--primary);
}
.card-title {
  font-size: 1.6rem;
  color: var(--primary);
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0.65rem 0 0.9rem;
}
.card-meta i {
  color: var(--accent);
}

.highlight-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}
.highlight-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--gold);
}
.highlight-card h3 {
  color: #fff;
  font-size: 1.55rem;
}

.two-col,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
.two-col {
  grid-template-columns: 1.05fr 0.95fr;
}
.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}
.story-card,
.contact-card {
  padding: 1.8rem;
}
.story-card h3,
.contact-card h3 {
  color: var(--primary);
  font-size: 1.8rem;
}
.check-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.95rem;
  align-items: flex-start;
}
.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  margin-top: 0.15rem;
}
.contact-list li {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1rem;
}
.contact-list i {
  color: var(--accent);
  width: 16px;
}
.newsletter-form {
  display: grid;
  gap: 0.9rem;
}
.newsletter-form input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.95rem 1rem;
  font: inherit;
}
.newsletter-form input:focus {
  outline: 2px solid rgba(183,46,46,0.12);
  border-color: var(--accent);
}
.form-message {
  min-height: 1.3rem;
  font-size: 0.95rem;
}
.form-message.success { color: #0f7a40; }
.form-message.error { color: #b91c1c; }
.muted, .empty-state { color: var(--muted); }
.empty-state {
  text-align: center;
  padding: 1.1rem;
  border-radius: 16px;
  background: rgba(23,55,94,0.04);
}
.hidden { display: none !important; }

.site-footer {
  background: var(--primary-2);
  color: rgba(255,255,255,0.9);
  padding: 4rem 0 2rem;
}
.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}
.footer-brand .brand-title,
.footer-brand .brand-subtitle,
.site-footer h4,
.footer-links a,
.footer-copy,
.footer-bottom p { color: inherit; }
.footer-links li { margin-bottom: 0.7rem; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2rem;
  padding-top: 1.3rem;
  text-align: center;
}

.loading-screen {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(248,250,252,0.96);
  z-index: 80;
}
.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.loader {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 4px solid rgba(23,55,94,0.12);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .conference-grid,
  .highlight-grid,
  .two-col,
  .contact-grid,
  .footer-grid,
  .featured-event {
    grid-template-columns: 1fr;
  }
  .featured-event-image { min-height: 220px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: 0 1rem;
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }
  .hero-control { display: none; }
  .hero-content { padding: 5rem 0 4.8rem; }
  .hero h1 { max-width: none; }
  .card-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .section-card, .story-card, .contact-card { padding: 1.4rem; }
}
.hero.hero-compact,
.hero.hero-compact .hero-content {
  min-height: 58vh;
}
.hero.hero-compact .hero-content {
  padding: 3.6rem 0 3.9rem;
}
.hero.hero-compact .hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}
.hero.hero-compact .hero-photo-frame {
  width: min(100%, 390px);
  aspect-ratio: 5 / 4;
}
.intro-text-section {
  padding-top: 2.25rem;
  padding-bottom: 1.25rem;
}
.intro-text-wrap {
  width: min(1040px, calc(100% - 2rem));
  margin: 0 auto;
}
.intro-slider-wrap-free {
  max-width: 980px;
  margin: 0 auto;
}
.intro-slides {
  position: relative;
  min-height: 190px;
}
.intro-slides-free {
  min-height: 220px;
}
.intro-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.intro-message {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.8;
  color: var(--secondary);
}
.intro-dots {
  margin-top: 1rem;
  display: flex;
  gap: .55rem;
  justify-content: center;
  flex-wrap: wrap;
}
.intro-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: rgba(23,55,94,0.18);
  cursor: pointer;
}
.intro-dot.is-active {
  background: var(--accent);
}
.featured-section {
  padding-top: .5rem;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
}
.detail-link:hover {
  text-decoration: underline;
}
.detail-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 3rem 0 2.5rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.2rem;
}
.detail-hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 1.75rem 1.85rem;
}
.detail-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 900px;
}
.detail-meta {
  color: rgba(255,255,255,0.9);
}
.detail-article {
  overflow: hidden;
}
.detail-feature-image {
  margin: -1.8rem -1.8rem 1.6rem;
  min-height: 320px;
}
.detail-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-quote {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: rgba(23,55,94,0.04);
  font-family: 'Crimson Text', serif;
  font-size: 1.35rem;
  color: var(--primary);
}
.detail-body p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}
.detail-gallery figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(23,55,94,0.03);
}
.detail-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.detail-gallery figcaption {
  padding: .8rem .95rem 1rem;
  color: var(--muted);
  font-size: .94rem;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.detail-video-wrap,
.detail-cta-wrap {
  margin-top: 1.8rem;
}
@media (max-width: 980px) {
}
@media (max-width: 760px) {
  .hero.hero-compact,
  .hero.hero-compact .hero-content {
    min-height: 58vh;
  }
  .detail-gallery {
    grid-template-columns: 1fr;
  }
}



/* ===== V6 editorial detail + prensa ===== */
.hero-compact {
  min-height: 64vh;
}
.hero-compact .hero-content {
  min-height: 64vh;
  padding: 4rem 0 5rem;
}
.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent);
}
.detail-link i { font-size: 0.9rem; }

.editorial-hero {
  position: relative;
  min-height: 52vh;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.detail-hero-backdrop,
.detail-hero-overlay {
  position: absolute;
  inset: 0;
}
.detail-hero-backdrop {
  background-position: center;
  background-size: cover;
  opacity: 0.28;
  transform: scale(1.03);
}
.detail-hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 13, 24, 0.15), rgba(7, 13, 24, 0.72)),
    linear-gradient(120deg, rgba(18,39,67,0.92), rgba(27,47,76,0.72));
}
.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 3.5rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.back-link-light { color: rgba(255,255,255,0.95); }
.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}
.detail-hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.02;
  max-width: 13ch;
}
.detail-subtitle {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.92);
  max-width: 46rem;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  margin-top: 1.2rem;
  color: rgba(255,255,255,0.88);
}
.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.detail-summary {
  max-width: 44rem;
  color: rgba(255,255,255,0.92);
  margin-top: 1.2rem;
}
.detail-side-image {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  min-height: 320px;
}
.detail-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-main-section {
  padding-top: 0;
}
.detail-layout {
  width: min(1180px, calc(100% - 2rem));
  margin: -3rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.6rem;
  align-items: start;
}
.detail-article-card {
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 2rem clamp(1.25rem, 2vw, 2.4rem);
}
.detail-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 1rem;
}
.detail-aside-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 1.2rem 1.15rem;
}
.detail-aside-card h3 {
  margin-bottom: 0.8rem;
  color: var(--primary);
}
.detail-aside-actions {
  display: grid;
  gap: 0.75rem;
}
.btn-dark-outline {
  border-color: rgba(23,55,94,0.2);
  color: var(--primary);
  background: rgba(23,55,94,0.03);
}
.btn-dark-outline:hover {
  background: rgba(23,55,94,0.08);
}

.detail-facts {
  display: grid;
  gap: 0.95rem;
}
.fact-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.8rem;
  align-items: start;
}
.fact-row i {
  color: var(--accent);
  margin-top: 0.15rem;
}
.fact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.detail-quote {
  margin: 0 0 1.75rem;
  padding: 1.2rem 1.35rem 1.2rem 1.6rem;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(212,175,55,0.08), rgba(255,255,255,0));
  font-family: 'Crimson Text', serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--primary-2);
}
.editorial-body {
  font-size: 1.05rem;
}
.editorial-body p {
  margin-bottom: 1.18rem;
}
.editorial-body .opening-paragraph:first-letter {
  float: left;
  font-size: 3.5rem;
  line-height: 0.8;
  padding-right: 0.45rem;
  font-family: 'Crimson Text', serif;
  color: var(--accent);
}

.detail-section-head {
  margin: 2rem 0 1rem;
}
.detail-section-head h2 {
  color: var(--primary);
  font-size: 2rem;
}
.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gallery-item {
  margin: 0;
  grid-column: span 6;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 32px rgba(15,23,42,0.1);
}
.gallery-item-1 { grid-column: span 7; }
.gallery-item-2 { grid-column: span 5; }
.gallery-item-3 { grid-column: span 5; }
.gallery-item-4 { grid-column: span 7; }
.gallery-item-5 { grid-column: span 6; }
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption {
  padding: 0.8rem 0.9rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.detail-video-grid {
  display: grid;
  gap: 1.2rem;
}
.video-card {
  background: linear-gradient(180deg, rgba(23,55,94,0.03), rgba(23,55,94,0.01));
  border: 1px solid rgba(23,55,94,0.08);
  border-radius: 22px;
  overflow: hidden;
}
.video-copy {
  padding: 1rem 1.1rem 1.2rem;
}
.video-copy h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.video-copy p {
  color: var(--muted);
  margin-bottom: 0;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.press-hero {
  background: linear-gradient(135deg, rgba(23,55,94,0.96), rgba(16,39,65,0.92));
  color: #fff;
  padding: 4.5rem 0 4rem;
}
.press-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.press-intro {
  max-width: 48rem;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.9);
}
.press-featured {
  margin-bottom: 2rem;
}
.press-feature-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.2rem;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.press-feature-copy {
  padding: 1.4rem 1.5rem;
}
.press-feature-copy h3 {
  font-size: 2rem;
  color: var(--primary);
}
.press-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.press-card,
.link-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.press-card .card-body,
.link-card {
  padding: 1.2rem;
}
.press-card-image {
  min-height: 220px;
}
.press-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.link-card h3 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 0.55rem;
}
.link-card-top {
  margin-bottom: 0.8rem;
}

@media (max-width: 1100px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-aside {
    position: static;
    order: -1;
  }
  .press-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .detail-hero-grid,
  .press-feature-card {
    grid-template-columns: 1fr;
  }
  .detail-side-image {
    min-height: 240px;
  }
  .detail-gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item,
  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4,
  .gallery-item-5 {
    grid-column: auto;
  }
  .gallery-item img {
    height: 240px;
  }
}

@media (max-width: 640px) {
  .detail-hero-inner {
    padding-top: 2rem;
  }
  .detail-article-card {
    padding: 1.25rem;
  }
  .press-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }
}