/* ============================================================
   exhibitions.css — Үзэсгэлэн (минимал Prado-стайл)
   Brandbook: #031F3E navy, #E91518 red, #3B0002 maroon
   Загварын зарчим: цагаан суурь, том editorial зураг, тод date,
   бага декорын тамга/градиент, илүү whitespace
   ============================================================ */

.exh-body { background: #ffffff; }

/* ============================================================
   HERO — Минимал
   ============================================================ */
.exh-hero {
  padding: 70px 0 60px;
  background: #ffffff;
  border-bottom: 1px solid #ece6d4;
}
.exh-hero .coll-hero-pattern,
.exh-hero .coll-hero-door,
.exh-hero .coll-hero-inner > .tamgas-row {
  display: none;
}
.exh-hero { background: #fff !important; color: var(--text); }

/* gutal.png — баруун-дээд буланд шахсан bg */
.exh-hero::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -40px;
  width: 360px;
  height: 480px;
  background: url('../img/gutal.png') top right / contain no-repeat;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}
.exh-hero .coll-hero-inner { position: relative; z-index: 1; }

@media (max-width: 1100px) {
  .exh-hero::after { width: 260px; height: 340px; opacity: 0.6; }
}
@media (max-width: 768px) {
  .exh-hero::after { display: none; }
}
.exh-hero .coll-hero-tag { color: var(--gold-deep); border-color: var(--gold-deep); }
.exh-hero .coll-hero-title { color: var(--maroon); }
.exh-hero .coll-hero-desc { color: var(--text); }
.exh-hero .coll-hero-desc strong { color: var(--maroon); }
.exh-hero .coll-hero-stats {
  border-top: 1px solid #ece6d4;
  border-bottom: none;
  padding: 30px 0 0;
}
.exh-hero .stat-num { color: var(--maroon); }
.exh-hero .stat-label { color: var(--muted); }


/* ============================================================
   CATEGORIES — 4 цэвэр card
   ============================================================ */
.exh-categories { padding: 80px 0; background: #ffffff; }

.exh-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.exh-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 26px 28px;
  background: #fff;
  border: 1px solid #ece6d4;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all .25s ease;
  min-height: 240px;
}
.exh-cat-card:hover {
  border-color: var(--maroon);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(59, 0, 2, .08);
}

.exh-cat-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: 'Courier New', monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold-deep);
}

.exh-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #faf8f3;
  border: 1px solid #ece6d4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.exh-cat-icon i { color: var(--maroon); font-size: 1.2rem; }
.exh-cat-icon svg { width: 24px; height: 24px; color: var(--maroon); }
.exh-cat-card:hover .exh-cat-icon {
  background: var(--maroon);
  border-color: var(--maroon);
}
.exh-cat-card:hover .exh-cat-icon i,
.exh-cat-card:hover .exh-cat-icon svg { color: var(--gold-light); }

.exh-cat-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
  margin: 0 0 10px;
  letter-spacing: .01em;
}
.exh-cat-desc {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
  margin: 0 0 18px;
}
.exh-cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--maroon);
}
.exh-cat-cta i { transition: transform .25s; font-size: .7rem; }
.exh-cat-card:hover .exh-cat-cta i { transform: translateX(5px); }


/* ============================================================
   FEATURED — Минимал editorial
   ============================================================ */
.exh-featured {
  padding: 80px 0;
  background: #faf8f3;
  color: var(--text);
}

.exh-featured-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.exh-featured-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #ece6d4;
}
.exh-featured-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 1s;
}
.exh-featured-media:hover img { transform: scale(1.03); }

.exh-featured-status {
  position: absolute;
  top: 22px; left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--maroon);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--gold-deep);
}
.exh-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ea043;
}

.exh-featured .featured-badge {
  background: var(--maroon);
  color: #fff;
}
.exh-featured .featured-badge i { color: var(--gold-light); }
.exh-featured .featured-title { color: var(--maroon); }
.exh-featured .featured-author { color: var(--gold-deep); font-style: italic; }
.exh-featured .featured-desc { color: var(--text); }

