*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #0b1929;
  --navy2: #0f2540;
  --gold: #c8902a;
  --gold2: #e8b85a;
  --amber: #f5d78a;
  --white: #fff;
  --off: #fbf6ee;
  --text: #1a1208;
  --muted: #7a6a50;
  --border: #e8dcc8;
  --r: 16px;
}
body {
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
/* TOPNAV */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(11, 25, 41, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}
.topnav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.anav-inline {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 0;
}
.anav-inline a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 0 16px;
  height: 66px;
  line-height: 66px;
  display: block;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.anav-inline a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 4px;
  right: 4px;
  height: 3px;
  background: transparent;
  transition: background 0.25s;
  border-radius: 2px;
}
.anav-inline a:hover::after,
.anav-inline a.active::after {
  background: var(--gold);
}
.anav-inline a:hover,
.anav-inline a.active {
  color: var(--gold2);
}
.topnav.scrolled .anav-inline a {
  color: var(--muted);
}
.topnav.scrolled .anav-inline a:hover,
.topnav.scrolled .anav-inline a.active {
  color: var(--gold);
}
.nav-cta {
  padding: 9px 22px;
  background: rgba(200, 144, 42, 0.85);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.topnav.scrolled .nav-cta {
  background: var(--gold);
}
.nav-logo {
  position: relative;
  width: 184px;
  height: 20px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 20px;
  width: auto;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.35s;
}
.nav-logo .logo-light {
  opacity: 1;
}
.nav-logo .logo-dark {
  opacity: 0;
}
.topnav.scrolled .nav-logo .logo-light {
  opacity: 0;
}
.topnav.scrolled .nav-logo .logo-dark {
  opacity: 1;
}
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: background 0.2s;
}
.topnav.scrolled .nav-burger span {
  background: var(--navy);
}
.mobile-menu {
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  z-index: 499;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(11, 25, 41, 0.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.mobile-menu.open {
  max-height: 480px;
  overflow-y: auto;
}
.mobile-menu a {
  display: block;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu .mobile-cta {
  display: block;
  width: calc(100% - 32px);
  margin: 12px 16px 16px;
  padding: 14px 24px;
  border: none;
  border-radius: 100px;
  background: var(--gold);
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 900px) {
  .anav-inline {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .topnav {
    padding: 0 20px;
  }
}
/* HERO */
.hero {
  position: relative;
  height: 65vh;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 25, 41, 0.15) 0%,
    rgba(11, 25, 41, 0.12) 30%,
    rgba(11, 25, 41, 0.68) 62%,
    rgba(11, 25, 41, 0.97) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 56px;
  max-width: 860px;
}
.breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
}
.breadcrumb a:hover {
  color: var(--gold2);
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.2);
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold2);
  display: inline-block;
  flex-shrink: 0;
}
.hero h1 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}
.hero-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
/* ================================================================
         META-BAR: byline + kiểm duyệt + ngày + lượt xem + share
         Đặt ngay đầu .article-wrap (dưới hero, trên nội dung bài)
         ================================================================ */
.meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.meta-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}
.meta-share {
  display: flex;
  align-items: center;
  gap: 8px;
}
.meta-share a,
.meta-share-copy {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.meta-share a:hover,
.meta-share-copy:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.meta-share a:hover svg,
.meta-share-copy:hover svg {
  fill: #fff;
}
.meta-share svg {
  width: 15px;
  height: 15px;
  fill: var(--navy);
}
.meta-share-copy-wrap {
  position: relative;
  display: inline-flex;
}
.copy-toast {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.copy-toast.show {
  opacity: 1;
}
@media (max-width: 768px) {
  .meta-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .meta-share {
    width: 100%;
    justify-content: flex-start;
  }
}
/* ARTICLE BODY */
.article-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}
.article-body h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy2);
  margin: 32px 0 12px;
}
.article-body p {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
}
.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.article-body strong {
  color: var(--navy);
  font-weight: 700;
}
/* ================================================================
         OPTIONAL COMPONENT: highlight-box
         Dùng khi cần nhấn 1 đoạn nhận định/lưu ý quan trọng giữa bài
         AEO: khi H2/H3 viết dạng câu hỏi, đặt 1 .highlight-box NGAY DƯỚI
         tiêu đề làm "câu trả lời trực diện", 40-60 từ, công thức [trả lời
         thẳng] + [giải thích ngắn] + [danh sách/bước nếu có]. Xem
         plans/aeo-geo-optimization-20260714.md mục 1.2.
         ================================================================ */
