/* Usagi Hub — Blog listing & article */
@import url('/assets/tokens.css');
.blog-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 20px 40px;
}

body.blog-shell {
  padding-top: var(--nav-h);
}

.blog-hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 20px;
}

.blog-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt, #e8b84b);
  margin-bottom: 6px;
}

.blog-hero h1 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--white, #eef2ff);
  line-height: 1.2;
  margin-bottom: 12px;
}

.blog-lead {
  font-size: 15px;
  color: var(--txt2, #7a8baa);
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--card, #111526);
  border: 1px solid var(--bdr, #1a2138);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  border-color: rgba(200, 144, 26, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.blog-card__thumb {
  height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(145deg, rgba(200, 144, 26, 0.18), rgba(8, 11, 20, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(41, 201, 154, 0.12), transparent 55%);
  border-bottom: 1px solid var(--bdr, #1a2138);
}

.blog-card__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--gold-lt, #e8b84b);
  background: rgba(200, 144, 26, 0.12);
  border: 1px solid rgba(200, 144, 26, 0.25);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 16px;
  gap: 10px;
}

.blog-card__meta {
  font-size: 12px;
  color: var(--txt3, #4a5670);
}

.blog-card__title {
  font-family: Sora, Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--white, #eef2ff);
}

.blog-card__title a:hover {
  color: var(--gold-lt, #e8b84b);
}

.blog-card__excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--txt2, #7a8baa);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__more {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-lt, #e8b84b);
}

.blog-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.blog-pager button,
.blog-pager a {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--bdr, #1a2138);
  background: var(--card, #111526);
  color: var(--txt2, #7a8baa);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
}

.blog-pager button:hover:not(:disabled),
.blog-pager a:hover {
  border-color: rgba(200, 144, 26, 0.35);
  color: var(--white, #eef2ff);
}

.blog-pager button.active,
.blog-pager a.active {
  background: linear-gradient(145deg, var(--gold-lt, #e8b84b), var(--gold, #c8901a));
  color: #1a1408;
  border-color: transparent;
}

.blog-pager button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.blog-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--txt2, #7a8baa);
  grid-column: 1 / -1;
}

/* Article */
.blog-article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-lt, #e8b84b);
  margin-bottom: 20px;
}

.blog-back:hover {
  text-decoration: underline;
}

.blog-article-wrap h1 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--white, #eef2ff);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-article-meta {
  font-size: 13px;
  color: var(--txt3, #4a5670);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bdr, #1a2138);
}

.blog-article {
  font-size: 16px;
  line-height: 1.8;
  color: var(--txt, #b8c4dc);
}

.blog-article h2,
.blog-article h3 {
  font-family: Sora, Inter, sans-serif;
  color: var(--white, #eef2ff);
  margin: 1.6em 0 0.6em;
}

.blog-article p {
  margin-bottom: 1em;
}

.blog-article ul,
.blog-article ol {
  margin: 0 0 1em 1.25em;
}

.blog-article a {
  color: var(--gold-lt, #e8b84b);
  text-decoration: underline;
}

.blog-article blockquote {
  margin: 1.2em 0;
  padding: 14px 18px;
  border-left: 3px solid var(--gold, #c8901a);
  background: rgba(200, 144, 26, 0.06);
  border-radius: 0 10px 10px 0;
  color: var(--txt2, #7a8baa);
}

/* ── Article page (news style) ── */
.blog-post-body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200, 144, 26, 0.08), transparent 60%),
    var(--bg, #080b14);
}

.blog-post-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 20px 48px;
}

.blog-post-hero {
  max-width: 820px;
  margin: 0 auto 20px;
  text-align: center;
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--txt3, #4a5670);
  margin-bottom: 18px;
}

.blog-breadcrumb a {
  color: var(--txt2, #7a8baa);
  transition: color 0.15s;
}

.blog-breadcrumb a:hover {
  color: var(--gold-lt, #e8b84b);
}

.blog-breadcrumb span:last-child {
  color: var(--gold-lt, #e8b84b);
}

.blog-post-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  color: var(--gold-lt, #e8b84b);
  background: rgba(200, 144, 26, 0.1);
  border: 1px solid rgba(200, 144, 26, 0.28);
  margin-bottom: 16px;
}

.blog-post-title {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(1.65rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white, #eef2ff);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.blog-post-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.75;
  color: var(--txt2, #9ca3af);
  max-width: 680px;
  margin: 0 auto 22px;
}

.blog-post-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 8px;
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.blog-post-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  color: #1a1408;
  background: linear-gradient(145deg, var(--gold-lt, #e8b84b), var(--gold, #c8901a));
  flex-shrink: 0;
}

.blog-post-author strong {
  display: block;
  font-size: 14px;
  color: var(--white, #eef2ff);
}

.blog-post-author span {
  font-size: 12px;
  color: var(--txt3, #4a5670);
}

.blog-post-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--txt3, #4a5670);
}

.blog-post-stats li::before {
  content: '·';
  margin-right: 12px;
  color: var(--bdr2, #2a3560);
}

.blog-post-stats li:first-child::before {
  content: none;
  margin: 0;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 960px) {
  .blog-post-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }
}

.blog-post-sheet {
  background: var(--card, #111526);
  border: 1px solid var(--bdr, #1a2138);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.blog-post-sheet .blog-article {
  padding: 28px 24px 8px;
  font-size: 17px;
  line-height: 1.85;
  color: #c5cee0;
}

@media (min-width: 640px) {
  .blog-post-sheet .blog-article {
    padding: 36px 40px 12px;
  }
}

.blog-post-sheet .blog-article > p:first-of-type {
  font-size: 1.08em;
  color: #d8deec;
}

.blog-post-sheet .blog-article h3 {
  font-size: 1.15rem;
  margin-top: 2em;
  padding-top: 0.25em;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-post-sheet .blog-article h3:first-of-type {
  border-top: 0;
  margin-top: 1.2em;
}

.blog-post-sheet .blog-article ul,
.blog-post-sheet .blog-article ol {
  margin: 0.5em 0 1.2em;
  padding-left: 1.4em;
}

.blog-post-sheet .blog-article li {
  margin-bottom: 0.45em;
}

.blog-post-sheet .blog-article li::marker {
  color: var(--gold-lt, #e8b84b);
}

.blog-post-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--bdr, #1a2138);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .blog-post-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 28px;
  }
}

.blog-post-back {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-lt, #e8b84b);
}

.blog-post-back:hover {
  text-decoration: underline;
}

.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--txt3, #4a5670);
}

.blog-post-tags a {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--bdr, #1a2138);
  background: rgba(255, 255, 255, 0.03);
  color: var(--txt2, #7a8baa);
  transition: 0.15s;
}

.blog-post-tags a:hover {
  border-color: rgba(200, 144, 26, 0.35);
  color: var(--gold-lt, #e8b84b);
}

.blog-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-sidebar-card {
  background: var(--card, #111526);
  border: 1px solid var(--bdr, #1a2138);
  border-radius: 14px;
  padding: 20px;
}

.blog-sidebar-card h2,
.blog-sidebar-card h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white, #eef2ff);
  margin-bottom: 14px;
}

.blog-sidebar-empty {
  font-size: 13px;
  color: var(--txt3, #4a5670);
}

.blog-sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-sidebar-list a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  transition: background 0.15s;
}

.blog-sidebar-list a:hover {
  background: rgba(255, 255, 255, 0.04);
}

.blog-sidebar-list__title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--white, #eef2ff);
  margin-bottom: 4px;
}

.blog-sidebar-list__date {
  font-size: 11px;
  color: var(--txt3, #4a5670);
}

.blog-sidebar-cta p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--txt2, #7a8baa);
  margin-bottom: 14px;
}

.blog-sidebar-cta .btn-sm {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(145deg, var(--gold-lt, #e8b84b), var(--gold, #c8901a));
  color: #1a1408;
}

/* ── Hub / CMS shared layouts ── */
.hub-section-title {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 700;
  color: var(--white, #eef2ff);
  margin: 36px 0 18px;
  text-align: center;
}

.hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 8px 0 24px;
}

.hub-links a {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--bdr, #1a2138);
  background: var(--card, #111526);
  font-size: 13px;
  font-weight: 600;
  color: var(--txt2, #7a8baa);
  transition: border-color 0.2s, color 0.2s;
}

.hub-links a:hover {
  border-color: rgba(200, 144, 26, 0.35);
  color: var(--gold-lt, #e8b84b);
}

.hub-note {
  text-align: center;
  font-size: 13px;
  color: var(--txt3, #4a5670);
  margin-top: 28px;
  line-height: 1.7;
}

.hub-note a {
  color: var(--gold-lt, #e8b84b);
}

/* ── Policy page panels ── */
.policy-page .policy-hero {
  max-width: 720px;
}

.policy-panels {
  display: grid;
  gap: 20px;
  margin: 8px 0 32px;
}

@media (min-width: 960px) {
  .policy-panels {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.policy-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  border-radius: 16px;
  border: 1px solid var(--bdr, #1a2138);
  background: var(--card, #111526);
  overflow: hidden;
}

.policy-panel--trial {
  border-color: rgba(41, 201, 154, 0.35);
  background: linear-gradient(160deg, rgba(41, 201, 154, 0.12), rgba(8, 11, 20, 0.95));
  box-shadow: 0 0 0 1px rgba(41, 201, 154, 0.08), 0 16px 40px rgba(0, 0, 0, 0.28);
}

.policy-panel--founding {
  border-color: rgba(107, 163, 247, 0.28);
  background: linear-gradient(160deg, rgba(107, 163, 247, 0.1), rgba(8, 11, 20, 0.95));
}

.policy-panel--own {
  border-color: rgba(200, 144, 26, 0.35);
  background: linear-gradient(160deg, rgba(200, 144, 26, 0.12), rgba(8, 11, 20, 0.95));
}

.policy-panel__ribbon {
  position: absolute;
  top: 14px;
  right: -28px;
  transform: rotate(35deg);
  background: #29c99a;
  color: #062218;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 36px;
}

.policy-panel__num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.12;
  position: absolute;
  top: 12px;
  right: 14px;
}

.policy-panel__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-lt, #e8b84b);
}

.policy-panel--trial .policy-panel__tag {
  color: #29c99a;
  background: rgba(41, 201, 154, 0.12);
}

.policy-panel--founding .policy-panel__tag {
  color: #6ba3f7;
  background: rgba(107, 163, 247, 0.12);
}

.policy-panel h2 {
  font-family: Sora, Inter, sans-serif;
  font-size: 1.2rem;
  color: var(--white, #eef2ff);
  margin-bottom: 8px;
}

.policy-panel__lead {
  font-size: 14px;
  color: var(--txt, #b8c4dc);
  line-height: 1.65;
  margin-bottom: 12px;
}

.policy-panel__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  font-size: 13px;
  color: var(--txt2, #7a8baa);
}

.policy-panel__list li {
  padding: 6px 0 6px 18px;
  position: relative;
}

.policy-panel__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #29c99a;
  font-weight: 700;
}

.policy-panel__table-wrap {
  overflow-x: auto;
  margin: 8px 0 10px;
  -webkit-overflow-scrolling: touch;
}

.policy-panel__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.policy-panel__table th,
.policy-panel__table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--bdr, #1a2138);
  text-align: left;
}

.policy-panel__table th:not(:first-child),
.policy-panel__table td:not(:first-child) {
  text-align: right;
}

.policy-td--strike {
  color: var(--txt3, #4a5670);
  text-decoration: line-through;
}

.policy-td--gold {
  color: var(--gold-lt, #e8b84b);
  font-weight: 800;
}

.policy-td--green {
  color: #29c99a;
  font-weight: 700;
}

.policy-panel__fine {
  font-size: 11px;
  color: var(--txt3, #4a5670);
  margin-bottom: 14px;
  line-height: 1.5;
}

.policy-panel__price {
  margin: auto 0 14px;
}

.policy-panel__price-main {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #29c99a;
  line-height: 1.1;
}

.policy-panel__price-note {
  font-size: 12px;
  color: var(--txt3, #4a5670);
}

.policy-panel__cta {
  display: block;
  text-align: center;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}

.policy-panel__cta--gold {
  background: linear-gradient(145deg, var(--gold-lt, #e8b84b), var(--gold, #c8901a));
  color: #1a1408;
}

.policy-panel__cta--outline-green {
  border: 1px solid #29c99a;
  color: #29c99a;
  background: transparent;
}

.policy-compare__grid {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .policy-compare__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .policy-compare__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.policy-compare__item {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--bdr, #1a2138);
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
  color: var(--txt2, #7a8baa);
}

.policy-compare__item strong {
  display: block;
  color: var(--white, #eef2ff);
  margin-bottom: 4px;
}

/* ── Giá chính thức sau 150 suất ── */
.policy-official-banner {
  position: relative;
  margin: 40px 0 36px;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(232, 184, 75, 0.55), rgba(41, 201, 154, 0.25), rgba(232, 184, 75, 0.35));
  overflow: hidden;
}

.policy-official-banner__glow {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 184, 75, 0.18), transparent 60%);
  pointer-events: none;
}

.policy-official-banner__inner {
  position: relative;
  padding: 32px 28px 36px;
  border-radius: 18px;
  background: linear-gradient(165deg, #12182c 0%, #0a0e1a 55%, #0d1020 100%);
  text-align: center;
}

.policy-official-banner__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-lt, #e8b84b);
  margin-bottom: 12px;
}

.policy-official-banner h2 {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--white, #eef2ff);
  margin-bottom: 16px;
  line-height: 1.35;
}

.policy-official-banner__price {
  margin: 0 0 16px;
  line-height: 1;
}

.policy-official-banner__price span {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(2.8rem, 8vw, 4.2rem);
  font-weight: 700;
  color: var(--gold-lt, #e8b84b);
  letter-spacing: -0.02em;
}

.policy-official-banner__price small {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt2, #7a8baa);
}

.policy-official-banner__lead {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--txt, #b8c4dc);
}

.policy-official-banner__list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 0;
  text-align: left;
  font-size: 14px;
  color: var(--txt2, #7a8baa);
  line-height: 1.65;
}

.policy-official-banner__list li {
  padding: 8px 0 8px 20px;
  position: relative;
}

.policy-official-banner__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-lt, #e8b84b);
}

.policy-official-banner__cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #1a1408;
  background: linear-gradient(145deg, var(--gold-lt, #e8b84b), var(--gold, #c8901a));
  box-shadow: 0 8px 32px rgba(200, 144, 26, 0.25);
}

.policy-official-banner__cta:hover {
  filter: brightness(1.05);
}

/* ── About / Giới thiệu ── */
.about-page {
  max-width: min(var(--container, 1200px), 100%);
}

.about-hero {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 960px) {
  .about-hero {
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: 32px;
  }
}

.about-hero__copy {
  min-width: 0;
}

.about-hero__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
  background: linear-gradient(145deg, rgba(200, 144, 26, 0.15), rgba(8, 11, 20, 0.9));
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

.about-hero__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(8, 11, 20, 0.75);
  color: var(--gold-lt, #e8b84b);
  border: 1px solid rgba(200, 144, 26, 0.3);
}

.about-tagline {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-lt, #e8b84b);
}

.about-narrative {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.about-narrative p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--txt2);
  max-width: none;
}

.about-narrative .blog-lead {
  margin-bottom: 0;
}

.about-duo {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .about-duo {
    grid-template-columns: 1fr 1fr;
  }
}

.about-panel {
  border: 1px solid var(--bdr, #1a2138);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card, #111526);
}

.about-panel__thumb {
  position: relative;
  min-height: 140px;
  background: rgba(255, 255, 255, 0.03);
}

.about-panel__thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.about-panel__label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-lt, #e8b84b);
}

.about-panel__body {
  padding: 16px 18px 18px;
}

.about-panel__body h2 {
  font-family: Sora, Inter, sans-serif;
  font-size: 1.15rem;
  color: var(--white, #eef2ff);
  margin-bottom: 8px;
}

.about-process-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .about-process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-step {
  border: 1px solid var(--bdr, #1a2138);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card, #111526);
}

.about-step__thumb {
  position: relative;
  min-height: 110px;
}

.about-step__thumb img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.about-step__num {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-lt, #e8b84b);
}

.about-step__body {
  padding: 12px 14px 14px;
}

.about-step__body h3 {
  font-size: 14px;
  color: var(--white, #eef2ff);
  margin-bottom: 6px;
}

.about-step__body p {
  font-size: 13px;
  color: var(--txt2, #7a8baa);
  line-height: 1.6;
}

.about-closing {
  text-align: center;
  margin: 28px 0;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--bdr, #1a2138);
}

.about-closing .mark {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white, #eef2ff);
}

.about-closing .tagline {
  font-size: 12px;
  color: var(--gold-lt, #e8b84b);
  margin-top: 4px;
}

.about-spirits-banner {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bdr, #1a2138);
  background: var(--card, #111526);
}

@media (min-width: 768px) {
  .about-spirits-banner {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.about-spirits-banner img {
  width: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.about-spirits-banner__copy {
  padding: 20px;
}

.about-spirits-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .about-spirits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .about-spirits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-spirit {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bdr, #1a2138);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card, #111526);
}

.about-spirit__thumb {
  min-height: 120px;
  background: rgba(255, 255, 255, 0.03);
}

.about-spirit__thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.about-spirit__body {
  padding: 14px 14px 16px;
}

.about-spirit__num {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-lt, #e8b84b);
  margin-bottom: 6px;
}

.about-spirit__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white, #eef2ff);
  margin-bottom: 8px;
  line-height: 1.25;
}

.about-spirit__name small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--txt2, #7a8baa);
}

.about-spirit__desc {
  font-size: 13px;
  color: var(--txt2, #7a8baa);
  line-height: 1.6;
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.about-cta-row a {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--bdr, #1a2138);
  font-size: 13px;
  font-weight: 600;
  color: var(--txt2, #7a8baa);
}

.about-cta-row a.gold {
  background: linear-gradient(145deg, var(--gold-lt, #e8b84b), var(--gold, #c8901a));
  color: #1a1408;
  border: 0;
}

/* ── Legal docs — layout đọc như bài viết ── */
body.legal-read-shell {
  padding-top: var(--nav-h);
}

.legal-read-page .blog-article.legal-doc {
  max-width: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #c5cee0;
}

.legal-read-page .legal-doc h2 {
  font-family: Sora, Inter, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--gold-lt, #e8b84b);
  margin: 1.75em 0 0.6em;
}

.legal-read-page .legal-doc h3 {
  font-size: 1rem;
  color: var(--white, #eef2ff);
  margin: 1.25em 0 0.4em;
}

.legal-read-page .legal-doc p,
.legal-read-page .legal-doc li {
  font-size: 15px;
  line-height: 1.8;
  color: #c5cee0;
}

.legal-read-page .legal-doc .toc {
  margin-bottom: 1.5em;
  border-radius: 12px;
}

.legal-read-page .legal-doc .box {
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.7;
}

.legal-read-page .legal-doc .contact {
  margin-top: 2em;
  border-radius: 14px;
}

.legal-read-page .blog-post-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--bdr, #1a2138);
}

@media (min-width: 640px) {
  .legal-read-page .blog-post-footer {
    padding: 20px 40px 28px;
  }
}