.exh-featured-meta {
  grid-template-columns: repeat(2, 1fr);
  border-color: #ece6d4 !important;
}
.exh-featured-meta dt {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}
.exh-featured-meta dt i { color: var(--gold-deep); }
.exh-featured-meta dd { color: var(--maroon); }

.exh-featured-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ============================================================
   ONGOING — Editorial grid
   ============================================================ */
.exh-ongoing { padding: 80px 0; background: #ffffff; }

.exh-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.exh-filter-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.exh-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 100px;
  padding: 8px 14px 8px 18px;
  min-width: 280px;
  transition: border-color .2s;
}
.exh-search:focus-within { border-color: var(--maroon); }
.exh-search > i { color: var(--gold-deep); font-size: .9rem; flex-shrink: 0; }
.exh-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: .85rem;
  color: var(--text);
  padding: 4px 0;
  min-width: 0;
  flex: 1;
}
.exh-search input::placeholder { color: var(--muted); }

.exh-filter-tabs {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}
.exh-tab {
  border: 1px solid #d4d4d4;
  background: #fff;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
  padding: 9px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.exh-tab em {
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
}
.exh-tab:hover { border-color: var(--maroon); color: var(--maroon); }
.exh-tab.active {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}
.exh-tab.active em { color: var(--gold-light); }

.exh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.exh-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #ece6d4;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.exh-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(59, 0, 2, .1);
  border-color: var(--maroon);
}

.exh-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray);
}
.exh-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.exh-card:hover .exh-card-media img { transform: scale(1.04); }

.exh-card-type {
  position: absolute;
  top: 14px; left: 14px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  color: var(--maroon);
  background: #fff;
  border: 1px solid #d8cdb0;
}
.exh-type-int     { color: var(--maroon); border-color: var(--maroon); }
.exh-type-special { color: var(--bb-red); border-color: var(--bb-red); }
.exh-type-temp    { color: var(--gold-deep); border-color: var(--gold-deep); }

.exh-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.exh-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
  margin: 0;
  line-height: 1.35;
  letter-spacing: .01em;
}
.exh-card-partner {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}
.exh-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .76rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #ece6d4;
}
.exh-card-meta i { color: var(--gold-deep); margin-right: 4px; }

.exh-card-progress {
  margin-top: 10px;
  height: 3px;
  background: #ece6d4;
  border-radius: 100px;
  overflow: hidden;
}
.exh-progress-bar {
  height: 100%;
  width: var(--p, 0%);
  background: var(--maroon);
  border-radius: 100px;
  transition: width 1s ease;
}

.exh-grid-foot {
  text-align: center;
  margin-top: 40px;
}


/* ============================================================
   UPCOMING TIMELINE — Минимал жагсаалт
   ============================================================ */
.exh-upcoming { padding: 80px 0; background: #faf8f3; }

.exh-timeline {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #ece6d4;
}
.exh-timeline::before { display: none; }

.exh-timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid #ece6d4;
  margin: 0;
  align-items: flex-start;
}
.exh-timeline-item::before { display: none; }
.exh-timeline-item:hover { background: #fff; }

.exh-tl-date { text-align: right; padding-right: 0; }
.exh-tl-month {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.exh-tl-day {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

.exh-tl-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.exh-tl-card:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.exh-tl-type {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 12px;
  color: var(--maroon);
  background: transparent;
  border: 1px solid var(--gold-deep);
}

.exh-tl-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon);
  margin: 0 0 10px;
  line-height: 1.3;
}
.exh-tl-card p {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 14px;
}
.exh-tl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: .76rem;
  color: var(--muted);
}
.exh-tl-meta i { color: var(--gold-deep); margin-right: 6px; }


/* ============================================================
   VIRTUAL CTA — компакт, тусдаа хуудас руу
   ============================================================ */
.exh-virtual-cta-block {
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid #ece6d4;
  border-bottom: 1px solid #ece6d4;
}

.exh-vcta {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #faf8f3 0%, #fff 100%);
  border: 1px solid #ece6d4;
  border-left: 4px solid var(--maroon);
  border-radius: var(--radius);
  padding: 28px 34px;
  text-decoration: none;
  color: var(--text);
  transition: all .25s;
}
.exh-vcta:hover {
  background: #fff;
  border-color: var(--maroon);
  border-left-color: var(--maroon);
  transform: translateX(4px);
  box-shadow: 0 18px 40px rgba(59, 0, 2, .12);
}

