/* ===== Үндсэн тохиргоо ===== */
:root {
  --red: #d61f26;
  --red-dark: #b0161c;
  --dark: #1b1b1f;
  --gray: #5c5c66;
  --light: #f5f5f8;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", "Proxima Nova", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Хэлний сонголт ===== */
html[data-lang="mn"] .en {
  display: none !important;
}

html[data-lang="en"] .mn {
  display: none !important;
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  margin-left: 14px;
  vertical-align: middle;
}

.lang-btn {
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #d8d8de;
  cursor: pointer;
}

html[data-lang="mn"] .lang-btn[data-set-lang="mn"],
html[data-lang="en"] .lang-btn[data-set-lang="en"] {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Хараа сулавтай хэрэглэгчдэд — үсгийн хэмжээ томруулах */
.fs-switch {
  display: inline-flex;
  gap: 4px;
  margin-left: 10px;
  vertical-align: middle;
}

.fs-btn {
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #d8d8de;
  cursor: pointer;
}

html[data-fs="md"] .fs-btn[data-set-fs="md"],
html[data-fs="lg"] .fs-btn[data-set-fs="lg"],
html[data-fs="xl"] .fs-btn[data-set-fs="xl"] {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

html[data-fs="lg"] body {
  zoom: 1.15;
}

html[data-fs="xl"] body {
  zoom: 1.35;
}

/* Мэдээний карт — урт текстийг таслаад "Дэлгэрэнгүй"-гээр popup нээнэ */
.news-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Popup цонх */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 20, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 680px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 30px 34px;
  position: relative;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
}

.modal-close:hover {
  color: var(--red);
}

.modal-box .news-tag {
  margin-bottom: 12px;
}

.modal-box h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--dark);
}

.modal-body {
  white-space: pre-wrap;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 16px;
}

.modal-box .news-date {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ===== Дээд туслах мөр ===== */
.topbar {
  background: var(--dark);
  color: #d8d8de;
  font-size: 0.8rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social a {
  display: inline-block;
  margin-left: 8px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 0.7rem;
}

/* ===== Толгой цэс ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links > a,
.dropdown > a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.nav-links > a:hover,
.nav-links > a.active,
.dropdown > a:hover,
.dropdown > a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Dropdown цэс */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  padding: 8px 0;
  display: none;
  z-index: 50;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: #fdeaea;
  color: var(--red);
}

.caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  margin-left: 5px;
  margin-bottom: 3px;
  vertical-align: middle;
  transition: transform 0.2s;
}

.dropdown:hover .caret {
  transform: rotate(225deg);
  margin-bottom: -2px;
}

.menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
}

/* ===== Товчнууд ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.nav-cta {
  padding: 10px 22px;
  white-space: nowrap;
}

/* ===== Нүүр (Hero) ===== */
.hero {
  background: linear-gradient(135deg, #1b1b1f 0%, #35353d 55%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 0 80px;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f0b9bb;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .accent {
  color: #ff8a8f;
}

.hero-text {
  max-width: 640px;
  margin: 0 auto 30px;
  color: #e3e3e8;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--red);
}

.hero-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 14px 26px;
  font-size: 0.9rem;
}

/* ===== Дотоод хуудасны толгой ===== */
.page-hero {
  background: linear-gradient(120deg, #1b1b1f 0%, #3a3a42 70%, var(--red-dark) 100%);
  color: var(--white);
  padding: 56px 0;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}

.page-hero .crumbs {
  color: #cfcfd6;
  font-size: 0.88rem;
}

.page-hero .crumbs a {
  color: #ff9ea3;
  text-decoration: none;
}

/* ===== Хэсгүүд ===== */
.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--light);
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}

.section-title.left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto 44px;
}

.content-block {
  max-width: 820px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  margin-bottom: 16px;
  scroll-margin-top: 110px;
}

.content-block h3 {
  font-size: 1.1rem;
  margin: 22px 0 8px;
}

.content-block p {
  color: var(--gray);
  margin-bottom: 14px;
}

.content-block ul {
  margin: 0 0 14px 22px;
  color: var(--gray);
}

.content-block li {
  margin-bottom: 6px;
}

.lead {
  font-size: 1.06rem;
  color: var(--dark) !important;
  font-weight: 600;
}

.divider {
  border: none;
  border-top: 1px solid #e8e8ee;
  margin: 56px auto;
  max-width: 820px;
}

.note-box {
  background: #fdeaea;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 18px 0;
  color: #7a2226;
  font-size: 0.95rem;
}

/* ===== Үндсэн 3 карт ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  display: block;
  background: var(--white);
  border: 1px solid #ececf1;
  border-radius: var(--radius);
  padding: 32px 26px;
  text-decoration: none;
  color: var(--dark);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-card.featured {
  border-top: 4px solid var(--red);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.feature-link {
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== Бидний тухай (нүүр) ===== */
.about-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
}

