/* Giao dien Chapter BNI Highway - dung chung cho index / thanh-vien / tin-tuc */
:root {
  --bni-red: #C9102F;
  --bni-red-dark: #9A0B23;
  --bni-gray: #58585B;
  --ink: #1D1D1F;
  --muted: #6B6B70;
  --line: #E5E5E7;
  --soft: #F7F7F8;
}

body {
  background: #FFFFFF;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

/* ══ TẦNG 1A — TOP BAR ══ */
.bni-topbar {
  background: var(--bni-red);
  color: #fff;
  font-size: 0.82rem;
  padding: 9px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.bni-topbar .hotline { font-weight: 600; }
.bni-topbar nav { display: flex; gap: 22px; flex-wrap: wrap; }
.bni-topbar a { color: #fff; opacity: 0.92; transition: opacity 0.2s; }
.bni-topbar a:hover { opacity: 1; text-decoration: underline; }

/* ══ TẦNG 1B — HEADER CHÍNH ══ */
.bni-header {
  background: #fff;
  border-bottom: 3px solid var(--bni-red);
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
}
.bni-brand { display: flex; align-items: center; gap: 14px; }
.bni-brand img { height: 42px; width: auto; display: block; }
.bni-brand .chapter-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bni-gray);
  letter-spacing: 1px;
  border-left: 1px solid var(--line);
  padding-left: 14px;
}
.bni-menu { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.bni-menu a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.bni-menu a:hover { color: var(--bni-red); }
.bni-menu .btn-invite {
  background: var(--bni-red);
  color: #fff;
  padding: 11px 22px;
  border-radius: 3px;
  text-transform: none;
  letter-spacing: 0;
}
.bni-menu .btn-invite:hover { background: var(--bni-red-dark); color: #fff; }

/* ══ TẦNG 2 — HERO CAROUSEL ══ */
.bni-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--bni-red-dark);
  color: #fff;
}
.bni-hero-slide {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  opacity: 0; transition: opacity 1.2s ease;
}
.bni-hero-slide.active { opacity: 1; }
.bni-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,10,12,0.86) 0%, rgba(20,10,12,0.66) 45%, rgba(201,16,47,0.42) 100%);
}
.bni-hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 96px 5%;
  min-height: 520px;
  display: flex; flex-direction: column; justify-content: center;
}
.bni-hero .eyebrow {
  display: inline-block;
  align-self: flex-start;
  background: var(--bni-red);
  padding: 6px 16px;
  border-radius: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.bni-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.18;
  max-width: 780px;
  margin-bottom: 18px;
}
.bni-hero .tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 3px;
  color: #FFD9DF;
  margin-bottom: 20px;
}
.bni-hero p.lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  margin-bottom: 32px;
}
.btn-red {
  display: inline-block;
  background: var(--bni-red);
  color: #fff;
  padding: 15px 34px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.98rem;
  align-self: flex-start;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-red:hover { background: #fff; color: var(--bni-red); transform: translateY(-2px); }

.bni-hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff; font-size: 1.25rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.bni-hero-arrow:hover { background: var(--bni-red); border-color: var(--bni-red); }
.bni-hero-arrow.prev { left: 18px; }
.bni-hero-arrow.next { right: 18px; }
.bni-hero-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 9px;
}
.bni-hero-dots .dot {
  width: 30px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: background 0.2s ease;
}
.bni-hero-dots .dot.active { background: #fff; }

/* ══ THANH SỐ LIỆU CHAPTER ══ */
.bni-stats {
  background: var(--bni-red);
  color: #fff;
  padding: 44px 5%;
}
.bni-stats-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.bni-stats .num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800; line-height: 1;
}
.bni-stats .label {
  font-size: 0.82rem; margin-top: 9px;
  color: rgba(255,255,255,0.88); letter-spacing: 0.4px;
}

/* ══ SECTION CHUNG ══ */
.bni-sec { padding: 84px 5%; }
.bni-sec.soft { background: var(--soft); }
.bni-wrap { max-width: 1160px; margin: 0 auto; }
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head .kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--bni-red); margin-bottom: 12px;
}
.sec-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700; color: var(--ink); margin-bottom: 14px;
}
.sec-head h2::after {
  content: ""; display: block; width: 56px; height: 3px;
  background: var(--bni-red); margin: 16px auto 0;
}
.sec-head p { color: var(--muted); max-width: 660px; margin: 0 auto; line-height: 1.8; }