.highlight-box {
  background: var(--off);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
}
.highlight-box p {
  margin: 0;
  color: var(--navy);
  font-weight: 500;
}
/* ================================================================
         OPTIONAL COMPONENT: article-img (figure + figcaption trong bài)
         ================================================================ */
.article-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 40px 0;
}
.article-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.article-img figcaption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding: 8px 0 0;
  font-style: italic;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}
.data-table th {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.data-table tr:nth-child(even) td {
  background: var(--off);
}
/* ================================================================
         OPTIONAL COMPONENT: article-faq (FAQ accordion cuối bài, theme sáng)
         Dùng khi bài có 3-5 câu hỏi long-tail (Ai/gì/đâu/sao). Đồng bộ nội
         dung với SCHEMA 2b (FAQPage) trong <head>, bật cả 2 cùng lúc.
         ================================================================ */
.article-faq {
  max-width: 720px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-faq .faq-item {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s;
}
.article-faq .faq-item:hover {
  border-color: var(--gold);
}
.article-faq .faq-item.open {
  border-color: var(--gold);
}
.article-faq .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  gap: 16px;
  user-select: none;
  line-height: 1.4;
}
.article-faq .faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  color: var(--gold);
}
.article-faq .faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.article-faq .faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s ease,
    padding 0.25s;
  padding: 0 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.article-faq .faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 22px 20px;
}
/* ================================================================
         OPTIONAL COMPONENT: checklist (danh sách việc cần làm, ô vuông ☐)
         Harvest từ landing-page/cam-nang/7-buoc-quy-trinh-mua-can-ho-lan-dau.html
         ================================================================ */
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
}
.checklist li::before {
  content: "☐";
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
/* ================================================================
         OPTIONAL COMPONENT: note (span phụ chú nhỏ trong <li>, màu muted)
         Harvest từ landing-page/cam-nang/checklist-xem-can-ho-mau.html
         Dùng: <li>Nội dung chính <span class="note">Ghi chú phụ</span></li>
         ================================================================ */
.note {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
/* ================================================================
         OPTIONAL COMPONENT: step-card (bước quy trình đánh số tròn)
         Harvest từ landing-page/cam-nang/7-buoc-quy-trinh-mua-can-ho-lan-dau.html
         ================================================================ */
.step-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  margin: 24px 0;
  position: relative;
  padding-left: 80px;
}
.step-num {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold2);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
}
.step-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}
.step-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
.step-card li {
  font-size: 15px;
  margin-bottom: 6px;
}
.step-checklist {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.step-checklist li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 6px;
  font-size: 15px;
}
.step-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
/* ================================================================
         OPTIONAL COMPONENT: tips-grid + tip-item (mẹo ngắn dạng lưới 2 cột)
         Harvest từ landing-page/cam-nang/khi-nao-nen-thue-luat-su-bds.html
         ================================================================ */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}
.tip-item {
  padding: 16px;
  background: var(--off);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.tip-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tip-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}
@media (max-width: 480px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================================================
         OPTIONAL COMPONENT: source-note (nguồn tham khảo cuối bài, cho Tin Tức)
         Harvest từ landing-page/tin-tuc/kinh-te-da-nang-2025-2026-grdp-918.html
         ================================================================ */
.source-note {
  margin: 28px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  opacity: 0.75;
}
.source-note-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 6px;
  color: var(--muted);
}
.source-note a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(122, 106, 80, 0.35);
}
.source-note a:hover {
  color: var(--gold);
}
/* ================================================================
         OPTIONAL COMPONENT: split-media (ảnh 1 bên, chữ 1 bên)
         Layout học từ khảo sát Emagazine kenh14.vn (cơ chế flexbox 2 cột),
         màu sắc giữ nguyên bảng màu dananghome (navy/gold), KHÔNG mượn màu
         gốc của kenh14. Dùng cho bài phỏng vấn/nhân vật/case study.
         2 biến thể: .split-media (ảnh trái, chữ phải)
                      .split-media.reverse (ảnh phải, chữ trái)
         ================================================================ */