.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 18px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--red);
}

.stat span {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ===== Бүртгэлийн алхмууд ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--white);
  border: 1px solid #ececf1;
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow);
}

.step-num {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.register-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== Мэдээ ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.news-card {
  display: block;
  text-decoration: none;
  color: var(--dark);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: transform 0.2s;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-tag {
  display: inline-block;
  background: #fdeaea;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.news-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.news-card p {
  color: var(--gray);
  font-size: 0.93rem;
  margin-bottom: 14px;
}

.news-date {
  color: #9a9aa4;
  font-size: 0.82rem;
}

/* ===== FAQ (accordion) ===== */
.faq-cat {
  max-width: 860px;
  margin: 0 auto 44px;
}

.faq-cat > h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 4px solid var(--red);
  scroll-margin-top: 110px;
}

.accordion {
  border: 1px solid #ececf1;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-q {
  width: 100%;
  text-align: left;
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 16px 48px 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--dark);
}

.accordion-q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--red);
  font-weight: 800;
}

.accordion.open .accordion-q::after {
  content: "–";
}

.accordion-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--gray);
  font-size: 0.95rem;
}

.accordion.open .accordion-a {
  display: block;
}

.accordion-a ul {
  margin: 8px 0 8px 20px;
}

.faq-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.faq-toc a {
  background: var(--white);
  border: 1.5px solid #e4e4ea;
  border-radius: 999px;
  padding: 8px 18px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.88rem;
  transition: border-color 0.2s, color 0.2s;
}

.faq-toc a:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ===== Холбоо барих ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  text-align: center;
}

.contact-card .ico {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

.contact-card a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 22px;
}

.contact-info a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font: inherit;
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--red);
}

.contact-form .btn {
  align-self: flex-start;
}

/* ===== Хөл ===== */
.footer {
  background: var(--dark);
  color: #b9b9c2;
  padding: 56px 0 0;
  font-size: 0.9rem;
}

.footer-brand {
  padding-bottom: 8px;
}


.footer-brand h3 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-social-icons {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 40px;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icons svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
  transition: opacity 0.2s;
}

.footer-social-icons a:hover svg {
  opacity: 0.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  padding-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.footer p {
  margin-bottom: 8px;
}

.footer a {
  color: #e6e6ec;
  text-decoration: none;
}

.footer a:hover {
  color: #ff8a8f;
}

.footer-social a {
  display: inline-block;
  margin-right: 14px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #8f8f99;
}

/* ===== Утасны дэлгэц ===== */
@media (max-width: 980px) {
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: none;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a,
  .dropdown > a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f4;
  }

  .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    padding: 0 0 6px 16px;
    min-width: 0;
  }
}

@media (max-width: 860px) {
  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title.left {
    text-align: center;
  }

  .hero {
    padding: 64px 0 56px;
  }
}

/* ===== Дээш буцах товч ===== */
#toTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 200;
}

#toTop.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

#toTop:hover {
  background: var(--red-dark);
}

/* ===== Газрын зураг ===== */
.map-embed {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ===== Гар утасны "Залгах" товч ===== */
#callBtn {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1db954;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  z-index: 200;
}

@media (max-width: 900px) {
  #callBtn {
    display: flex;
  }
}

/* ===== Шалгалтын товууд ===== */
.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.date-card {
  background: var(--white);
  border: 1px solid #ececf1;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.date-card-closed {
  opacity: 0.65;
}

.date-card-date {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
}

.date-card-meta {
  color: var(--gray);
  font-size: 0.92rem;
  margin-top: 6px;
}

.date-card-price {
  font-weight: 700;
  color: var(--red);
  margin-top: 10px;
}

.date-card-seats {
  font-size: 0.92rem;
  color: var(--gray);
  margin-top: 6px;
}

.date-card-seats-low {
  color: var(--red);
  font-weight: 700;
}

.date-card-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 22px;
  font-size: 0.92rem;
}

.dates-note {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray);
}

.faq-toc a.active {
  border-color: var(--red);
  color: var(--red);
  font-weight: 700;
}

/* ── Нийтлэлийн хуудас (/news/<slug>) ─────────────────────────────── */
.news-article {
  max-width: 760px;
  margin: 0 auto;
}
.news-article .news-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.5rem;
}
.news-article .news-meta {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.news-article .news-lead {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.news-article p {
  line-height: 1.8;
  margin-bottom: 1rem;
}
.news-back {
  max-width: 760px;
  margin: 2rem auto 0;
}
.news-back a {
  color: var(--brand, #2a78d6);
  font-weight: 600;
  text-decoration: none;
}
.news-back a:hover { text-decoration: underline; }