/* Về chapter — 2 cột */
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 52px; align-items: center;
}
.about-grid img { width: 100%; border-radius: 6px; display: block; box-shadow: 0 14px 40px rgba(0,0,0,0.13); }
.about-text h3 {
  font-family: 'Poppins', sans-serif; font-size: 1.35rem;
  margin-bottom: 18px; color: var(--ink);
}
.about-text p { color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.about-text .quote {
  border-left: 4px solid var(--bni-red);
  padding: 6px 0 6px 20px; margin: 24px 0;
  font-style: italic; color: var(--ink); font-size: 1.05rem;
}

/* Lợi ích — 4 thẻ */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.benefit-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; padding: 34px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--bni-red);
  box-shadow: 0 16px 34px rgba(201,16,47,0.12);
}
.benefit-card .ico {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,16,47,0.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.benefit-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.02rem; margin-bottom: 11px; }
.benefit-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* V + C = P */
.vcp-row {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px; align-items: stretch; max-width: 1000px; margin: 0 auto;
}
.vcp-card {
  background: #fff; border: 1px solid var(--line);
  border-top: 4px solid var(--bni-red);
  border-radius: 6px; padding: 32px 24px; text-align: center;
}
.vcp-letter {
  font-family: 'Poppins', sans-serif; font-size: 2.6rem;
  font-weight: 800; color: var(--bni-red); line-height: 1; margin-bottom: 10px;
}
.vcp-card h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; margin-bottom: 10px; }
.vcp-card p { color: var(--muted); font-size: 0.87rem; line-height: 1.65; }
.vcp-op {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 1.9rem;
  font-weight: 700; color: var(--bni-red);
}

/* Lịch sinh hoạt */
.meet-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: start; }
.meet-info {
  background: var(--bni-red); color: #fff;
  border-radius: 6px; padding: 38px 34px;
}
.meet-info h3 { font-family: 'Poppins', sans-serif; font-size: 1.25rem; margin-bottom: 22px; }
.meet-info dl { display: grid; gap: 18px; }
.meet-info dt {
  font-size: 0.72rem; letter-spacing: 1.6px;
  text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 4px;
}
.meet-info dd { font-size: 1rem; font-weight: 600; line-height: 1.5; }
.agenda { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.agenda-row {
  display: grid; grid-template-columns: 118px 1fr;
  gap: 18px; padding: 17px 24px;
  border-bottom: 1px solid var(--line);
}
.agenda-row:last-child { border-bottom: none; }
.agenda-row:nth-child(odd) { background: var(--soft); }
.agenda-time { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--bni-red); font-size: 0.9rem; }
.agenda-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.meet-note {
  margin-top: 20px; padding: 17px 22px;
  background: rgba(201,16,47,0.05);
  border-left: 3px solid var(--bni-red);
  font-size: 0.88rem; color: var(--muted); line-height: 1.75;
}

/* ══ BAN ĐIỀU HÀNH ══ */
.lead-tier { margin-bottom: 46px; }
.lead-tier:last-child { margin-bottom: 0; }
.lead-tier-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--bni-red); text-align: center;
  padding-bottom: 14px; margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.lead-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lead-grid.four-up { grid-template-columns: repeat(4, 1fr); }