.split-media {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 40px 0;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 320px;
}
.split-media.reverse {
  flex-direction: row-reverse;
}
.split-media-img {
  flex: 1 1 50%;
  min-width: 0;
}
.split-media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-media-text {
  flex: 1 1 50%;
  min-width: 0;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(11, 25, 41, 0.06);
}
.split-media.gold-tint .split-media-text {
  background: rgba(200, 144, 42, 0.07);
}
.split-media-text h3 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}
.split-media-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 14px;
}
.split-media-text p:last-child {
  margin-bottom: 0;
}
.split-media-text strong {
  color: var(--navy);
  font-weight: 700;
}
@media (max-width: 768px) {
  .split-media,
  .split-media.reverse {
    flex-direction: column;
    min-height: 0;
  }
  .split-media-img {
    flex: none;
    height: 220px;
  }
  .split-media-text {
    padding: 24px 20px;
  }
}
/* ================================================================
         OPTIONAL COMPONENT: pull-quote (banner trích dẫn to giữa bài)
         Học cơ chế layout Emagazine kenh14.vn (block full-width, dấu ngoặc
         to, chữ quote lớn canh giữa), màu giữ nguyên navy của dananghome.
         Quy tắc màu: LUÔN nền navy (không luân phiên navy/gold, tránh loạn
         mắt), dấu ngoặc + label phụ dùng gold/amber làm điểm nhấn.
         Nội dung PHẢI là text thật (h2/blockquote/p), không phải ảnh.
         ================================================================ */
.pull-quote {
  background: var(--navy);
  border-radius: var(--r);
  padding: 48px 56px;
  margin: 48px 0;
  text-align: center;
  position: relative;
}
.pull-quote-mark {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--gold2);
  margin-bottom: 4px;
}
.pull-quote blockquote {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 16px;
}
.pull-quote-caption {
  font-size: 13px;
  color: rgba(245, 215, 138, 0.75);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .pull-quote {
    padding: 36px 24px;
  }
  .pull-quote-mark {
    font-size: 48px;
  }
}
/* ================================================================
         OPTIONAL COMPONENT: section-divider (heading phụ đánh số chương)
         Dùng cho bài dài chia nhiều phần rõ rệt. Chỉ là 1 kiểu heading,
         không phải box. Label nhỏ "PHẦN 0N" (gold) phía trên h2 (navy).
         ================================================================ */
.section-divider {
  margin: 56px 0 20px;
}
.section-divider-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-divider h2 {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
/* ================================================================
         OPTIONAL COMPONENT: full-bleed (ảnh phá khung article-body)
         .article-body giới hạn max-width 780px qua .article-wrap. Kỹ thuật
         breakout chuẩn: width:100vw + position:relative; left:50%;
         transform:translateX(-50%). Đã thêm overflow-x:hidden vào body
         (xem rule body{} ở đầu file) để chặn thanh cuộn ngang do 100vw
         gây ra khi trang có scrollbar dọc.
         ================================================================ */
.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 48px 0;
  overflow: hidden;
}
.full-bleed img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.full-bleed figcaption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding: 10px 20px 0;
  font-style: italic;
}
@media (max-width: 768px) {
  .full-bleed img {
    max-height: 320px;
  }
}
/* ================================================================
         OPTIONAL COMPONENT: gallery-grid (lưới nhiều ảnh 1 khối)
         2 biến thể qua modifier class:
         .gallery-grid.feature (1 ảnh to bên trái + 2 ảnh nhỏ xếp phải)
         .gallery-grid.even (lưới đều 2x2)
         Caption chung cho cả khối (không bắt buộc caption riêng từng ảnh).
         ================================================================ */
