/* ============================================================
   travel-detail.css — Аялал жуулчлалын цогцолбор/чуулга/төсөл
   td- prefix. index.html шиг navy + red, зураг/видео голчилсон.
   ============================================================ */

.td-body { background: #ffffff; }


/* ─── BREADCRUMB ─── */
.td-breadcrumb { font-size: .82rem; }
.td-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.td-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.td-breadcrumb a:hover { color: var(--navy); }
.td-breadcrumb [aria-current="page"] {
  color: var(--navy);
  font-weight: 700;
}
.td-breadcrumb i { font-size: .55rem; color: #bbb; }


/* ═══════════════════════════════════════════════════════════
   HERO — Full-bleed cinematic
   ═══════════════════════════════════════════════════════════ */
.td-hero {
  position: relative;
  height: clamp(420px, 70vh, 720px);
  overflow: hidden;
  background: #031F3E;
}
.td-hero-img { position: absolute; inset: 0; }
.td-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.td-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,31,62,.2) 0%, rgba(3,31,62,0) 30%, rgba(3,31,62,.9) 100%);
}

.td-hero-content {
  position: absolute;
  bottom: 60px;
  left: 0; right: 0;
  color: #fff;
  z-index: 2;
}
.td-hero-num {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--red);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.td-hero-title {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.1;
  margin: 0 0 12px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .55);
}
.td-hero-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, .9);
  margin: 0;
  letter-spacing: .02em;
  max-width: 720px;
}

.td-hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.td-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.td-hero-stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.td-hero-stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}


/* ═══════════════════════════════════════════════════════════
   ANCHOR NAV — sticky
   ═══════════════════════════════════════════════════════════ */
.td-anchor-nav {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.td-anchor-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  gap: 0;
  -webkit-overflow-scrolling: touch;
}
.td-anchor {
  display: inline-block;
  padding: 16px 22px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.td-anchor:hover { color: #fff; }
.td-anchor.active {
  color: #fff;
  border-bottom-color: var(--red);
}


/* ═══════════════════════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════════════════════ */
.td-section {
  padding: 80px 0;
  background: #ffffff;
  scroll-margin-top: 120px;
}
.td-section-alt { background: #f5f5f5; }
.td-section-dark { background: var(--navy); color: #fff; }

.td-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px solid #e0e0e0;
}
.td-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
}
.td-section-icon i { color: #fff; font-size: 1rem; }
.td-section-dark .td-section-icon {
  background: var(--red);
}
.td-section-head h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: .005em;
}
.td-section-dark .td-section-head h2 { color: #fff; }
.td-section-dark .td-section-head { border-bottom-color: rgba(255, 255, 255, .15); }


/* ═══════════════════════════════════════════════════════════
   1. ТАНИЛЦУУЛГА — text + intro photo + video
   ═══════════════════════════════════════════════════════════ */
.td-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.td-intro-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.td-intro-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 500;
  padding: 18px 22px;
  background: #f5f5f5;
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
  margin: 0;
}
.td-intro-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}
.td-intro-text p strong { color: var(--navy); }

.td-intro-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.td-intro-photo {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.td-intro-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.td-intro-video {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  background: var(--navy);
  cursor: pointer;
  display: block;
}
.td-intro-video img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .8;
  transition: opacity .2s;
}
.td-intro-video:hover img { opacity: 1; }
.td-intro-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.5) 100%);
}
.td-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform .2s;
  box-shadow: 0 12px 30px rgba(233,21,24, .35);
}
.td-intro-video:hover .td-video-play { transform: translate(-50%, -50%) scale(1.08); }
.td-video-play i { color: #fff; font-size: 1.4rem; padding-left: 4px; }
.td-video-label {
  position: absolute;
  bottom: 14px; left: 16px;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  z-index: 2;
}


/* ═══════════════════════════════════════════════════════════
   2. ЦАГИЙН ХУВААРЬ
   ═══════════════════════════════════════════════════════════ */
.td-schedule {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
.td-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.td-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid #f0f0f0;
}
.td-hours li:last-child { border-bottom: none; }
.td-hours li:nth-child(even) { background: #fafafa; }
.td-hours-day {
  font-weight: 700;
  color: var(--navy);
  font-size: .92rem;
}
.td-hours-time {
  color: var(--text);
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: .9rem;
}
.td-hours-closed { color: var(--red); font-weight: 700; }

.td-schedule-note {
  background: #f5f5f5;
  border: 1px dashed #d4d4d4;
  border-radius: 4px;
  padding: 22px 24px;
}
.td-schedule-note h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 12px;
}
.td-schedule-note h4 i { color: var(--red); }
.td-schedule-note p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 8px;
}