.lead-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; padding: 26px 18px; text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lead-card:hover {
  transform: translateY(-5px);
  border-color: var(--bni-red);
  box-shadow: 0 14px 30px rgba(201,16,47,0.11);
}
/* Ô chờ ảnh — thay bằng <img> khi có ảnh thật */
.lead-avatar {
  width: 96px; height: 96px; margin: 0 auto 16px;
  border-radius: 50%; overflow: hidden;
  background: var(--soft);
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700;
  color: var(--bni-red); letter-spacing: 0.5px;
}
.lead-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lead-card .name {
  font-family: 'Poppins', sans-serif; font-size: 0.98rem;
  font-weight: 600; color: var(--ink); margin-bottom: 5px;
}
.lead-card .role {
  font-size: 0.83rem; color: var(--bni-red);
  font-weight: 600; margin-bottom: 7px;
}
.lead-card .company { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.lead-card .company.pending { font-style: italic; opacity: 0.65; }

/* ══ TIN TỨC ══ */
.news-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 34px;
  border-bottom: 2px solid var(--bni-red); padding-bottom: 16px;
}
.news-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700;
}
.news-head a { color: var(--bni-red); font-weight: 600; font-size: 0.92rem; }
.news-head a:hover { text-decoration: underline; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,0.1); }
.news-card .thumb {
  aspect-ratio: 16 / 9; background: var(--soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--line); font-size: 2rem;
}
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.news-card .date {
  font-size: 0.76rem; letter-spacing: 0.6px;
  color: var(--muted); text-transform: uppercase; margin-bottom: 9px;
}
.news-card h3 {
  font-family: 'Poppins', sans-serif; font-size: 1.02rem;
  line-height: 1.45; margin-bottom: 10px; color: var(--ink);
}
.news-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; flex: 1; }
.news-card .more { margin-top: 15px; color: var(--bni-red); font-weight: 600; font-size: 0.85rem; }
.news-empty {
  grid-column: 1 / -1; text-align: center;
  color: var(--muted); padding: 46px 20px;
  border: 1px dashed var(--line); border-radius: 6px;
}

/* Thư viện ảnh */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid a {
  display: block; overflow: hidden; border-radius: 6px;
  aspect-ratio: 4 / 3; background: var(--soft);
}
.gallery-grid.feature a:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }

/* BNI toàn cầu */
.global-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.global-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; padding: 30px 18px;
}
.global-card .num {
  font-family: 'Poppins', sans-serif; font-size: 1.75rem;
  font-weight: 800; color: var(--bni-red); line-height: 1;
}
.global-card .label { font-size: 0.84rem; color: var(--muted); margin-top: 9px; }

