/* ============================================================
   APOLLO BLOG — Design System v2025 (Flat & Clean)
   Style: Flat, minimal — consistent with apollo.edu.vn
   Typography: Brauer NeueVN (headings) + Montserrat (body 20px)
   ============================================================ */


:root {
    /* ── 5 Apollo Brand Colors ── */
    --apollo-blue:    #2576B9;
    --apollo-yellow:  #FFCE1F;
    --apollo-dark:    #1E293B;
    --apollo-muted:   #64748B;
    --apollo-bg:      #F8FAFC;

    /* ── 5 Persona Card Accent Colors ── */
    --persona-maugiao:   #FCE99B;
    --persona-thieunhi:  #FFD4ED;
    --persona-thieunien: #A1DEF7;
    --persona-ielts:     #FFCFD2;
    --persona-card-bg:   #F8FAFC;

    /* ── Legacy aliases ── */
    --primary-color: var(--apollo-blue);
    --accent-color:  var(--apollo-yellow);
    --text-main:     var(--apollo-dark);
    --text-muted:    var(--apollo-muted);
    --bg-color:      var(--apollo-bg);
    --star-color:    #F59E0B;

    /* ── Radius ── */
    --radius-card: 16px;
    --radius-pill: 99px;
}

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


/* ── Background Utilities ── */
.bg-pattern-dots {
    position: relative;
    z-index: 1;
}
.bg-pattern-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    z-index: -1;
    pointer-events: none;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/landings/legal/fonts/Montserrat-Regular.woff2') format('woff2'),
         url('/landings/legal/fonts/Montserrat-Regular.woff') format('woff'),
         url('/landings/legal/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/landings/legal/fonts/Montserrat-Medium.woff2') format('woff2'),
         url('/landings/legal/fonts/Montserrat-Medium.woff') format('woff'),
         url('/landings/legal/fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/landings/legal/fonts/Montserrat-SemiBold.woff2') format('woff2'),
         url('/landings/legal/fonts/Montserrat-SemiBold.woff') format('woff'),
         url('/landings/legal/fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/landings/legal/fonts/Montserrat-Bold.woff2') format('woff2'),
         url('/landings/legal/fonts/Montserrat-Bold.woff') format('woff'),
         url('/landings/legal/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/landings/legal/fonts/Montserrat-ExtraBold.woff2') format('woff2'),
         url('/landings/legal/fonts/Montserrat-ExtraBold.woff') format('woff'),
         url('/landings/legal/fonts/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Brauer NeueVN';
    src: url('/landings/legal/fonts/BrauerNeueVN-Bold.woff2') format('woff2'),
         url('/landings/legal/fonts/BrauerNeueVN-Bold.woff') format('woff'),
         url('/landings/legal/fonts/BrauerNeueVN-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── Body ── */
body, .cat-page, .new-landing-page { background-color: #ffffff !important; }

body {
    font-family: \'Montserrat\', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.25px;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Paragraphs & lists ── */
p, li, span, label, td, th {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.25px;
}

p { margin-bottom: 20px; }

/* ── Headings — Brauer NeueVN ── */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 16px 0;
    color: var(--apollo-blue);
    font-family: "Brauer NeueVN", 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.5px;
}

h1 { font-size: 44px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── NO floating shapes / NO glassmorphism ── */
.bg-shape { display: none !important; }

/* ── Flat Card (replaces glass-panel) ── */
.glass-panel,
.flat-card {
    background: #fff;
    border: none;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.glass-panel:hover,
.flat-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

/* ── Header ── */
.header {
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
    font-family: "Brauer NeueVN", 'Outfit', sans-serif;
}
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 36px; width: auto; object-fit: contain; }
.logo span { color: var(--apollo-yellow); }

.nav { display: flex; gap: 28px; }
.nav a {
    color: var(--apollo-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
}
.nav a:hover, .nav a.active { opacity: 1; color: var(--apollo-blue); }

/* ── Buttons — flat, rounded-full ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.25px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}
/* Yellow CTA — same as apollo.edu.vn */
.btn-primary {
    background: var(--apollo-yellow);
    color: var(--apollo-dark);
    box-shadow: none;
}
.btn-primary:hover {
    background: #f0b800;
    color: var(--apollo-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 206, 31, 0.35);
}
/* Blue outline secondary */
.btn-secondary {
    background: transparent;
    color: var(--apollo-blue);
    border: 2px solid var(--apollo-blue);
}
.btn-secondary:hover {
    background: var(--apollo-blue);
    color: #fff;
}

/* ── Tags / Pills ── */
.meta {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; margin-bottom: 14px; flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
}
.tag {
    display: inline-flex; align-items: center;
    background: rgba(37, 118, 185, 0.08);
    color: var(--apollo-blue);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    border: 1px solid rgba(37, 118, 185, 0.15);
    font-family: 'Montserrat', sans-serif;
}
.tag.yellow { background: rgba(255, 206, 31, 0.12); color: #a16207; border-color: rgba(255, 206, 31, 0.3); }
.date { color: var(--apollo-muted); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 5px; }

/* ── Page Header ── */
.page-header { text-align: center; margin: 48px 0 36px; }
.page-subtitle { font-size: 18px; color: var(--apollo-muted); margin-top: 10px; }

/* ── Hero Post — flat 2-col ── */
.hero-post {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; overflow: hidden; margin-bottom: 64px;
    border-radius: var(--radius-card);
    border: none;
    background: #fff;
}
.hero-post-img-wrap { height: 100%; min-height: 400px; overflow: hidden; }
.hero-post-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hero-post:hover .hero-post-img-wrap img { transform: scale(1.03); }
.hero-post-content { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.hero-post h2 { margin-bottom: 16px; line-height: 1.25; }
.hero-post p { font-size: 18px; color: var(--apollo-muted); margin-bottom: 28px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Blog Grid — flat cards ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; margin-bottom: 56px; }
.blog-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: none;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
}
.blog-card:hover { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06); transform: translateY(-3px); }
.blog-card-img-wrap { position: relative; width: 100%; padding-top: 56%; overflow: hidden; }
.blog-card-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.04); }
.blog-card-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 22px; margin: 8px 0 12px; line-height: 1.3; flex-grow: 1; }
.blog-card h3 a::before { content: ''; position: absolute; inset: 0; z-index: 10; }
.blog-card:hover h3 { color: var(--apollo-blue); }
.blog-card p { font-size: 18px; color: var(--apollo-muted); margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Read More ── */
.read-more {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 600; color: var(--apollo-blue);
    font-size: 18px; margin-top: auto;
    font-family: 'Montserrat', sans-serif;
    transition: gap 0.2s;
    position: relative; z-index: 11;
}
.read-more i { transition: transform 0.2s ease; }
.blog-card:hover .read-more i,
.hero-post:hover .read-more i { transform: translateX(5px); }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 80px; }
.page-num { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-pill); font-weight: 600; font-family: 'Montserrat', sans-serif; color: var(--apollo-dark); cursor: pointer; border: none; background: #fff; transition: all 0.2s; }
.page-num:hover { border-color: var(--apollo-blue); color: var(--apollo-blue); }
.page-num.active { background: var(--apollo-blue); color: #fff; border-color: var(--apollo-blue); }
.page-next, .page-prev { font-size: 18px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-pill); color: var(--apollo-blue); border: none; background: #fff; transition: all 0.2s; }
.page-next:hover, .page-prev:hover { background: var(--apollo-blue); color: #fff; border-color: var(--apollo-blue); }

/* ── Blog Detail ── */
.detail-hero { padding: 48px 0 32px; }
.article-header { text-align: center; max-width: 860px; margin: 0 auto; }
.article-header h1 { margin: 20px 0; }
.article-header .meta { justify-content: center; }
.article-body { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.article-banner { width: 100%; height: 480px; border-radius: var(--radius-card); object-fit: cover; margin-bottom: 48px; }

/* ── Article content ── */
.article-content {
    max-width: 780px; margin: 0 auto; padding: 0 20px 80px;
    font-family: 'Montserrat', sans-serif;
    
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.25px;
    color: #000;
}
.article-content p { margin-bottom: 24px;  }
.article-content p:first-of-type::first-letter {
    font-size: 60px; float: left; margin: 8px 14px 0 0;
    line-height: 0.85; color: var(--apollo-yellow);
    font-family: "Brauer NeueVN", 'Outfit', sans-serif; font-weight: 800;
}
.article-content h2 { margin: 48px 0 18px; font-size: 32px; }
.article-content h3 { margin: 32px 0 14px; font-size: 26px; }
.article-content h4 { margin: 24px 0 12px; font-size: 22px; }
.article-content img { width: 100%; border-radius: var(--radius-card); margin: 36px 0; }
.article-content img + em { display: block; text-align: center; color: var(--apollo-muted); font-size: 14px; margin-top: -20px; margin-bottom: 36px; font-style: italic; }
.article-content ul, .article-content ol { margin-bottom: 24px; padding-left: 24px; }
.article-content li { margin-bottom: 12px;  }
.article-content blockquote {
     font-style: italic;
    color: var(--apollo-blue);
    border-left: 3px solid var(--apollo-yellow);
    padding: 20px 28px;
    background: #F8FAFC;
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    margin: 36px 0;
    line-height: 1.6;
}

/* ── Share Bar ── */
.share-bar { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid #E2E8F0; margin-top: 48px; }
.share-bar span { font-weight: 700; color: var(--apollo-dark); font-size: 18px; }
.share-links { display: flex; gap: 10px; }
.share-btn { width: 40px; height: 40px; border-radius: var(--radius-pill); display: flex; align-items: center; justify-content: center; background: #F1F5F9; color: var(--apollo-blue); transition: all 0.2s; font-size: 18px; border: none; }
.share-btn:hover { background: var(--apollo-blue); color: #fff; border-color: var(--apollo-blue); }

/* ── Inputs — flat, 1px border ── */
input, textarea, select {
    border-radius: var(--radius-card);
    border: 1px solid #CBD5E1;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 0.25px;
    padding: 12px 16px;
    transition: border-color 0.2s;
    width: 100%;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--apollo-blue);
}

/* ── Small/meta ── */
.meta *, .date, small, caption {
    font-size: 14px !important;
    font-family: 'Montserrat', sans-serif;
}

/* ── Reveal animation (subtle) ── */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-post { grid-template-columns: 1fr; }
  .hero-post-img-wrap { min-height: 320px; }
  .article-content { padding: 0 0 60px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .container { padding: 0 16px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
  body { font-size: 17px; }
  p, li { font-size: 17px; }
  .article-content { font-size: 17px; }
  .article-content p, .article-content li { font-size: 17px; }
  .article-banner { height: 220px; }
  .article-header h1 { font-size: 28px; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer {
    padding: 48px 0 32px;
    background: #fff;
    border-top: 1px solid #E2E8F0;
    font-family: 'Montserrat', sans-serif;
}
.footer-container { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid #E2E8F0; margin-bottom: 24px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 15px; font-weight: 500; color: var(--apollo-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--apollo-blue); }
.footer-bottom { text-align: center; color: var(--apollo-muted); font-size: 13px; }
@media (max-width: 768px) { .footer-container { flex-direction: column; gap: 16px; } }

/* ================================================================
   PAGE-SPECIFIC STYLES — STORYTELLING (story-*)
   ================================================================ */

/* Breadcrumb */
.story-breadcrumb { background: #fff; padding: 14px 0; border-bottom: 1px solid #E2E8F0; }
.story-breadcrumb-inner { max-width: 1260px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 13px; color: #64748b; }
.story-breadcrumb-inner a { color: #2576B9; }
.story-breadcrumb-inner span { color: #94a3b8; }

/* Hero */
.story-hero { background: linear-gradient(135deg, #1A5A8F 0%, #2576B9 100%); padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.story-hero-badge { display: inline-block; background: rgba(255,255,255,0.2); color: #fff; padding: 6px 20px; border-radius: 99px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; border: none; }
.story-hero h1 { color: #fff; font-family: 'Brauer NeueVN', sans-serif; font-size: 48px !important; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.story-hero-sub { color: rgba(255,255,255,0.85); font-family: 'Montserrat', sans-serif; font-size: 18px; max-width: 750px; margin: 0 auto 30px; line-height: 1.7; }
.story-hero-meta { display: flex; align-items: center; justify-content: center; gap: 20px; color: rgba(255,255,255,0.75); font-size: 14px; font-family: 'Montserrat', sans-serif; }
.story-hero-meta span { display: flex; align-items: center; gap: 6px; }

/* Story Sections */
.story-section { padding: 70px 0; }
.story-container { max-width: 1260px; margin: 0 auto; padding: 0 32px; }
.story-row { display: flex; flex-wrap: wrap; align-items: center; gap: 60px; }
.story-row.reverse { flex-direction: row-reverse; }
.story-col-img { flex: 1; min-width: 300px; }
.story-col-text { flex: 1; min-width: 300px; }
.story-col-img img { width: 100%; border-radius: 16px; display: block; }
.story-label { display: inline-block; color: #FFCE1F; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.story-title { color: #1E293B; font-family: 'Brauer NeueVN', sans-serif; font-size: 34px !important; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.story-body { color: #475569; font-family: 'Montserrat', sans-serif; font-size: 18px; line-height: 1.7; margin-bottom: 16px; }
.story-quote { border-left: 3px solid #FFCE1F; padding: 18px 24px; background: #F8FAFC; border-radius: 0 16px 16px 0; margin: 24px 0; font-style: italic; color: #1E293B; font-family: 'Montserrat', sans-serif; font-size: 18px; line-height: 1.7; }
.story-list { list-style: none; padding: 0; margin: 16px 0; }
.story-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; color: #1E293B; font-family: 'Montserrat', sans-serif; font-size: 18px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.story-list li:last-child { border-bottom: none; }
.story-list .check { width: 22px; height: 22px; background: #2576B9; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.story-list .check svg { width: 12px; height: 12px; color: #fff; }

/* 3-col section */
.story-3col-section { padding: 70px 0; background: #F8FAFC; }
.story-3col-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.story-card { background: #fff; border-radius: 16px; padding: 32px 28px; border: none; transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; }
.story-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #2576B9; }
.story-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06); }
.story-card-icon { width: 52px; height: 52px; background: #2576B9; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.story-card-icon svg { width: 26px; height: 26px; color: #fff; }
.story-card h3 { color: #1E293B; font-family: 'Brauer NeueVN', sans-serif; font-size: 22px !important; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.story-card p { color: #475569; font-family: 'Montserrat', sans-serif; font-size: 18px; line-height: 1.7; }

/* Stats banner */
.story-stats { background: linear-gradient(135deg, #1A5A8F 0%, #2576B9 100%); padding: 60px 0; }
.story-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; text-align: center; }
.story-stat-num { font-family: 'Brauer NeueVN', sans-serif; font-size: 52px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.story-stat-label { color: rgba(255,255,255,0.85); font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 500; }

/* Form CTA */
.story-form-section { padding: 80px 0; background: #F8FAFC; }
.story-form-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.story-form-left { flex: 1; min-width: 280px; }
.story-form-left h2 { font-family: 'Brauer NeueVN', sans-serif; font-size: 40px !important; font-weight: 800; color: #1E293B; line-height: 1.2; margin-bottom: 16px; }
.story-form-left p { color: #475569; font-family: 'Montserrat', sans-serif; font-size: 18px; line-height: 1.7; margin-bottom: 28px; }
.story-form-box { flex: 1; min-width: 280px; background: #fff; border-radius: 16px; padding: 40px; border: none; }
.story-form-box input, .story-form-box select { width: 100%; padding: 14px 16px; border: 1px solid #CBD5E1; border-radius: 16px; font-family: 'Montserrat', sans-serif; font-size: 15px; margin-bottom: 14px; outline: none; transition: border-color 0.2s; box-sizing: border-box; background: #F8FAFC; }
.story-form-box input:focus, .story-form-box select:focus { border-color: #2576B9; background: #fff; }
.story-form-box button { width: 100%; padding: 16px; background: #FFCE1F; color: #1E293B; border: none; border-radius: 99px; font-family: 'Brauer NeueVN', sans-serif; font-size: 17px; font-weight: 700; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; margin-top: 6px; }
.story-form-box button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,206,31,0.35); }
.story-form-note { font-size: 13px; color: #94a3b8; text-align: center; margin-top: 12px; font-family: 'Montserrat', sans-serif; }
.story-form-note a { color: #2576B9; }

@media (max-width: 768px) {
  .story-hero { padding: 48px 0 36px; }
  .story-hero h1 { font-size: 32px !important; }
  .story-row { flex-direction: column !important; gap: 32px; }
  .story-title { font-size: 26px !important; }
  .story-stat-num { font-size: 38px; }
  .story-container { padding: 0 16px; }
  .story-breadcrumb-inner { padding: 0 16px; }
  .story-form-inner { padding: 0 16px; gap: 32px; }
  .story-form-box { padding: 28px 20px; }
}

/* ================================================================
   PAGE-SPECIFIC STYLES — WEBINAR (wb-*)
   ================================================================ */

.wb-breadcrumb { background: #fff; padding: 14px 0; border-bottom: 1px solid #E2E8F0; }
.wb-breadcrumb-inner { max-width: 1260px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 13px; color: #64748b; }
.wb-breadcrumb-inner a { color: #2576B9; }
.wb-breadcrumb-inner span { color: #94a3b8; }

.wb-hero { background: linear-gradient(135deg, #FFF9E8 0%, #FFFDF5 60%, #F8FAFC 100%); padding: 40px 0; }
.wb-hero-inner { max-width: 1260px; margin: 0 auto; padding: 0 32px; display: flex; gap: 50px; align-items: flex-start; flex-wrap: wrap; }
.wb-hero-left { flex: 1.2; min-width: 300px; }
.wb-hero-right { flex: 0.8; min-width: 280px; }

.wb-tag { display: inline-block; background: #FFCE1F; color: #1E293B; padding: 4px 14px; border-radius: 99px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; }
.wb-tag.blue { background: #2576B9; color: #fff; }
.wb-hero-left h1 { font-family: 'Brauer NeueVN', sans-serif; font-size: 42px !important; font-weight: 800; color: #1E293B; line-height: 1.2; margin-bottom: 20px; }

.wb-event-details { background: #fff; border-radius: 16px; padding: 20px 24px; margin-bottom: 24px; border: none; display: flex; flex-direction: column; gap: 12px; }
.wb-event-detail-row { display: flex; align-items: center; gap: 12px; font-family: 'Montserrat', sans-serif; font-size: 18px; color: #1E293B; }
.wb-event-detail-row .icon { width: 36px; height: 36px; background: #F1F5F9; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #2576B9; }
.wb-desc { font-family: 'Montserrat', sans-serif; font-size: 18px; color: #475569; line-height: 1.75; margin-bottom: 20px; }

.wb-speakers { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.wb-speaker { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: 12px; padding: 14px 18px; border: none; }
.wb-speaker-avatar { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; background: #2576B9; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 18px; font-family: 'Brauer NeueVN', sans-serif; }
.wb-speaker-info strong { font-family: 'Brauer NeueVN', sans-serif; font-size: 18px; color: #1E293B; display: block; }
.wb-speaker-info span { font-family: 'Montserrat', sans-serif; font-size: 15px; color: #64748b; }

.wb-form-card { background: #fff; border-radius: 16px; padding: 36px 32px; border: none; position: sticky; top: 100px; }
.wb-form-card h3 { font-family: 'Brauer NeueVN', sans-serif; font-size: 22px; color: #1E293B; margin-bottom: 6px; text-align: center; }
.wb-form-card .wb-form-sub { text-align: center; color: #64748b; font-family: 'Montserrat', sans-serif; font-size: 18px; margin-bottom: 24px; }
.wb-form-card input, .wb-form-card select { width: 100%; padding: 13px 16px; border: 1px solid #CBD5E1; border-radius: 16px; font-family: 'Montserrat', sans-serif; font-size: 15px; margin-bottom: 12px; outline: none; transition: border-color 0.2s; box-sizing: border-box; background: #F8FAFC; }
.wb-form-card input:focus, .wb-form-card select:focus { border-color: #2576B9; background: #fff; }
.wb-form-card button { width: 100%; padding: 15px; background: #FFCE1F; color: #1E293B; border: none; border-radius: 99px; font-family: 'Brauer NeueVN', sans-serif; font-size: 17px; font-weight: 700; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.wb-form-card button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,206,31,0.35); }
.wb-form-note { font-size: 12px; color: #94a3b8; text-align: center; margin-top: 10px; font-family: 'Montserrat', sans-serif; }
.wb-form-note a { color: #2576B9; }
.wb-seats-left { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 18px; font-family: 'Montserrat', sans-serif; font-size: 18px; color: #dc2626; font-weight: 600; }
.wb-pulse { width: 10px; height: 10px; background: #dc2626; border-radius: 50%; animation: wbpulse 1.5s ease-in-out infinite; }
@keyframes wbpulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.wb-content-section { padding: 40px 0; }
.wb-content-inner { max-width: 1260px; margin: 0 auto; padding: 0 32px; }
.wb-section-title { font-family: 'Brauer NeueVN', sans-serif; font-size: 34px !important; color: #1E293B; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.wb-section-sub { font-family: 'Montserrat', sans-serif; font-size: 18px; color: #475569; line-height: 1.7; margin-bottom: 24px; }
.wb-lr-row { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.wb-lr-row.reverse { flex-direction: row-reverse; }
.wb-lr-img { flex: 1; min-width: 280px; }
.wb-lr-text { flex: 1; min-width: 280px; }
.wb-lr-img img { width: 100%; border-radius: 16px; }

.wb-preview-card { background: #1E293B; border-radius: 16px; padding: 22px 24px; position: relative; overflow: hidden; }
.wb-preview-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #FFCE1F; }
.wb-preview-live { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.wb-preview-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: wbpulse 1.5s ease-in-out infinite; }
.wb-preview-live span { color: #22c55e; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; }
.wb-preview-date { color: rgba(255,255,255,0.6); font-size: 12px; font-family: 'Montserrat', sans-serif; margin-left: auto; }
.wb-preview-card h4 { color: #fff; font-family: 'Brauer NeueVN', sans-serif;  line-height: 1.3; margin-bottom: 16px; }
.wb-preview-speakers { display: flex; gap: 20px; flex-wrap: wrap; }
.wb-preview-speaker { display: flex; align-items: center; gap: 10px; }
.wb-preview-speaker-img { width: 44px; height: 44px; border-radius: 50%; background: #2576B9; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 14px; font-family: 'Brauer NeueVN', sans-serif; border: 2px solid rgba(255,255,255,0.2); }
.wb-preview-speaker-info strong { color: #fff; font-size: 14px; font-family: 'Brauer NeueVN', sans-serif; display: block; }
.wb-preview-speaker-info span { color: rgba(255,255,255,0.6); font-size: 12px; font-family: 'Montserrat', sans-serif; }

.wb-content-list { list-style: none; padding: 0; margin: 0; }
.wb-content-list li { padding: 20px 0; border-bottom: 1px solid #E2E8F0; }
.wb-content-list li:last-child { border-bottom: none; }
.wb-content-list strong { display: block; font-family: 'Brauer NeueVN', sans-serif; font-size: 18px; color: #1E293B; margin-bottom: 6px; }
.wb-content-list p { font-family: 'Montserrat', sans-serif; font-size: 18px; color: #475569; line-height: 1.65; margin: 0; }
.wb-bullet-list { list-style: none; padding: 0; margin: 16px 0; }
.wb-bullet-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-family: 'Montserrat', sans-serif; font-size: 18px; color: #1E293B; line-height: 1.6; }
.wb-bullet-list li::before { content: '✓'; color: #2576B9; font-weight: 700; flex-shrink: 0; font-size: 15px; margin-top: 1px; }

.wb-divider-section { background: linear-gradient(135deg, #1A5A8F 0%, #2576B9 100%); padding: 50px 0; }
.wb-divider-inner { max-width: 900px; margin: 0 auto; padding: 0 32px; text-align: center; }
.wb-divider-inner h2 { color: #fff; font-family: 'Brauer NeueVN', sans-serif; font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.wb-divider-inner p { color: rgba(255,255,255,0.85); font-family: 'Montserrat', sans-serif; font-size: 18px; line-height: 1.7; margin-bottom: 28px; }
.wb-divider-btn { display: inline-block; background: #FFCE1F; color: #1E293B; padding: 15px 40px; border-radius: 99px; font-family: 'Brauer NeueVN', sans-serif; font-size: 17px; font-weight: 700; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; text-decoration: none; }
.wb-divider-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,206,31,0.4); color: #1E293B; }

@media (max-width: 768px) {
  /* ── Hero layout ── */
  .wb-hero { padding: 24px 0; }
  .wb-hero-inner {
    flex-direction: column !important;
    gap: 24px;
    padding: 0 16px;
  }
  .wb-hero-header { margin-bottom: 6px !important; }
  .wb-hero-left h1,
  .wb-hero-header h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }

  /* ── Speaker grid: override inline-style 2-col grid → single column ── */
  .wb-speakers-highlight [style*="grid-template-columns: 1fr 1.3fr"],
  .wb-speakers-highlight > div[style],
  .wb-hero-left .wb-speakers-highlight > div {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Each speaker card spans full width */
  .wb-speakers-highlight [style*="grid-column"],
  .wb-speakers-highlight [style*="grid-row"] {
    grid-column: unset !important;
    grid-row: unset !important;
  }

  /* Main speaker card: switch to horizontal row on mobile */
  .wb-speakers-highlight [style*="flex-direction: column"] {
    flex-direction: row !important;
    text-align: left !important;
    padding: 14px !important;
    justify-content: flex-start !important;
    gap: 14px !important;
  }

  /* ── Event detail: override inline 2-col grid → single column ── */
  .wb-event-details [style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
  .wb-event-details [style*="margin-bottom: 0"] {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .wb-event-details { padding: 14px 16px; }
  .wb-event-detail-row strong { font-size: 15px; }
  .wb-event-detail-row span { font-size: 14px; }

  /* ── Description text ── */
  .wb-desc { font-size: 15px !important; line-height: 1.65; }

  /* ── Form card ── */
  .wb-form-card {
    position: static !important;
    padding: 24px 20px;
  }
  .wb-hero-right { width: 100%; }

  /* ── Section headings ── */
  .wb-section-title { font-size: 24px !important; }

  /* ── Content sections padding ── */
  .wb-content-section { padding: 28px 0; }
  .wb-content-inner { padding: 0 16px; }

  /* ── LR row ── */
  .wb-lr-row { flex-direction: column !important; gap: 24px; }

  /* ── "Đặc quyền" 3-col benefit cards → 1-col ── */
  .wb-content-section.grey [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* ── Divider section ── */
  .wb-divider-section { padding: 32px 0; }
  .wb-divider-inner { padding: 0 16px; }
  .wb-divider-inner h2 { font-size: 22px; }
  .wb-divider-btn { padding: 13px 28px; font-size: 15px; display: block; text-align: center; }

  /* ── Past webinar section ── */
  .wb-past-event-section { padding: 28px 0 !important; }
  .wb-past-event-section .wb-content-inner { padding: 0 16px !important; }

  /* Past webinar grid: 3-col → 1-col */
  .cat-story-grid[style*="repeat(3"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* ── CTA email section ── */
  .blog-cta-section { padding: 48px 0; }
  .blog-cta-inner {
    flex-direction: column !important;
    gap: 24px;
    padding: 0 16px;
  }
  .blog-cta-form form > div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .blog-cta-form form > div[style*="display: flex"] button {
    width: 100% !important;
    padding: 14px !important;
  }
  .blog-cta-text h2 { font-size: 24px !important; }
  .blog-cta-text p { font-size: 18px !important; }

  /* ── Main content padding-top: head height fix for mobile ── */
  #main-content { padding-top: 72px !important; }

  /* ── Section header ── */
  .cat-section-header[style] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .cat-section-h2 { font-size: 22px !important; }
}

/* ── Portrait Speaker Cards ── */
.wb-speakers-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.wb-speaker-3col-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Portrait photo area */
.wb-speaker-portrait {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    flex-shrink: 0;
}
.wb-speaker-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}
.wb-speaker-3col-card:hover .wb-speaker-portrait img {
    transform: scale(1.04);
}
/* Country badge overlay */
.wb-speaker-country {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    letter-spacing: 0.5px;
}

/* Info section */
.wb-speaker-info {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
/* Role badge */
.wb-speaker-badge {
    display: inline-block;
    background: rgba(37,118,185,0.1);
    color: #2576B9;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 12px;
    width: fit-content;
}
/* Speaker name */
.wb-speaker-info strong {
    font-family: 'Brauer NeueVN', sans-serif;
    font-size: 22px;
    color: #1E293B;
    display: block;
    line-height: 1.2;
    margin-bottom: 4px;
}
/* Sub-title */
.wb-speaker-info em {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-style: normal;
    color: #64748b;
    display: block;
    margin-bottom: 14px;
    line-height: 1.4;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 12px;
}
/* Bio */
.wb-speaker-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .wb-speakers-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .wb-speakers-3col {
        grid-template-columns: 1fr;
    }
    .wb-speaker-portrait {
        aspect-ratio: 3 / 2;
    }
}

/* ── Event detail row: strong (subheader) & span (paragraph) ── */
.wb-event-detail-row strong { font-family: 'Brauer NeueVN', sans-serif; font-size: 18px; color: #1E293B; display: block; }
.wb-event-detail-row span { font-family: 'Montserrat', sans-serif; font-size: 18px; color: #64748b; }

/* ── Icon variants ── */
.wb-event-detail-row .icon.yellow { background: rgba(255,206,31,0.08); color: #FFCE1F; }

/* ── Speaker avatar: yellow gradient variant ── */
.wb-speaker-avatar.yellow { background: linear-gradient(135deg, #FFCE1F, #f0b800); }
.wb-preview-speaker-img.yellow { background: linear-gradient(135deg, #FFCE1F, #f0b800); }

/* ── Seats-left count highlight ── */
.wb-seats-count { margin: 0 4px; }

/* ── Content section background variants ── */
.wb-content-section.white { background: #fff; }
.wb-content-section.grey { background: #f8fafc; }

/* ── Section label / overline (reusable across pages) ── */
.wb-label { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.wb-label.yellow { color: #FFCE1F; }
.wb-label.blue { color: #2576B9; }

/* ── "Webinar Bao Gom" info box ── */
.wb-includes-box { margin-top: 24px; background: #f0f7ff; border-radius: 16px; padding: 24px; border: 1px solid rgba(37,118,185,0.1); }
.wb-includes-box-title { font-family: 'Brauer NeueVN', sans-serif; font-size: 18px; color: #1E293B; font-weight: 700; margin-bottom: 12px; }
.wb-includes-list { list-style: none; padding: 0; font-family: 'Montserrat', sans-serif; font-size: 18px; color: #475569; display: flex; flex-direction: column; gap: 10px; }

/* ── Testimonial quote box ── */
.wb-quote-box { background: #2576B9; border-radius: 16px; padding: 20px 24px; margin-top: 24px; }
.wb-quote-box-title { color: #fff; font-family: 'Brauer NeueVN', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.wb-quote-box-text { color: rgba(255,255,255,0.9); font-family: 'Montserrat', sans-serif; font-size: 18px; line-height: 1.7; margin: 0; font-style: italic; }

/* ── Shared footer (reusable across all blog pages) ── */
.blog-footer { background: #fff; border-top: 1px solid #e2e8f0; padding: 32px 0 40px; font-family: 'Outfit', sans-serif; }
.blog-footer-inner { max-width: 1260px; margin: 0 auto; padding: 0 32px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.blog-footer-logo { cursor: pointer; }
.blog-footer-logo img { height: 64px; object-fit: contain; display: block; }
.blog-footer-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.blog-footer-links a { color: #2576b9; font-weight: 700; font-size: 18px; text-decoration: none; opacity: 0.9; transition: opacity 0.2s; }
.blog-footer-links a:hover { opacity: 1; }
.blog-footer-bottom { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.blog-footer-copy { color: #252525; font-size: 13px; font-family: 'Montserrat', sans-serif; }
.blog-footer-socials { display: flex; gap: 8px; }
.blog-footer-socials a { width: 32px; height: 32px; background: #2576b9; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 4px; text-decoration: none; transition: background 0.2s; }
.blog-footer-socials a:hover { background: #1a5a8f; }
.blog-footer-socials svg { width: 16px; height: 16px; }

/* ================================================================
   PAGE-SPECIFIC STYLES — BLOG POST (blog-*)
   ================================================================ */

.blog-breadcrumb { background: #fff; padding: 14px 0; border-bottom: 1px solid #E2E8F0; }
.blog-breadcrumb-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 13px; color: #64748b; }
.blog-breadcrumb-inner a { color: #2576B9; }
.blog-breadcrumb-inner span { color: #94a3b8; }

.blog-article-wrap { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.blog-article-header { max-width: 900px; margin: 0 auto; padding: 50px 0 0; text-align: center; }
.blog-tag { display: inline-block; background: rgba(37,118,185,0.08); color: #2576B9; padding: 5px 16px; border-radius: 99px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; border: 1px solid rgba(37,118,185,0.15); }
.blog-tag.orange { background: rgba(255,206,31,0.08); color: #a16207; border-color: rgba(255,206,31,0.2); }
.blog-article-title { font-family: 'Brauer NeueVN', sans-serif; font-size: 44px !important; font-weight: 800; color: #1E293B; line-height: 1.15; margin-bottom: 20px; }
.blog-article-intro { max-width: 900px; margin: 0 auto 28px; font-family: 'Montserrat', sans-serif;  color: #475569; line-height: 1.7; max-width: 750px; margin: 0 auto 28px; }
.blog-article-meta { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; font-family: 'Montserrat', sans-serif; font-size: 14px; color: #64748b; padding-bottom: 30px; border-bottom: 1px solid #E2E8F0; }
.blog-author { display: flex; align-items: center; gap: 10px; }
.blog-author-avatar { width: 36px; height: 36px; border-radius: 50%; background: #2576B9; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; font-family: 'Brauer NeueVN', sans-serif; }
.blog-share-bar { display: flex; gap: 10px; align-items: center; }
.blog-share-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(37,118,185,0.08); color: #2576B9; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(37,118,185,0.15); transition: all 0.2s; cursor: pointer; text-decoration: none; font-size: 14px; }
.blog-share-btn:hover { background: #2576B9; color: #fff; }

.blog-banner-wrap { margin: 36px 0; }
.blog-banner-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: 16px; display: block; }
.blog-banner-caption { text-align: center; color: #94a3b8; font-family: 'Montserrat', sans-serif; font-size: 13px; margin-top: 10px; font-style: italic; }

.blog-article-body { max-width: 900px; margin: 0 auto; font-family: 'Montserrat', sans-serif;  color: #000; line-height: 150%; letter-spacing: 0.25px; }
.blog-article-body p { margin-bottom: 24px; }
.blog-article-body p:first-of-type::first-letter { font-size: 64px; float: left; margin: 8px 16px 0 0; line-height: 0.75; color: #FFCE1F; font-family: 'Brauer NeueVN', sans-serif; font-weight: 800; }
.blog-article-body h2 { font-family: 'Brauer NeueVN', sans-serif; font-size: 30px !important; color: #1E293B; font-weight: 800; margin: 48px 0 18px; padding-left: 18px; border-left: 3px solid #FFCE1F; }
.blog-article-body h3 { font-family: 'Brauer NeueVN', sans-serif; font-size: 22px !important; color: #1E293B; font-weight: 700; margin: 34px 0 14px; }
.blog-article-body ul { padding-left: 0; list-style: none; margin-bottom: 24px; }
.blog-article-body ul li { padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.05);  }
.blog-article-body ul li:last-child { border-bottom: none; }
.blog-article-body ul li::before { content: '✓'; position: absolute; left: 0; color: #2576B9; font-weight: 700; }
.blog-article-body blockquote {  font-style: italic; color: #1E293B; border-left: 3px solid #FFCE1F; padding: 24px 32px; background: #F8FAFC; border-radius: 0 16px 16px 0; margin: 40px 0; line-height: 1.65; }
.blog-article-body img { width: 100%; border-radius: 16px; margin: 36px 0 10px; display: block; }
.blog-article-body img + em { display: block; text-align: center; color: #94a3b8; font-size: 14px; margin-bottom: 36px; font-style: italic; }

.blog-tip-box { background: #F0F7FF; border-radius: 16px; padding: 30px 32px; margin: 32px 0; border: 1px solid rgba(37,118,185,0.1); position: relative; overflow: hidden; }
.blog-tip-box::before { content: attr(data-num); position: absolute; right: 20px; top: 10px; font-family: 'Brauer NeueVN', sans-serif; font-size: 80px; font-weight: 800; color: rgba(37,118,185,0.06); line-height: 1; }
.blog-tip-box h3 { font-family: 'Brauer NeueVN', sans-serif; font-size: 22px !important; color: #2576B9; font-weight: 800; margin-bottom: 12px; }
.blog-tip-box p { margin: 0; font-size: 18px !important; color: #334155; line-height: 1.75; }

.blog-footer-bar { display: flex; align-items: center; justify-content: space-between; padding: 32px 0; margin-top: 48px; border-top: 1px solid #E2E8F0; flex-wrap: wrap; gap: 16px; }
.blog-tags-group { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-tag-pill { background: #F1F5F9; color: #475569; padding: 6px 14px; border-radius: 99px; font-size: 13px; font-family: 'Montserrat', sans-serif; font-weight: 500; transition: all 0.2s; cursor: pointer; }
.blog-tag-pill:hover { background: #E2E8F0; color: #1E293B; }
.blog-share-group { display: flex; align-items: center; gap: 10px; }
.blog-share-group span { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; color: #475569; }

.blog-related { padding: 60px 0; background: #F8FAFC; }
.blog-related-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.blog-related h2 { font-family: 'Brauer NeueVN', sans-serif; font-size: 26px !important; color: #1E293B; font-weight: 800; margin-bottom: 28px; }
.blog-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.blog-related-card { background: #fff; border-radius: 16px; overflow: hidden; border: none; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.blog-related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06); }
.blog-related-card img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.blog-related-card-body { padding: 18px 20px; }
.blog-related-card-body .mini-tag { font-size: 11px; color: #FFCE1F; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; margin-bottom: 8px; }
.blog-related-card-body h4 { font-family: 'Brauer NeueVN', sans-serif; font-size: 16px !important; color: #1E293B; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.blog-related-card-body span { font-size: 12px; color: #94a3b8; font-family: 'Montserrat', sans-serif; }

.blog-cta-section { padding: 80px 0; background: linear-gradient(135deg, #1A5A8F 0%, #2576B9 100%); }
.blog-cta-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.blog-cta-text { flex: 1; min-width: 260px; }
.blog-cta-text h2 { font-family: 'Brauer NeueVN', sans-serif; font-size: 34px !important; color: #fff; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.blog-cta-text p { color: rgba(255,255,255,0.85); font-family: 'Montserrat', sans-serif; font-size: 18px; line-height: 1.7; }
.blog-cta-form { flex: 1; min-width: 260px; }
.blog-cta-form input { width: 100%; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; font-family: 'Montserrat', sans-serif; font-size: 14px; margin-bottom: 12px; outline: none; background: rgba(255,255,255,0.1); color: #fff; box-sizing: border-box; transition: border-color 0.2s; }
.blog-cta-form input::placeholder { color: rgba(255,255,255,0.6); }
.blog-cta-form input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }
.blog-cta-form button { width: 100%; padding: 15px; background: #FFCE1F; color: #1E293B; border: none; border-radius: 99px; font-family: 'Brauer NeueVN', sans-serif; font-size: 17px; font-weight: 700; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.blog-cta-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.blog-cta-form .note { font-size: 12px; color: rgba(255,255,255,0.55); text-align: center; margin-top: 10px; font-family: 'Montserrat', sans-serif; }
.blog-cta-form .note a { color: rgba(255,255,255,0.8); }

.blog-reading-progress { position: fixed; top: 0; left: 0; height: 3px; background: #FFCE1F; transition: width 0.1s; z-index: 9999; width: 0%; }

@media (max-width: 768px) {
  .blog-article-title { font-size: 30px !important; }
  .blog-banner-wrap img { height: 280px; }
  .blog-article-body p:first-of-type::first-letter { font-size: 44px; }
  .blog-cta-inner { flex-direction: column; }
}

/* ================================================================
   PAGE-SPECIFIC STYLES — DANH MỤC (cat-*)
   ================================================================ */

.cat-page { background: #F8FAFC; min-height: 100vh; }
.cat-header { background: linear-gradient(135deg, #1A5A8F 0%, #2576B9 100%); padding: 60px 0 80px; text-align: center; position: relative; overflow: hidden; }
.cat-header::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: #F8FAFC; clip-path: ellipse(55% 100% at 50% 100%); }
.cat-header h1 { font-family: 'Brauer NeueVN', sans-serif; font-size: 48px !important; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 16px; position: relative; }
.cat-header p { color: rgba(255,255,255,0.85); font-family: 'Montserrat', sans-serif; font-size: 18px; max-width: 650px; margin: 0 auto 32px; line-height: 1.7; position: relative; }

.cat-filters-wrap { background: #fff; border-bottom: 1px solid #E2E8F0; position: sticky; top: 80px; z-index: 100; }
.cat-filters { max-width: 1260px; margin: 0 auto; padding: 0 32px; display: flex; gap: 0; overflow-x: auto; }
.cat-filter-btn { padding: 18px 28px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; color: #64748b; background: none; border: none; cursor: pointer; border-bottom: 3px solid transparent; white-space: nowrap; transition: all 0.2s; }
.cat-filter-btn:hover { color: #2576B9; }
.cat-filter-btn.active { color: #2576B9; border-bottom-color: #2576B9; }
.cat-filter-btn.orange.active { color: #a16207; border-bottom-color: #FFCE1F; }

.cat-main { width: 100%; padding: 0; }
.cat-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.cat-section-badge { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 12px; border-radius: 99px; margin-bottom: 8px; }
.cat-section-badge.blue { background: rgba(37,118,185,0.08); color: #2576B9; }
.cat-section-badge.orange { background: rgba(255,206,31,0.10); color: #a16207; }
.cat-section-badge.green { background: rgba(34,197,94,0.1); color: #16a34a; }
.cat-section-h2 { font-family: 'Brauer NeueVN', sans-serif; font-size: 30px !important; color: #1E293B; font-weight: 800; line-height: 1.2; }
.cat-view-all { display: inline-flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: #fff; background: #2576B9; text-transform: uppercase; text-decoration: none; padding: 12px 28px; border: 1.5px solid #2576B9; border-radius: 99px; transition: all 0.2s; white-space: nowrap; box-shadow: 0 4px 14px rgba(37,118,185,0.2); }

.cat-featured { display: grid; grid-template-columns: 1.2fr 0.8fr; border-radius: 16px; overflow: hidden; border: none; margin-bottom: 80px; min-height: 440px; text-decoration: none; transition: box-shadow 0.2s, transform 0.2s; }
.cat-featured:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06); }
.cat-featured-img { position: relative; overflow: hidden; }
.cat-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.cat-featured:hover .cat-featured-img img { transform: scale(1.04); }
.cat-featured-content { background: #fff; padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.cat-feat-badge { display: inline-block; background: #2576B9; color: #fff; padding: 5px 14px; border-radius: 99px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; width: fit-content; }
.cat-feat-badge.orange { background: #FFCE1F; color: #1E293B; }
.cat-feat-badge.green { background: #16a34a; }
.cat-featured-content h2 { font-family: 'Brauer NeueVN', sans-serif; font-size: 28px !important; color: #1E293B; font-weight: 800; line-height: 1.3; margin-bottom: 8px; }
.cat-featured-content p { font-family: 'Montserrat', sans-serif; font-size: 18px; color: #475569; line-height: 1.7; margin-bottom: 24px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.cat-read-more { display: inline-flex; align-items: center; gap: 8px; font-family: 'Brauer NeueVN', sans-serif; font-size: 15px; font-weight: 700; color: #2576B9; text-decoration: none; transition: gap 0.2s; }
.cat-featured:hover .cat-read-more { gap: 14px; }
.cat-feat-meta { font-family: 'Montserrat', sans-serif; font-size: 13px; color: #94a3b8; margin-bottom: 14px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.cat-section { margin-bottom: 80px; }
.cat-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cat-story-card { background: #fff; border-radius: 16px; overflow: hidden; border: none; display: flex; flex-direction: column; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; position: relative; }
.cat-story-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06); }
.cat-story-card-img { position: relative; height: 220px; overflow: hidden; }
.cat-story-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-story-card:hover .cat-story-card-img img { transform: scale(1.05); }
.cat-story-badge { position: absolute; top: 14px; left: 14px; background: rgba(0,58,112,0.85); color: #fff; padding: 4px 12px; border-radius: 99px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; }
.cat-story-card-body { padding: 16px 20px; flex-grow: 1; display: flex; flex-direction: column; }
.cat-story-card-body h3 { font-family: 'Brauer NeueVN', sans-serif; font-size: 20px !important; color: #1E293B; font-weight: 800; line-height: 1.3; margin-bottom: 6px; flex-grow: 1; }
.cat-story-card-body p { font-family: 'Montserrat', sans-serif; font-size: 16px; color: #64748B; line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-card-meta { display: flex; align-items: center; justify-content: space-between; font-family: 'Montserrat', sans-serif; font-size: 12px; color: #94a3b8; }
.cat-card-readmore { color: #2576B9; font-weight: 600; display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.cat-story-card:hover .cat-card-readmore { gap: 8px; }

.cat-webinar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.cat-webinar-card { background: #fff; border-radius: 16px; overflow: hidden; border: none; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.cat-webinar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06); }
.cat-webinar-card-header { background: #1E293B; padding: 28px 24px 20px; position: relative; overflow: hidden; }
.cat-webinar-card-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #FFCE1F; }
.cat-wb-live { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.cat-wb-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: wbpulse 1.5s ease-in-out infinite; }
.cat-wb-live span, .cat-wb-upcoming span { color: #22c55e; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; }
.cat-wb-upcoming span { color: #FFCE1F; }
.cat-wb-upcoming-dot { width: 7px; height: 7px; background: #FFCE1F; border-radius: 50%; }
.cat-webinar-card-header h3 { color: #fff !important; font-family: 'Brauer NeueVN', sans-serif; font-size: 18px !important; font-weight: 800; line-height: 1.35; }
.cat-webinar-card-body { padding: 20px 24px; flex-grow: 1; display: flex; flex-direction: column; }
.cat-wb-details { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.cat-wb-detail { display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 13px; color: #475569; }
.cat-wb-detail svg { width: 14px; height: 14px; color: #64748b; flex-shrink: 0; }
.cat-wb-register { display: block; text-align: center; background: #FFCE1F; color: #1E293B; padding: 12px; border-radius: 99px; font-family: 'Brauer NeueVN', sans-serif; font-size: 14px; font-weight: 700; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; margin-top: auto; }
.cat-wb-register:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,206,31,0.35); color: #1E293B; }
.cat-wb-register.past { background: #CBD5E1; color: #64748b; }
.cat-wb-speakers { display: flex; gap: 10px; margin-bottom: 16px; }
.cat-wb-speaker-chip { display: flex; align-items: center; gap: 6px; background: #F1F5F9; border-radius: 99px; padding: 4px 10px; }
.cat-wb-speaker-chip .av { width: 22px; height: 22px; border-radius: 50%; background: #2576B9; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 9px; font-weight: 700; flex-shrink: 0; }
.cat-wb-speaker-chip span { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #475569; font-weight: 500; }

.cat-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.cat-blog-card { background: #fff; border-radius: 16px; overflow: hidden; border: none; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.cat-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06); }
.cat-blog-card-img { position: relative; height: 200px; overflow: hidden; }
.cat-blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-blog-card:hover .cat-blog-card-img img { transform: scale(1.05); }
.cat-blog-reading-time { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.65); color: #fff; padding: 3px 10px; border-radius: 99px; font-size: 11px; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.cat-blog-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.cat-blog-mini-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; color: #16a34a; margin-bottom: 10px; }
.cat-blog-card-body h3 { font-family: 'Brauer NeueVN', sans-serif; font-size: 18px !important; color: #1E293B; font-weight: 800; line-height: 1.35; margin-bottom: 10px; flex-grow: 1; }
.cat-blog-card-body p { font-family: 'Montserrat', sans-serif; font-size: 18px; color: #475569; line-height: 1.65; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-blog-author-row { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.cat-blog-av { width: 28px; height: 28px; border-radius: 50%; background: #2576B9; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 700; font-family: 'Brauer NeueVN', sans-serif; flex-shrink: 0; }
.cat-blog-author-row span { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #64748b; }

.cat-newsletter { background: linear-gradient(135deg, #1A5A8F 0%, #2576B9 100%); border-radius: 16px; padding: 56px 48px; text-align: center; margin-bottom: 0; }
.cat-newsletter h2 { font-family: 'Brauer NeueVN', sans-serif; font-size: 34px !important; color: #fff; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.cat-newsletter p { color: rgba(255,255,255,0.85); font-family: 'Montserrat', sans-serif; font-size: 18px; max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.cat-newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
.cat-newsletter-form input { flex: 1; min-width: 200px; padding: 14px 20px; border: 1px solid rgba(255,255,255,0.25); border-radius: 16px; background: rgba(255,255,255,0.1); color: #fff; font-size: 15px; font-family: 'Montserrat', sans-serif; outline: none; transition: border-color 0.2s; }
.cat-newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.cat-newsletter-form input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }
.cat-newsletter-form button { padding: 14px 28px; background: #FFCE1F; color: #1E293B; border: none; border-radius: 99px; font-family: 'Brauer NeueVN', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; }
.cat-newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.cat-stats-row { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 60px; }
.cat-stat-card { flex: 1; min-width: 150px; background: #fff; border-radius: 16px; padding: 20px 24px; border: none; text-align: center; }
.cat-stat-num { font-family: 'Brauer NeueVN', sans-serif; font-size: 36px; font-weight: 800; color: #2576B9; line-height: 1; margin-bottom: 6px; }
.cat-stat-label { font-family: 'Montserrat', sans-serif; font-size: 13px; color: #64748b; }
.cat-divider { height: 1px; background: #E2E8F0; margin: 0 0 60px; }

@media (max-width: 900px) {
  .cat-featured { grid-template-columns: 1fr; }
  .cat-story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .cat-header h1 { font-size: 32px !important; }
  .cat-newsletter { padding: 40px 24px; }
}
@media (max-width: 768px) {
  .cat-story-grid {
    grid-template-columns: 1fr;
  }
  .cat-section {
    padding: 24px 0;
  }
  .cat-section-inner {
    padding: 0 16px;
  }
  .cat-featured-main .cat-featured-img {
    aspect-ratio: 1.55 / 1;
    height: auto;
    flex: none;
  }
  .cat-featured-main .cat-featured-content {
    padding: 24px;
  }
  .cat-featured-main h2 {
    font-size: 22px !important;
  }
  .cat-cta-wrapper {
    margin-top: 16px !important;
  }
  .cat-view-all {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cat-section-h2 { font-size: 24px !important; }
}


/* ── Multi-Column Layouts ── */
.cat-hero-grid, .cat-webinar-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 900px) {
    .cat-hero-grid, .cat-webinar-layout { grid-template-columns: 1.5fr 1fr; }
}

.cat-featured-main {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 24px rgba(0,0,0,0.03);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}
.cat-featured-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.cat-featured-main { height: 100%; justify-content: space-between; }
.cat-featured-main .cat-featured-img { position: relative; overflow: hidden; height: 66.666%; flex: 0 0 66.666%; }
.cat-featured-main .cat-featured-img img { position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; }
.cat-featured-main .cat-featured-content { padding: 32px; display: flex; flex-direction: column; gap: 16px; justify-content: center; height: 100%; }

.cat-hero-list, .cat-webinar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cat-side-card {
    display: flex;
    gap: 12px;
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    padding: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.03);
    align-items: center;
    flex: 1;
}
.cat-side-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.cat-side-card .cat-side-img {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
}
.cat-side-card .cat-side-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-side-card .cat-side-content { display: flex; flex-direction: column; gap: 8px; }
.cat-side-card h3 { font-size: 18px; line-height: 1.5; color: #0f172a; margin:0; font-weight:700; font-family:'Montserrat', sans-serif;}
.cat-side-card .cat-side-meta { font-size: 14px; font-family: 'Montserrat', sans-serif; color: var(--apollo-orange); font-weight: 700; }


/* ── 5 Apollo Persona Colors Themes ── */
.theme-blue   { --theme-main: #2576B9; --theme-bg: var(--persona-thieunien); }
.theme-pink   { --theme-main: #E52573; --theme-bg: var(--persona-thieunhi); }
.theme-green  { --theme-main: #8DC63F; --theme-bg: var(--persona-card-bg); }
.theme-orange { --theme-main: #F58220; --theme-bg: var(--persona-maugiao); }
.theme-purple { --theme-main: #662D91; --theme-bg: var(--persona-ielts); }
.theme-yellow { --theme-main: #FFCE1F; --theme-bg: var(--persona-maugiao); }

/* Heading border-left contrast fix for light/warm-toned section backgrounds */
.cat-section.theme-yellow .cat-section-h2,
.cat-section.theme-orange .cat-section-h2 {
    border-left-color: #1E293B;
}

.cat-section {
    position: relative;
    padding: 32px 0;
    margin-bottom: 0;
}
.cat-section-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 32px;
}


/* Theme overrides */
.cat-section .cat-section-badge {
    background: var(--theme-main, #2576b9);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.cat-section.theme-yellow .cat-section-badge {
    color: #1E293B; /* Better contrast for yellow */
}

.cat-section .cat-section-h2 {
    border-left: 4px solid var(--theme-main, #2576b9);
    padding-left: 16px;
}

.cat-section .cat-read-more, 
.cat-section .cat-card-readmore {
    color: var(--theme-main, #2576b9);
}


.cat-section .cat-featured-main:hover,
.cat-section .cat-side-card:hover,
.cat-section .cat-story-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: var(--theme-main);
}


/* =========================================================
   DISABLE ALL NEWS CARD HOVER EFFECTS (User Request)
   ========================================================= */
.blog-card:hover,
.story-card:hover,
.hero-post:hover,
.blog-related-card:hover,
.cat-featured:hover,
.cat-featured-main:hover,
.cat-story-card:hover,
.cat-webinar-card:hover,
.cat-blog-card:hover,
.cat-side-card:hover,
.cat-section .cat-featured-main:hover,
.cat-section .cat-side-card:hover,
.cat-section .cat-story-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Fix dropdown icon wrapping to next line */
.menu-top-link-new2025 {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    gap: 4px !important;
}
.dropdown-menu-apollo2025 {
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

/* Summer banner section — background image khớp tỷ lệ ảnh gốc */
.summer-banner-section {
    background-image: url('/landings/legal/Assest/Banner_Web.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    aspect-ratio: 3075 / 833 !important;
    padding: 0 !important;
    position: relative !important;
    display: block !important;
}
/* CTA cố định ở bottom, cách 20px */
.summer-banner-cta {
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}
@media (max-width: 768px) {
    .summer-banner-section {
        background-image: url('/landings/legal/Assest/Banner_Mobile.jpg') !important;
        aspect-ratio: 1563 / 600 !important;
    }
}

/* Summer privileges grid: 1 cột trên mobile */
@media (max-width: 600px) {
    .summer-privileges-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Disable img zoom on hover */
.blog-card:hover .blog-card-img-wrap img,
.story-card:hover .story-card-img img,
.hero-post:hover .hero-post-img-wrap img,
.cat-featured:hover .cat-featured-img img,
.cat-featured-main:hover .cat-featured-img img,
.cat-story-card:hover .cat-story-card-img img,
.cat-webinar-card:hover .cat-webinar-img img,
.cat-blog-card:hover .cat-blog-card-img img,
.cat-side-card:hover .cat-side-img img {
    transform: none !important;
}

/* ============================================================
   LEARNING PATH THEME — 90-Day Timeline & Persona Cards
   ============================================================ */

/* 90-Day Learning Timeline */
.blog-learning-timeline {
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(37, 118, 185, 0.03) 0%, rgba(255, 206, 31, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(37, 118, 185, 0.1);
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    flex-shrink: 0;
    width: 100px;
}

.timeline-week {
    display: inline-block;
    background: var(--apollo-blue);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.timeline-phase-1 .timeline-week { background: #0284C7; }
.timeline-phase-2 .timeline-week { background: #2576B9; }
.timeline-phase-3 .timeline-week { background: #1E40AF; }
.timeline-phase-4 .timeline-week { background: #1e3a8a; }

.timeline-content {
    flex: 1;
    padding: 16px 0;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--apollo-blue);
    margin-bottom: 8px;
    font-family: "Brauer NeueVN", 'Outfit', sans-serif;
}

.timeline-content p {
    font-size: 16px;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

.timeline-connector {
    display: none;
}

@media (max-width: 768px) {
    .blog-learning-timeline {
        padding: 24px;
    }

    .timeline-item {
        gap: 16px;
    }

    .timeline-marker {
        width: 80px;
    }

    .timeline-week {
        font-size: 12px;
        padding: 6px 10px;
    }
}


/* Custom blog CSS extracted from blog.html and blog-full.html */
.blog-page {
  background-color: #fff;
  padding-top: 100px; /* Offset for fixed header */
}
@media (max-width: 767px) {
  .blog-page { padding-top: 60px; }
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.25px;
  font-family: "Montserrat", sans-serif;
}

.blog-breadcrumb {
  color: #64748b;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-breadcrumb a {
  color: #2576b9;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-breadcrumb a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.blog-header {
  margin-bottom: 40px;
}
.blog-title {
  font-family: 'Brauer NeueVN', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  color: #2576b9;
  line-height: 1.1;
  margin-bottom: 16px;
}
.blog-meta {
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 16px;
}
.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-main {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.blog-article {
  flex: 1;
  min-width: 0;
}

.blog-full .blog-main {
  display: block;
}
.blog-full .blog-article {
  width: 100%;
}

.blog-cover {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 40px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-toc {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
  border: 1px solid #e2e8f0;
}
.blog-toc-title {
  font-weight: 700;
  margin-bottom: 16px;
  color: #2576b9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-toc > ul > li {
  margin-bottom: 12px;
}
.blog-toc > ul > li > ul {
  padding-left: 20px;
  margin-top: 8px;
}
.blog-toc a {
  color: #2576b9;
  text-decoration: none;
}
.blog-toc a:hover {
  text-decoration: underline;
}

.blog-content h2 {
  font-family: 'Brauer NeueVN', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  color: #2576b9;
  margin: 48px 0 24px;
  scroll-margin-top: 100px;
}
.blog-content h3 {
  font-size: 22px;
  color: #2576b9;
  margin: 32px 0 16px;
  scroll-margin-top: 100px;
}
.blog-content p {
  color: #252525;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 24px;
}
.blog-content ul {
  color: #252525;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 24px;
  padding-left: 24px;
}
.blog-content li {
  margin-bottom: 8px;
}
.blog-content img {
  width: 100%;
  border-radius: 12px;
  margin: 32px 0;
}
.blog-content .highlight-box {
  background-color: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 24px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
}

.blog-sidebar {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
}
.sidebar-widget {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.sidebar-title {
  font-family: 'Brauer NeueVN', sans-serif;
  font-size: 28px;
  color: #2576b9;
  margin-bottom: 20px;
}
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-list li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.sidebar-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.sidebar-list a {
  color: #252525;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.sidebar-list a:hover {
  color: #2576b9;
}

.blog-related {
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.blog-related-title {
  font-family: 'Brauer NeueVN', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #2576b9;
  margin-bottom: 32px;
  text-align: center;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1152px;
  margin: 0 auto;
}
.blog-related-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.blog-related-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-related-card:hover .blog-related-img {
  transform: scale(1.05);
}
.blog-related-content {
  padding: 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-related-card-title {
  font-family: 'Brauer NeueVN', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1E293B;
  line-height: 1.3;
  margin: 0 0 6px;
  flex-grow: 1;
}
.blog-related-card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #64748B;
  line-height: 1.6;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-related-actions {
  text-align: center;
  margin-top: 40px;
}
.btn-view-all {
  display: inline-block;
  background-color: #f1f5f9;
  color: #2576b9;
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-view-all:hover {
  background-color: #2576b9;
  color: #fff;
}

@media (max-width: 960px) {
  .blog-main {
    flex-direction: column;
  }
  .blog-sidebar {
    width: 100%;
    position: static;
    margin-top: 40px;
  }
  .blog-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-related-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   UNIFIED SECTION + FEATURED HERO + RELATED GRID
   Shared by blog.html, blog-full.html, danh-muc-tin-tuc.html
   ========================================================== */

/* Section wrappers */
.blog-section {
  position: relative;
  padding: 32px 0;
  margin-bottom: 0;
}
.blog-section-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}
.blog-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-section-title {
  font-family: 'Brauer NeueVN', sans-serif;
  font-size: 30px !important;
  color: #1E293B;
  font-weight: 800;
  line-height: 1.2;
}
.blog-section .blog-section-title {
  border-left: 4px solid var(--theme-main, #2576b9);
  padding-left: 16px;
}
.blog-section.theme-yellow .blog-section-title,
.blog-section.theme-orange .blog-section-title {
  border-left-color: #1E293B;
}

/* When blog-related is used inline inside a blog-section (category page),
   override the section-level outer paddings/background that the standalone
   .blog-related applies on article pages. */
.blog-section .blog-related-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
}

/* Featured hero (1 large card + side cards list) */
.blog-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  .blog-featured-grid { grid-template-columns: 1.5fr 1fr; }
}

.blog-featured-main {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  justify-content: space-between;
}
.blog-featured-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.blog-featured-main .blog-featured-img {
  position: relative;
  overflow: hidden;
  height: 66.666%;
  flex: 0 0 66.666%;
}
.blog-featured-main .blog-featured-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.blog-featured-main .blog-featured-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  height: 100%;
}
.blog-featured-main .blog-featured-content h2 {
  font-family: 'Brauer NeueVN', sans-serif;
  text-decoration: none;
  font-weight: bold;
  font-size: 30px;
  line-height: 120%;
  color: #000;
  padding-top: 5px;
  margin-bottom: 8px;
  transition: all .2s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-featured-main .blog-featured-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Brauer NeueVN', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--theme-main, #2576B9);
  text-decoration: none;
  transition: gap 0.2s;
}
.blog-featured-main:hover .blog-read-more { gap: 14px; }

/* Side cards list (1 col on mobile, 1 col stacked on desktop next to main) */
.blog-featured-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-featured-side {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  align-items: center;
  flex: 1;
}
.blog-featured-side:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.blog-featured-side-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-featured-side h3 {
  font-size: 18px;
  line-height: 1.5;
  color: #0f172a;
  margin: 0;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.blog-featured-side-meta {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: #90a4ae;
  font-weight: 700;
}

/* Webinar-specific badges (live / upcoming) */
.blog-wb-live {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.blog-wb-live span,
.blog-wb-upcoming span {
  color: #22c55e;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}
.blog-wb-upcoming span { color: #FFCE1F; }
.blog-wb-upcoming-dot {
  width: 7px;
  height: 7px;
  background: #FFCE1F;
  border-radius: 50%;
}
.blog-wb-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.blog-wb-register {
  display: inline-flex;
  border-radius: 99px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  background: #FFCE1F;
  color: #1E293B;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-wb-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,206,31,0.35);
  color: #1E293B;
}

/* Responsive overrides for the unified featured/related */
@media (max-width: 900px) {
  .blog-section .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-section { padding: 24px 0; }
  .blog-section-inner { padding: 0 16px; }
  .blog-section .blog-related-grid { grid-template-columns: 1fr; }
  .blog-featured-main .blog-featured-img {
    aspect-ratio: 1.55 / 1;
    height: auto;
    flex: none;
  }
  .blog-featured-main .blog-featured-content { padding: 24px; }
  .blog-featured-main h2 { font-size: 22px !important; }
}
@media (max-width: 600px) {
  .blog-section-title { font-size: 24px !important; }
}

/* Honor the existing "disable hover" preference for the new unified cards */
.blog-featured-main:hover,
.blog-featured-side:hover {
  transform: none !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03) !important;
}
.blog-featured-main:hover .blog-featured-img img { transform: none !important; }

/* ==========================================================
   EXTRACTED INLINE STYLES — News pages (2026 cleanup)
   Replace the old style="…" attributes in
   danh-muc-tin-tuc.html, blog.html, blog-full.html
   ========================================================== */

/* Featured-main last paragraph: drop trailing margin so the
   inline "Đọc chi tiết →" sits flush against the description */
.blog-featured-main .blog-featured-content > p:last-of-type { margin-bottom: 0; }

/* Side-card description: 2-line clamp + muted */
.blog-featured-side-content > p {
  font-size: 18px;
  color: #64748b;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  margin-top: 4px;
  margin-bottom: 0;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* "Đã kết thúc" past-event meta: muted color */
.blog-featured-side-meta--muted { color: #64748b; }

/* ----------------------------------------------------------
   Sub-category HERO (sub-danhmuc.html)
   - Big featured (left): image at 16:9 + title BELOW image
     (no card chrome, no description)
   - 2 stacked tiles on the right + 3-tile row below: image-only
     cards with title revealed as a gradient overlay on hover
     (always visible on touch devices for accessibility)
   - Scoped to .subcat-page so danh-muc-tin-tuc.html is untouched
---------------------------------------------------------- */

/* Big card override: title sits below the image, no card frame */
.subcat-page .blog-featured-main {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  height: auto;
}
.subcat-page .blog-featured-main:hover {
  transform: none;
  box-shadow: none;
}
.subcat-page .blog-featured-main .blog-featured-img {
  aspect-ratio: 16 / 9;
  height: auto;
  flex: 0 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.subcat-page .blog-featured-main .blog-featured-content {
  padding: 16px 0 0;
  height: auto;
  flex: 0 0 auto;
}
.subcat-page .blog-featured-main h2 {
  margin: 0;
}

/* Right column: 2 tiles stacked, total height matches the big card */
.subcat-page .blog-featured-list {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

/* Image-only tile with hover-title overlay */
.subcat-page .blog-featured-side {
  position: relative;
  display: block;
  overflow: hidden;
  border: none;
  border-radius: 12px;
  padding: 0;
  height: 100%;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}
.subcat-page .blog-featured-side-img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.subcat-page .blog-featured-side:hover .blog-featured-side-img {
  transform: scale(1.04);
}
.subcat-page .blog-featured-side-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.subcat-page .blog-featured-side:hover .blog-featured-side-content {
  opacity: 1;
}
.subcat-page .blog-featured-side h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  font-weight: 700;
}
/* Touch devices have no hover — keep the title visible */
@media (hover: none) {
  .subcat-page .blog-featured-side-content { opacity: 1; }
}

/* Row of 3 image-only tiles below the hero grid */
.subcat-page .blog-hero-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.subcat-page .blog-hero-tiles .blog-featured-side {
  aspect-ratio: 16 / 9;
  height: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .subcat-page .blog-featured-list {
    height: auto;
    grid-template-rows: auto auto;
  }
  .subcat-page .blog-featured-list .blog-featured-side {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}
@media (max-width: 768px) {
  .subcat-page .blog-hero-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .subcat-page .blog-hero-tiles { grid-template-columns: 1fr; }
}

/* Webinar promo cards inside .blog-related-grid (3-col event promo
   at the bottom of sub-category pages). Reuses .blog-related-card
   shell + adds the badge/details/register-pill styling so a webinar
   can live alongside ordinary article cards. */
.blog-related-card.blog-wb-card .blog-related-content {
  gap: 8px;
}
.blog-related-card.blog-wb-card .blog-wb-live,
.blog-related-card.blog-wb-card .blog-wb-upcoming { margin-bottom: 4px; }
.blog-related-card.blog-wb-card .blog-wb-details {
  gap: 4px;
  margin: 8px 0 12px;
  font-size: 14px;
  color: #475569;
  font-weight: 600;
}
.blog-related-card.blog-wb-card .blog-wb-register {
  align-self: flex-start;
  padding: 10px 18px;
  font-size: 14px;
  margin-top: auto;
}

/* Webinar (theme-yellow) featured description */
.blog-section.theme-yellow .blog-featured-main .blog-featured-content > p {
  font-size: 18px;
  color: #475569;
  margin-top: 4px;
  margin-bottom: 12px;
}

/* Webinar badge spacing in webinar hero */
.blog-section.theme-yellow .blog-wb-live { margin-bottom: 4px; }

/* Webinar details list: tighter gap + bold body color */
.blog-section.theme-yellow .blog-wb-details {
  gap: 6px;
  color: #475569;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Cap webinar register pill width so it doesn't span the whole column */
.blog-section.theme-yellow .blog-wb-register { max-width: 200px; }

/* Centered "Xem tất cả →" actions */
.blog-related-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Highlight box: collapse the inner-paragraph margin and color it */
.blog-content .highlight-box p {
  margin: 0;
  font-weight: 700;
  color: #b45309;
}

/* Related (article-bottom) section: kill the container's vertical padding
   because .blog-related already supplies its own spacing */
.blog-related .blog-container {
  padding-top: 0;
  padding-bottom: 0;
}

/* Bottom CTA form spacing on article pages */
.blog-page .tn-bottom-form { margin-top: 60px; }

/* Newsletter CTA — inline email + submit row */
.blog-cta-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.blog-cta-form-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 12px;
}
.blog-cta-form-row input { margin-bottom: 0; }
.blog-cta-form-row button {
  width: auto;
  white-space: nowrap;
  padding: 0 24px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .blog-cta-form-row { flex-direction: column; gap: 10px; }
  .blog-cta-form-row button { width: 100%; padding: 14px; }
}

/* ----------------------------------------------------------
   Article-page footer (blog.html / blog-full.html)
   Replaces the giant inline-style block that was duplicated
   in both files. Tailwind-class footer of the category page
   is left untouched.
---------------------------------------------------------- */
.blog-footer {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 32px 0 24px;
  font-family: 'Nunito', sans-serif;
}
.blog-footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}
.blog-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.blog-footer-logo {
  flex-shrink: 0;
  cursor: pointer;
}
.blog-footer-logo img {
  height: 80px;
  object-fit: contain;
  display: block;
}
.blog-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
  min-width: 300px;
}
.blog-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
  width: 100%;
  margin-bottom: 24px;
}
.blog-footer-nav a {
  color: #2576b9;
  font-weight: 700;
  font-size: 18px;
}
.blog-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  gap: 16px;
}
.blog-footer-follow {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.blog-footer-follow-label {
  font-weight: 700;
  font-size: 18px;
  color: #2576b9;
}
.blog-footer-follow-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.blog-footer-copyright {
  color: #252525;
  font-size: 18px;
  font-weight: 500;
}
.blog-footer-socials {
  display: flex;
  gap: 8px;
}
.blog-footer .tn-footer-social {
  width: 32px;
  height: 32px;
  background: #2576b9;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/* ----------------------------------------------------------
   Category page (danh-muc-tin-tuc) — fixed-header offset
---------------------------------------------------------- */
.cat-page #main-content { padding-top: 80px; }
@media (max-width: 767px) {
  .cat-page #main-content { padding-top: 60px; }
}

/* ==========================================================
   BOTTOM LEAD FORM — migrated from thieunhi.css so news pages
   (blog.html, blog-full.html) can drop the thieunhi.css link.
   Used markup: .tn-bottom-form > .tn-bf-inner > .tn-bf-left >
   form.tn-bf-form.tn-reveal.is-visible
   ========================================================== */

.tn-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tn-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tn-bottom-form {
  position: relative;
  padding: 100px 0;
  background: url('/landings/legal/Assets/bg_form.png') center/cover no-repeat !important;
  overflow: hidden;
}

.tn-bf-inner {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 2;
}

.tn-bf-form {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 28px 64px rgba(8, 24, 56, 0.28);
}

.tn-bf-row { display: flex; gap: 14px; }
.tn-bf-group { flex: 1; min-width: 0; }

.tn-bf-group input,
.tn-bf-group select {
  width: 100%;
  height: 56px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Nunito', 'Montserrat', sans-serif;
  font-size: 18px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.tn-bf-group input::placeholder { color: rgba(255, 255, 255, 0.70); }
.tn-bf-group select {
  color: rgba(255, 255, 255, 0.70);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'><path d='M1 1l6 6 6-6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.tn-bf-group select option { color: #1a5fa6; background: #fff; }
.tn-bf-group input:focus,
.tn-bf-group select:focus {
  border-color: #fecc00;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(254, 204, 0, 0.18);
}

.tn-bf-btn {
  margin-top: 10px;
  height: 60px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #fecc00 0%, #ffd633 50%, #fecc00 100%);
  color: #1a5fa6;
  font-family: 'Brauer NeueVN', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 16px 36px rgba(254, 204, 0, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-transform: uppercase;
}
.tn-bf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(254, 204, 0, 0.42);
  filter: brightness(1.04);
}
.tn-bf-btn i { font-size: 18px; transition: transform 0.25s ease; }
.tn-bf-btn:hover i { transform: translateX(4px); }

.tn-bf-privacy {
  margin-top: 12px;
  font-family: 'Nunito', 'Montserrat', sans-serif;
  font-size: 15px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.tn-bf-privacy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tn-bf-privacy a:hover { opacity: 0.8; }

@media (min-width: 1440px) {
  .tn-bf-inner { max-width: 1320px; }
}
@media (max-width: 1200px) {
  .tn-bf-inner { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 1024px) {
  .tn-bottom-form { padding: 80px 0; }
  .tn-bf-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 960px) {
  .tn-bf-inner { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 640px) {
  .tn-bf-inner { padding: 0 20px; }
  .tn-bf-form { padding: 24px 20px; }
  .tn-bf-row { flex-direction: column; }
  .tn-bf-btn { font-size: 18px; letter-spacing: 0.02em; gap: 10px; }
}

/* Footer social icon — base color reset (overridden visually
   by .blog-footer .tn-footer-social which adds the blue chip) */
footer a.tn-footer-social { color: #fff !important; }

/* ==========================================================
   MOBILE FIXES — 2026-05 round
   1. Header: center the mobile logo (Apollo's global CSS pins
      it to the left next to the hamburger)
   2. Article: shrink the top gap between fixed header and
      breadcrumb on blog / blog-full
   3. Related "Có thể bố mẹ cũng quan tâm" + category grids:
      force 1-column / vertical card from tablet down
   4. Footer: vertical menu with horizontal dividers + stacked
      copyright / follow row, matching apollo.edu.vn pattern
   ========================================================== */

@media (max-width: 767px) {
  /* 1. Mobile header logo centered ----------------------- */
  .header-fixed-navRevamap-New2025.mobile .navRevamap-New2025-mobile {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }
  .header-fixed-navRevamap-New2025.mobile .logo-apollo-new2025-container-mobile {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
  }

  /* 2. Tighten breadcrumb spacing on article pages -------- */
  .blog-page .blog-container {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .blog-page .blog-breadcrumb {
    margin-bottom: 16px;
    font-size: 13px;
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .blog-page .blog-header { margin-bottom: 24px; }

  /* 3. Related / category grids: 1 col + vertical card ---- */
  .blog-related-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .blog-related-card {
    flex-direction: column !important;
  }
  .blog-related-img {
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
  }
  .blog-related { padding: 32px 0; }
  .blog-related .blog-container { padding-left: 20px; padding-right: 20px; }

  /* 4. Footer: vertical menu with dividers ---------------- */
  .blog-footer { padding: 24px 0; }
  .blog-footer-inner { padding: 0 20px; }

  .blog-footer-row {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .blog-footer-logo { order: 99; align-self: center; }
  .blog-footer-logo img { height: 56px; }

  .blog-footer-right {
    width: 100%;
    align-items: stretch;
  }

  .blog-footer-nav {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    margin-bottom: 8px;
    border-top: 1px solid #E2E8F0;
  }
  .blog-footer-nav a {
    padding: 16px 0;
    border-bottom: 1px solid #E2E8F0;
    font-size: 18px;
  }

  .blog-footer-bottom {
    justify-content: flex-start;
    width: 100%;
  }
  .blog-footer-follow {
    align-items: flex-start;
    width: 100%;
    gap: 12px;
  }
  .blog-footer-follow-label { font-size: 16px; }
  .blog-footer-follow-row {
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
  }
  .blog-footer-copyright {
    font-size: 14px;
    order: 99;
    flex-basis: 100%;
  }
  .blog-footer-socials { gap: 10px; }
}