/* ═══════════════════════════════════════════════════════════
   3. ЗУРГИЙН ЦОМОГ — Masonry-маягтай grid
   ═══════════════════════════════════════════════════════════ */
.td-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.td-gal {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--gray);
  text-decoration: none;
}
.td-gal img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s;
}
.td-gal:hover img { transform: scale(1.06); }
.td-gal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(3,31,62,.7) 100%);
  opacity: 0;
  transition: opacity .25s;
}
.td-gal:hover::after { opacity: 1; }
.td-gal-caption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: all .25s;
}
.td-gal:hover .td-gal-caption { opacity: 1; transform: translateY(0); }

.td-gal-large {
  grid-column: span 2;
  grid-row: span 2;
}
.td-gal-tall {
  grid-row: span 2;
}

.td-gallery-foot { text-align: center; margin-top: 30px; }


/* ═══════════════════════════════════════════════════════════
   4. АРГА ХЭМЖЭЭ — event cards
   ═══════════════════════════════════════════════════════════ */
.td-events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.td-event {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.td-event:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(3, 31, 62, .1);
}
.td-event-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--gray);
}
.td-event-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s;
}
.td-event:hover .td-event-img img { transform: scale(1.04); }
.td-event-date {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.td-event-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.td-event-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
}
.td-event-body p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}
.td-event-meta {
  font-size: .76rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.td-event-meta i { color: var(--red); margin-right: 6px; }


/* ═══════════════════════════════════════════════════════════
   5. БАЙРШИЛ
   ═══════════════════════════════════════════════════════════ */
.td-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.td-map {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0a2952 0%, #031F3E 100%);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid #e0e0e0;
}
.td-map svg { width: 100%; height: 100%; display: block; }
.td-map-pin {
  fill: var(--red);
  filter: drop-shadow(0 4px 10px rgba(233,21,24, .4));
}

.td-location-info { display: flex; flex-direction: column; gap: 18px; }
.td-location-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: .005em;
}
.td-location-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.td-fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.td-fact i {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f5f5f5;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.td-fact-body { display: flex; flex-direction: column; gap: 2px; }
.td-fact-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.td-fact-value {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}

.td-location-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}


/* ═══════════════════════════════════════════════════════════
   6. ҮЗЭСГЭЛЭНТ ГАЗРУУД — Khentii sites
   ═══════════════════════════════════════════════════════════ */
.td-sites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.td-site {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
}
.td-site:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.td-site-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray);
}
.td-site-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s;
}
.td-site:hover .td-site-img img { transform: scale(1.06); }
.td-site-body { padding: 14px 16px 16px; }
.td-site-body h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.3;
}
.td-site-meta {
  font-size: .76rem;
  color: var(--muted);
}


/* ═══════════════════════════════════════════════════════════
   7. ТАСАЛБАР
   ═══════════════════════════════════════════════════════════ */