.exh-vcta-icon {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.exh-vcta-icon i { color: var(--gold-light); font-size: 2rem; }

.exh-vcta-body { display: flex; flex-direction: column; gap: 6px; }
.exh-vcta-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.exh-vcta-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--maroon);
  margin: 0;
  letter-spacing: .01em;
}
.exh-vcta-body h3 em { color: var(--gold-deep); font-style: italic; }
.exh-vcta-body p {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

.exh-vcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--maroon);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 14px 26px;
  border-radius: 100px;
  transition: gap .2s;
  white-space: nowrap;
}
.exh-vcta-btn i { color: #fff; transition: transform .2s; }
.exh-vcta:hover .exh-vcta-btn { gap: 14px; }
.exh-vcta:hover .exh-vcta-btn i { transform: translateX(3px); }

@media (max-width: 768px) {
  .exh-vcta { grid-template-columns: 1fr; padding: 22px; gap: 18px; }
  .exh-vcta-icon { width: 64px; height: 64px; border-radius: 14px; }
  .exh-vcta-icon i { font-size: 1.5rem; }
  .exh-vcta-btn { width: 100%; justify-content: center; }
}


/* ============================================================
   VIRTUAL SPOTLIGHT (хуучин loose styles үлдсэн)
   ============================================================ */
.exh-virtual {
  position: relative;
  padding: 80px 0;
  background: #ffffff;
  color: var(--text);
  border-top: 1px solid #ece6d4;
}
.exh-virtual-pattern { display: none; }

.exh-virtual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.exh-virtual-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold-deep);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.exh-virtual-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.15;
  margin: 0 0 22px;
  color: var(--maroon);
}
.exh-virtual-title span { color: var(--gold-deep); font-style: italic; }

.exh-virtual-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 28px;
  max-width: 480px;
}

.exh-virtual-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  margin-bottom: 32px;
}
.exh-vf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
}
.exh-vf i { color: var(--maroon); font-size: .92rem; flex-shrink: 0; }

.exh-virtual-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.exh-virtual-tours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 460px;
}
.exh-virtual-tours .exh-vtour:nth-child(1) {
  grid-column: span 2;
}
.exh-virtual-tours .exh-vtour {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #ece6d4;
  transition: all .25s;
}
.exh-vtour img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.exh-vtour::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59,0,2,0) 50%, rgba(59,0,2,.85) 100%);
  z-index: 1;
}
.exh-vtour:hover { border-color: var(--maroon); }
.exh-vtour:hover img { transform: scale(1.06); }

.exh-vtour-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  color: #fff;
}
.exh-vtour-overlay i {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  border: none;
}
.exh-vtour-overlay strong {
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 2px;
}
.exh-vtour-overlay span {
  font-size: .72rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .05em;
}


/* ============================================================
   ARCHIVE — Editorial list
   ============================================================ */
.exh-archive { padding: 80px 0; background: #faf8f3; }

.exh-archive-controls { display: flex; gap: 12px; align-items: center; }
.exh-year-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--muted);
}
.exh-year-select {
  border: 1px solid #d4d4d4;
  border-radius: var(--radius);
  padding: 8px 14px;
  background: #fff;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  color: var(--maroon);
  cursor: pointer;
  min-width: 100px;
}
.exh-year-select:focus { outline: none; border-color: var(--maroon); }