/* CTA cuối */
.bni-cta {
  background: linear-gradient(120deg, var(--bni-red-dark), var(--bni-red));
  color: #fff; text-align: center; padding: 78px 5%;
}
.bni-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700; margin-bottom: 16px;
}
.bni-cta p {
  color: rgba(255,255,255,0.92); max-width: 620px;
  margin: 0 auto 32px; line-height: 1.8;
}
.bni-cta .btn-red {
  background: #fff; color: var(--bni-red); align-self: center;
}
.bni-cta .btn-red:hover { background: var(--ink); color: #fff; }

/* ══ TẦNG 3 — FOOTER ══ */
.bni-footer { background: var(--bni-red); color: #fff; padding: 62px 5% 0; }
.footer-cols {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.35fr; gap: 40px;
}
.footer-cols h4 {
  font-family: 'Poppins', sans-serif; font-size: 0.95rem;
  margin-bottom: 18px; letter-spacing: 0.4px;
}
.footer-cols ul { list-style: none; display: grid; gap: 11px; }
.footer-cols a, .footer-cols li { font-size: 0.89rem; color: rgba(255,255,255,0.9); line-height: 1.5; }
.footer-cols a:hover { color: #fff; text-decoration: underline; }
.footer-brand img { height: 38px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.89rem; color: rgba(255,255,255,0.9); line-height: 1.8; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 600; color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.social-btn:hover { background: #fff; color: var(--bni-red); }
.footer-bottom {
  max-width: 1160px; margin: 46px auto 0;
  border-top: 1px solid rgba(255,255,255,0.24);
  padding: 22px 0 28px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(255,255,255,0.82);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 980px) {
  .bni-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .about-grid, .meet-grid { grid-template-columns: 1fr; gap: 34px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-grid, .lead-grid.four-up { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .vcp-row { grid-template-columns: 1fr; }
  .vcp-op { padding: 4px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.feature a:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 4 / 3; }
  .global-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 620px) {
  .bni-topbar { justify-content: center; text-align: center; }
  .bni-header { justify-content: center; }
  .bni-brand .chapter-name { font-size: 1.2rem; }
  .bni-menu { gap: 16px; justify-content: center; }
  .benefit-grid, .global-grid, .news-grid { grid-template-columns: 1fr; }
  .lead-grid, .lead-grid.four-up { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-cols { grid-template-columns: 1fr; }
  .agenda-row { grid-template-columns: 1fr; gap: 5px; }
}

/* ══════════════════════════════════════════════════════
   TRANG PHỤ: Danh sách thành viên & Tin tức
   ══════════════════════════════════════════════════════ */

/* Dải tiêu đề đầu trang phụ */
.page-banner {
  background: linear-gradient(120deg, var(--bni-red-dark), var(--bni-red));
  color: #fff; padding: 62px 5%; text-align: center;
}
.page-banner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700; margin-bottom: 12px;
}
.page-banner p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto; line-height: 1.75; }

/* Bảng danh sách thành viên */
.member-tools {
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center; justify-content: space-between; margin-bottom: 22px;
}
.member-tools input {
  flex: 1; min-width: 240px; max-width: 380px;
  padding: 12px 16px; font-size: 0.95rem;
  border: 1px solid var(--line); border-radius: 4px;
  font-family: 'Inter', sans-serif;
}
.member-tools input:focus { outline: none; border-color: var(--bni-red); }
.member-count { color: var(--muted); font-size: 0.9rem; }

.member-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; }
.member-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 720px; }
.member-table thead th {
  background: var(--bni-red); color: #fff;
  text-align: left; padding: 15px 18px;
  font-family: 'Poppins', sans-serif; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.member-table td {
  padding: 15px 18px; border-bottom: 1px solid var(--line);
  vertical-align: middle; color: var(--ink);
}
.member-table tbody tr:last-child td { border-bottom: none; }
.member-table tbody tr:nth-child(even) { background: var(--soft); }
.member-table tbody tr:hover { background: rgba(201,16,47,0.045); }
.member-table .m-name { font-weight: 600; white-space: nowrap; }
.member-table .m-role {
  display: inline-block; margin-top: 4px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--bni-red); background: rgba(201,16,47,0.08);
  padding: 2px 9px; border-radius: 100px; white-space: nowrap;
}
.member-table .m-cat { color: var(--muted); font-size: 0.87rem; }
.member-table .m-pending { color: var(--muted); font-style: italic; opacity: 0.6; }
.member-table .m-web {
  color: var(--bni-red); font-weight: 600; white-space: nowrap;
}
.member-table .m-web:hover { text-decoration: underline; }
.member-note {
  margin-top: 22px; padding: 17px 22px;
  background: rgba(201,16,47,0.05);
  border-left: 3px solid var(--bni-red);
  font-size: 0.88rem; color: var(--muted); line-height: 1.75;
}

/* Trang tin tức — danh sách dạng lưới rộng hơn */
.news-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* Trang tin tức — bài viết đầy đủ */
.post-full { max-width: 760px; margin: 0 auto; }
.post-back { color: var(--bni-red); font-weight: 600; font-size: 0.9rem; }
.post-back:hover { text-decoration: underline; }
.post-full .date {
  font-size: 0.8rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.6px; margin: 22px 0 10px;
}
.post-full h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.35; margin-bottom: 26px; color: var(--ink);
}
.post-cover { width: 100%; border-radius: 6px; margin-bottom: 28px; display: block; }
.post-body { color: var(--ink); font-size: 1rem; line-height: 1.9; }

@media (max-width: 980px) {
  .news-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .news-page-grid { grid-template-columns: 1fr; }
}