.td-tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}
.td-ticket {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.td-ticket-featured {
  border: 2px solid var(--red);
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}
.td-ticket-featured::before {
  content: 'ХОПУЛЯР';
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 4px 12px;
  border-radius: 4px;
}
.td-ticket-name {
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.td-ticket-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.td-ticket-price strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.td-ticket-price span {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
}
.td-ticket ul {
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.td-ticket ul li {
  font-size: .85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.td-ticket ul li i { color: var(--red); }

.td-ticket-cta {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
}
.td-ticket-cta:hover { background: var(--red); }
.td-ticket-featured .td-ticket-cta { background: var(--red); }
.td-ticket-featured .td-ticket-cta:hover { background: var(--navy); }

.td-tickets-note {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 18px 22px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.td-tickets-note i { color: var(--red); margin-top: 4px; flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.td-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .05em;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.td-btn-primary {
  background: var(--red);
  color: #fff;
}
.td-btn-primary:hover { background: #c81e21; }
.td-btn-primary i { color: #fff; }
.td-btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.td-btn-outline:hover { background: var(--navy); color: #fff; }
.td-btn-outline:hover i { color: #fff; }
.td-btn-outline i { color: var(--navy); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .td-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .td-schedule { grid-template-columns: 1fr; }
  .td-gallery { grid-template-columns: repeat(3, 1fr); }
  .td-events { grid-template-columns: repeat(2, 1fr); }
  .td-location { grid-template-columns: 1fr; }
  .td-sites { grid-template-columns: repeat(2, 1fr); }
  .td-tickets { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .td-section { padding: 56px 0; }
  .td-anchor-nav { top: 0; }
  .td-anchor { padding: 14px 16px; font-size: .7rem; }
  .td-hero-stats { gap: 22px; margin-top: 22px; }
  .td-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .td-gal-large { grid-column: span 2; grid-row: span 2; }
  .td-events { grid-template-columns: 1fr; }
  .td-sites { grid-template-columns: 1fr; }
}

/* ── Зургийн цомог lightbox ── */
.td-gal--zoom { cursor: zoom-in; }
.td-lb {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(7, 16, 33, .94);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 16px;
}
.td-lb[hidden] { display: none; }
.td-lb-figure { margin: 0; max-width: 92vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.td-lb-img { max-width: 92vw; max-height: 78vh; width: auto; height: auto; object-fit: contain; border-radius: 6px; box-shadow: 0 18px 60px rgba(0,0,0,.5); }
.td-lb-cap { color: #f3ead4; font-size: .95rem; letter-spacing: .02em; text-align: center; }
.td-lb-close, .td-lb-nav {
  position: absolute; background: rgba(255,255,255,.10); color: #fff; border: 0;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
  display: grid; place-items: center; transition: background .2s;
}
.td-lb-close:hover, .td-lb-nav:hover { background: rgba(201,162,74,.85); }
.td-lb-close { top: 20px; right: 24px; }
.td-lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.td-lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.td-lb-count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #d8cfb8; font-size: .85rem; letter-spacing: .08em; }
@media (max-width: 600px) {
  .td-lb-close, .td-lb-nav { width: 40px; height: 40px; }
  .td-lb-prev { left: 8px; } .td-lb-next { right: 8px; } .td-lb-close { right: 12px; top: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   Generic travel-detail body — Танилцуулга + Аяллын мэдээлэл
   (nuuts / chinggis / shihihutug ашигладаг)
   ═══════════════════════════════════════════════════════════ */
.td-body-section { padding: 72px 0; background: #fff; }
.td-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}
.td-main { min-width: 0; }
.td-lead {
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--navy, #0a2952);
  font-weight: 500;
  margin: 0 0 20px;
}
.td-prose p {
  font-size: 1rem;
  line-height: 1.8;
  color: #33405a;
  margin: 0 0 16px;
}
.td-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.td-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #f6f1e6;
  border: 1px solid rgba(201, 162, 74, .35);
  border-radius: 999px;
  font-size: .9rem;
  color: var(--navy, #0a2952);
  font-weight: 600;
}
.td-feature i { color: var(--gold, #C9A24A); }

.td-facts {
  background: #faf8f2;
  border: 1px solid #ece6d6;
  border-radius: 14px;
  padding: 28px 26px;
  position: sticky;
  top: 110px;
}
.td-facts-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy, #0a2952);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold, #C9A24A);
}
.td-facts-list { margin: 0; }
.td-facts-list > div {
  padding: 13px 0;
  border-bottom: 1px solid #ece6d6;
}
.td-facts-list > div:last-child { border-bottom: 0; }
.td-facts-list dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #8a7f64;
  margin: 0 0 5px;
  font-weight: 600;
}
.td-facts-list dt i { color: var(--gold, #C9A24A); width: 16px; text-align: center; }
.td-facts-list dd {
  margin: 0;
  font-size: 1rem;
  color: var(--navy, #0a2952);
  font-weight: 600;
}
.td-facts-cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 880px) {
  .td-grid { grid-template-columns: 1fr; gap: 32px; }
  .td-facts { position: static; }
}