.exh-archive-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid #ece6d4;
}
.exh-archive-list li {
  display: grid;
  grid-template-columns: 220px 120px 1fr 40px;
  gap: 22px;
  align-items: center;
  padding: 18px 8px;
  border-bottom: 1px solid #ece6d4;
  transition: background .15s;
}
.exh-archive-list li:hover { background: #fff; }

.exh-arch-date {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.exh-arch-type {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid currentColor;
  text-align: center;
}
.exh-arch-type.exh-type-int     { color: var(--maroon); border-color: var(--maroon); }
.exh-arch-type.exh-type-special { color: var(--bb-red); border-color: var(--bb-red); }
.exh-arch-type.exh-type-temp    { color: var(--gold-deep); border-color: var(--gold-deep); }

.exh-arch-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--maroon);
}
.exh-arch-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--maroon);
  border: 1px solid #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  text-decoration: none;
  justify-self: end;
}
.exh-arch-link i { color: var(--maroon); }
.exh-arch-link:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  transform: translateX(3px);
}
.exh-arch-link:hover i { color: #fff; }


/* ============================================================
   VISIT INFO STRIP
   ============================================================ */
.exh-visit-strip {
  padding: 56px 0 60px;
  background: #ffffff;
  border-top: 1px solid #ece6d4;
}

.exh-visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.exh-visit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.exh-visit-item > i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #faf8f3;
  border: 1px solid #ece6d4;
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.exh-visit-item div { display: flex; flex-direction: column; gap: 4px; }
.exh-visit-item strong {
  font-size: .88rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: .01em;
}
.exh-visit-item span {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}


/* ============================================================
   BUTTONS — Минимал
   ============================================================ */
.btn-outline {
  background: transparent;
  color: var(--maroon);
  border: 1px solid var(--maroon);
  padding: 12px 28px;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .2s;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--maroon);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline:hover i { color: #fff; }

.btn-ghost-light {
  background: transparent;
  color: var(--maroon);
  border: 1px solid #d4d4d4;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .25s;
  text-decoration: none;
}
.btn-ghost-light:hover {
  background: #faf8f3;
  border-color: var(--maroon);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .exh-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .exh-grid { grid-template-columns: repeat(2, 1fr); }
  .exh-featured-grid { grid-template-columns: 1fr; gap: 32px; }
  .exh-featured-media img { height: 380px; }
  .exh-virtual-grid { grid-template-columns: 1fr; gap: 36px; }
  .exh-virtual-tours { height: 420px; }
  .exh-visit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .exh-hero { padding: 48px 0 40px; }
  .exh-categories,
  .exh-ongoing,
  .exh-upcoming,
  .exh-virtual,
  .exh-archive,
  .exh-featured { padding: 56px 0; }

  .exh-cat-grid { grid-template-columns: 1fr; gap: 12px; }
  .exh-cat-card { min-height: auto; padding: 26px 22px 22px; }

  .exh-section-head { flex-direction: column; align-items: flex-start; }
  .exh-filter-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
  .exh-tab { white-space: nowrap; }

  .exh-grid { grid-template-columns: 1fr; }

  .exh-timeline-item { grid-template-columns: 70px 1fr; gap: 18px; padding: 22px 0; }
  .exh-tl-day { font-size: 1.8rem; }

  .exh-virtual-features { grid-template-columns: 1fr; }
  .exh-virtual-tours { grid-template-columns: 1fr; grid-template-rows: repeat(3, 180px); height: auto; }
  .exh-virtual-tours .exh-vtour:nth-child(1) { grid-column: span 1; }

  .exh-archive-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 8px;
  }
  .exh-arch-type { justify-self: start; }
  .exh-arch-link { justify-self: start; margin-top: 6px; }

  .exh-visit-grid { grid-template-columns: 1fr; gap: 18px; }

  .exh-featured-cta,
  .exh-virtual-cta { flex-direction: column; align-items: stretch; }
  .exh-featured-cta .btn,
  .exh-virtual-cta .btn { justify-content: center; }
}

@media (max-width: 420px) {
  .featured-meta,
  .exh-featured-meta { grid-template-columns: 1fr; }
}

/* Үзэсгэлэнгийн карт — нэр + "Дэлгэрэнгүй" товч дэлгэрэнгүй рүү холбогдоно */
.exh-card-title a { color: inherit; text-decoration: none; }
.exh-card-title a:hover { color: var(--maroon, #7a1f2b); }
.exh-card-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  color: var(--maroon, #7a1f2b); font-weight: 700; font-size: .85rem;
  text-decoration: none; transition: gap .2s;
}
.exh-card-cta:hover { gap: 13px; }

/* Нээгдэх үзэсгэлэнгийн timeline карт — дэлгэрэнгүй рүү холбоос */
a.exh-tl-card { text-decoration: none; color: inherit; cursor: pointer; }
a.exh-tl-card:hover h4 { color: var(--maroon, #7a1f2b); }
