/* ═══════════════════════════════════════════════
   extras.css — Бусад танхимын дэлгэрэнгүй хуудас
   v2-* design system extend
   prefix: ex-*
   ═══════════════════════════════════════════════ */

.ex-body { background: #fff; }

/* ─── Hero ─── */
.ex-hero {
  position: relative;
  background: linear-gradient(135deg, var(--v2-navy) 0%, var(--v2-navy-soft) 100%);
  color: #fff;
  padding: 3rem 0 2.5rem;
  margin-bottom: 0;
  overflow: hidden;
}
.ex-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.ex-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ex-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ex-hero-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.ex-hero-crumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}
.ex-hero-crumbs a:hover { color: #fff; border-bottom-color: #fff; }
.ex-hero-crumbs i { color: rgba(255, 255, 255, 0.4); font-size: 0.7rem; padding: 0 0.15rem; }

.ex-hero-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--v2-red);
  color: #fff;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  width: max-content;
  margin-bottom: 0.4rem;
}
.ex-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.ex-hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0;
}

/* Hero stats */
.ex-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.ex-hero-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0.85rem 0.75rem;
  text-align: center;
}
.ex-hero-stat i {
  display: block;
  font-size: 1rem;
  color: var(--v2-accent);
  margin-bottom: 0.35rem;
}
.ex-hero-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.1rem;
}
.ex-hero-stat small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Hero image */
.ex-hero-img {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 4rem;
}
.ex-hero-img i { text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3); }

/* ─── Section ─── */
.ex-section {
  padding: 4rem 0 3rem;
}
.ex-section--alt {
  background: var(--v2-bg-soft);
  border-top: 1px solid var(--v2-border-soft);
  border-bottom: 1px solid var(--v2-border-soft);
}
.ex-section-head {
  margin-bottom: 1.75rem;
}
.ex-section-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--v2-navy);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.ex-section-head h2 i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--v2-red);
  color: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
}
.ex-section-head p {
  color: var(--v2-text-mute);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ─── Text body ─── */
.ex-text {
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 14px;
  padding: 2rem 2.25rem;
  box-shadow: var(--v2-shadow-sm);
}
.ex-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--v2-text);
  margin: 0 0 1.25rem;
}
.ex-text p:last-child { margin-bottom: 0; }
.ex-text strong { color: var(--v2-navy); }

/* ─── Facilities pill ─── */
.ex-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.ex-facility {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  color: var(--v2-text);
}
.ex-facility i {
  color: var(--v2-red);
  font-size: 1rem;
}
.ex-facility strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--v2-navy);
}

/* ─── Gallery ─── */
.ex-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.ex-gallery figure {
  margin: 0;
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--v2-shadow-sm);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ex-gallery figure:hover {
  transform: translateY(-3px);
  box-shadow: var(--v2-shadow-md);
}
.ex-gallery-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 2rem;
}
.ex-gallery figcaption {
  padding: 0.7rem 1rem 0.85rem;
  font-size: 0.85rem;
  color: var(--v2-navy);
  font-weight: 600;
}
.ex-gallery figcaption small {
  display: block;
  font-weight: 400;
  color: var(--v2-text-mute);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

/* ─── Video ─── */
.ex-video {
  position: relative;
  background: var(--v2-navy);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--v2-shadow-md);
}
.ex-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.ex-video video { width: 100%; height: 100%; object-fit: cover; }
.ex-video-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  padding: 2rem;
}
.ex-video-placeholder i {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.4);
}
.ex-video-placeholder p {
  font-size: 0.95rem;
  margin: 0;
  font-style: italic;
}

/* ─── Other extras grid (related links) ─── */
.ex-other {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.ex-other-card {
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.2s ease;
  box-shadow: var(--v2-shadow-sm);
}
.ex-other-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--v2-shadow-md);
  border-color: var(--v2-navy-soft);
}
.ex-other-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--v2-bg);
  color: var(--v2-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.ex-other-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin: 0 0 0.15rem;
  line-height: 1.3;
}
.ex-other-card span {
  font-size: 0.78rem;
  color: var(--v2-text-mute);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .ex-hero-inner { grid-template-columns: 1fr; gap: 1.75rem; }
}
@media (max-width: 640px) {
  .ex-hero { padding: 2rem 0 1.75rem; }
  .ex-section { padding: 3rem 0; }
  .ex-text { padding: 1.5rem 1.25rem; }
  .ex-hero-stats { gap: 0.5rem; }
  .ex-hero-stat { padding: 0.7rem 0.4rem; }
  .ex-hero-stat strong { font-size: 0.9rem; }
  .ex-hero-stat small { font-size: 0.62rem; }
  .ex-section-head h2 { font-size: 1.3rem; }
}