.gallery-grid {
  display: grid;
  gap: 10px;
  margin: 40px 0 12px;
}
.gallery-grid.feature {
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.gallery-grid.feature img:first-child {
  grid-row: 1 / 3;
}
.gallery-grid.even {
  grid-template-columns: 1fr 1fr;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.gallery-grid-caption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .gallery-grid.feature,
  .gallery-grid.even {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .gallery-grid.feature img:first-child {
    grid-row: auto;
  }
  .gallery-grid img {
    min-height: 200px;
  }
}
/* ================================================================
         Kiểm duyệt nội dung: nhỏ, muted, đặt cuối bài (không phải meta-bar
         đầu bài, badge to màu xanh ở đó bị thấy "nổi quá")
         ================================================================ */
.reviewer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.reviewer-note img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.reviewer-note a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(122, 106, 80, 0.35);
}
.reviewer-note a:hover {
  color: var(--gold);
}
/* ================================================================
         WIDGET: đánh giá hữu ích bài viết (đặt NGAY TRƯỚC .article-cta)
         ================================================================ */
.feedback-widget {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
  text-align: center;
  margin: 48px 0 0;
}
.feedback-widget h3 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}
.feedback-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.feedback-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  min-width: 84px;
  transition:
    border-color 0.2s,
    transform 0.15s;
}
.feedback-btn .fb-emoji {
  font-size: 22px;
}
.feedback-btn:hover:not(:disabled) {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.feedback-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.feedback-btn.selected {
  border-color: var(--gold);
  background: var(--amber);
  opacity: 1;
  color: var(--navy);
}
.feedback-thanks {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.feedback-thanks.show {
  display: block;
}
.feedback-options.hide {
  display: none;
}
@media (max-width: 480px) {
  .feedback-widget {
    padding: 22px 18px;
  }
  .feedback-btn {
    min-width: 72px;
    padding: 10px 10px;
  }
}
.article-cta {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin: 32px 0 0;
}
.article-cta h3 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.article-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}
.btn-gold {
  display: inline-block;
  background: #34c759;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 15px 36px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-decoration: none;
}
/* ================================================================
         RELATED ARTICLES: grid 3 thẻ (thumb + category + title), BẮT BUỘC
         Đặt sau .article-body, trước .feedback-widget
         ================================================================ */
.related-articles {
  margin: 40px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.ra-heading {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.ra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ra-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--off);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.ra-card:hover {
  transform: translateY(-3px);
}
.ra-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.ra-card-body {
  padding: 14px 16px;
}
.ra-card-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.ra-card-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
}
@media (max-width: 768px) {
  .ra-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================================================
         WIDGET: "Đọc bài viết tiếp theo", sticky nổi góc dưới-phải.
         CHỈ hiện trên PC (≥1024px), mobile/tablet ẩn hẳn vì che tầm nhìn
         đọc trên màn hình nhỏ (xem TEMPLATE-ARTICLE-SPEC.md, mục Next-Article
         Widget, sửa 2026-07-07). Trên PC chỉ hiện khi đọc tới 1/3 cuối bài,
         không phải ngay sau khi cuộn qua hero.
         ================================================================ */
.next-article-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  width: 300px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(11, 25, 41, 0.18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.next-article-widget.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.naw-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.naw-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  line-height: 1;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.naw-link {
  display: block;
  display: flex;
  gap: 12px;
  padding: 10px 14px 14px;
}
.naw-link img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.naw-body {
  min-width: 0;
}
.naw-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}
.naw-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.naw-meta {
  margin-top: 5px;
  font-size: 11px;
  color: var(--muted);
}
@media (max-width: 1023px) {
  /* Ẩn hẳn trên mobile/tablet: card nổi (dù thu nhỏ thành thanh ngang)
           vẫn che mất tầm nhìn đọc trên màn hình nhỏ. Chỉ dành cho PC. */
  .next-article-widget {
    display: none;
  }
}
/* FOOTER */
footer {
  background: #060e18;
  padding: 56px 40px 28px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  max-width: 260px;
  flex-shrink: 0;
}
.footer-brand img {
  height: 20px;
  width: auto;
  margin-bottom: 14px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover {
  color: var(--gold2);
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact-row svg {
  width: 14px;
  height: 14px;
  fill: var(--gold2);
  flex-shrink: 0;
}
.footer-contact-row a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.footer-contact-row a:hover {
  color: var(--gold2);
}
.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    align-items: start;
  }
  .footer-brand,
  .footer-col:last-of-type {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px 40px;
  }
  .hero h1 {
    font-size: clamp(28px, 6vw, 44px);
  }
  .article-wrap {
    padding: 32px 20px 64px;
  }
  .article-cta {
    padding: 36px 24px;
  }
  .article-cta h3 {
    font-size: 20px;
  }
  .step-card {
    padding-left: 20px;
    padding-top: 72px;
  }
  .step-num {
    top: 16px;
    left: 16px;
  }
  footer {
    padding: 36px 20px;
  }
}
