﻿/* ═══════════════════════════════════════════════════════════════════
   NEWS BODY 2 — 7 Premium Layouts (Redesigned)
   Fonts: Playfair Display (serif headlines) + DM Sans (body)
   CSS vars: --color-primary, --color-btn-text, --color-surface,
             --color-bg, --color-text, --color-muted, --color-border,
             --color-secondary
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;700;800&display=swap');

/* ── Root & Base ── */
.nb2 *, .nb2 *::before, .nb2 *::after { box-sizing: border-box; }
.nb2 a { text-decoration: none; }
.nb2 a:hover { text-decoration: none; }

/* ── Shared Utilities ── */
.nb2-tag {
    display: inline-block;
    padding: 2px 9px;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--color-primary);
    color: var(--color-btn-text);
    border-radius: 2px;
    flex-shrink: 0;
    width: fit-content;
}

.nb2-dot { color: var(--color-muted); margin: 0 5px; }
.nb2-dot--light { color: rgba(255,255,255,.3); margin: 0 5px; }

.nb2-meta {
    display: flex;
    align-items: center;
    font-size: .65rem;
    color: var(--color-muted);
    gap: 2px;
}
.nb2-meta--light { color: rgba(255,255,255,.45); }

/* ════════════════════════════════════════════════════════════════════
   HERO — Cinematic fullscreen với ticker + lead story
   Layout: Fullbleed bg, copy overlay trái, ticker chạy ngang
   ════════════════════════════════════════════════════════════════════ */
.nb2-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #090909;
}

.nb2-hero__bg {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    filter: brightness(.28) saturate(1.4);
    transform: scale(1.04);
    transition: transform 12s ease;
}

/* Vignette bottom + left */
.nb2-hero__vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 42%, rgba(0,0,0,.15) 70%, transparent 100%),
        linear-gradient(0deg, rgba(0,0,0,.8) 0%, transparent 40%);
    z-index: 1;
}

/* Grain texture */
.nb2-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 180px;
    pointer-events: none;
}

/* Top bar */
.nb2-hero__topbar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.nb2-hero__topbar-date {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.nb2-hero__topbar-breaking {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .65rem;
    color: rgba(255,255,255,.5);
}
.nb2-hero__topbar-breaking strong {
    background: var(--color-primary);
    color: var(--color-btn-text);
    padding: 2px 8px;
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    animation: nb2-blink 1.8s ease-in-out infinite;
}
@keyframes nb2-blink { 0%,100%{opacity:1} 50%{opacity:.6} }

/* Main content */
.nb2-hero__content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    padding: 0 5% 0;
    align-items: center;
}

.nb2-hero__lead { padding: 48px 60px 48px 0; }

.nb2-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}
.nb2-hero__eyebrow-line {
    height: 1px;
    width: 48px;
    background: var(--color-primary);
}
.nb2-hero__eyebrow span {
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.nb2-hero__title {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.02;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -.02em;
}
.nb2-hero__title em {
    font-style: italic;
    color: var(--color-primary);
}

.nb2-hero__excerpt {
    font-size: .92rem;
    line-height: 1.72;
    color: rgba(255,255,255,.55);
    max-width: 520px;
    margin-bottom: 32px;
}

.nb2-hero__cta {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nb2-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: #fff;
    color: #000;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .2s, color .2s;
}
.nb2-hero__btn:hover { background: var(--color-primary); color: var(--color-btn-text); }
.nb2-hero__btn svg { flex-shrink: 0; }
.nb2-hero__link {
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    letter-spacing: .06em;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
}
.nb2-hero__link:hover { color: #fff; border-color: #fff; }

/* Right panel: stacked preview cards */
.nb2-hero__panel {
    border-left: 1px solid rgba(255,255,255,.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 0 32px 32px;
    gap: 2px;
}
.nb2-hero__panel-label {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    margin-bottom: 16px;
    padding-left: 4px;
}

.nb2-hero__panel-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: background .25s;
    align-items: flex-start;
}
.nb2-hero__panel-item:hover { background: rgba(255,255,255,.05); }
.nb2-hero__panel-thumb {
    flex: 0 0 64px;
    height: 52px;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255,255,255,.1) center/cover no-repeat;
    flex-shrink: 0;
}
.nb2-hero__panel-body { flex: 1; min-width: 0; }
.nb2-hero__panel-cat {
    font-size: .57rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 4px;
    display: block;
}
.nb2-hero__panel-title {
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.35;
    color: rgba(255,255,255,.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Bottom ticker */
.nb2-hero__ticker {
    position: relative;
    z-index: 10;
    background: rgba(0,0,0,.6);
    border-top: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 44px;
}
.nb2-hero__ticker-label {
    flex-shrink: 0;
    padding: 0 18px;
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-btn-text);
    background: var(--color-primary);
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.nb2-hero__ticker-track {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.nb2-hero__ticker-inner {
    display: flex;
    gap: 48px;
    animation: nb2-scroll 28s linear infinite;
    white-space: nowrap;
    will-change: transform;
}
@keyframes nb2-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.nb2-hero__ticker-inner span {
    font-size: .68rem;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    flex-shrink: 0;
}
.nb2-hero__ticker-inner span strong {
    color: rgba(255,255,255,.8);
    font-weight: 700;
    margin-right: 4px;
}

/* ════════════════════════════════════════════════════════════════════
   STYLE 1: BROADSHEET — Kiểu trang nhất báo in, typography tối giản
   Layout: 1 featured lớn + 3 col đều nhau bên phải, divider line
   ════════════════════════════════════════════════════════════════════ */
.nb2-broadsheet {
    background: var(--color-bg);
    margin-top: 8px;
    border-top: 3px solid var(--color-primary);
}

.nb2-broadsheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5%;
    border-bottom: 1px solid var(--color-border);
}
.nb2-broadsheet__section {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -.01em;
}
.nb2-broadsheet__section::before {
    content: '§ ';
    color: var(--color-primary);
}
.nb2-broadsheet__nav {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nb2-broadsheet__nav a {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--color-muted);
    text-decoration: none;
    transition: color .2s;
}
.nb2-broadsheet__nav a:hover { color: var(--color-primary); }
.nb2-broadsheet__nav a.--cta {
    background: var(--color-primary);
    color: var(--color-btn-text);
    padding: 5px 14px;
    border-radius: 2px;
}
.nb2-broadsheet__nav a.--cta:hover { opacity: .85; }

.nb2-broadsheet__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
}

/* Featured col spans 2 rows */
.nb2-broadsheet__feat {
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    grid-row: span 2;
}
.nb2-broadsheet__feat-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-border) center/cover no-repeat;
    position: relative;
}
.nb2-broadsheet__feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.nb2-broadsheet__feat:hover .nb2-broadsheet__feat-img img { transform: scale(1.04); }
.nb2-broadsheet__feat-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.nb2-broadsheet__feat-title {
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    font-weight: 900;
    line-height: 1.18;
    color: var(--color-text);
    margin: 0;
    display: block;
    transition: color .2s;
}
.nb2-broadsheet__feat:hover .nb2-broadsheet__feat-title { color: var(--color-primary); }
.nb2-broadsheet__feat-excerpt {
    font-size: .8rem;
    line-height: 1.65;
    color: var(--color-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Side mini cards */
.nb2-broadsheet__mini {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    transition: background .2s;
}
.nb2-broadsheet__mini:last-child { border-right: none; }
.nb2-broadsheet__mini:nth-child(4) { border-right: none; } /* last in row 1 */
.nb2-broadsheet__mini:nth-child(n+5) { border-bottom: none; } /* row 2 */
.nb2-broadsheet__mini:hover { background: color-mix(in srgb, var(--color-bg) 92%, var(--color-primary)); }
.nb2-broadsheet__mini-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-border) center/cover no-repeat;
}
.nb2-broadsheet__mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s;
}
.nb2-broadsheet__mini:hover .nb2-broadsheet__mini-img img { transform: scale(1.06); }
.nb2-broadsheet__mini-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.nb2-broadsheet__mini-body h3 {
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}
.nb2-broadsheet__mini:hover h3 { color: var(--color-primary); }
.nb2-broadsheet__mini-body p {
    font-size: .72rem;
    color: var(--color-muted);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ════════════════════════════════════════════════════════════════════
   STYLE 2: MAGAZINE GRID — Editorial moodboard kiểu tạp chí
   Layout: Full-width header + masonry 2 col với card nổi bật dọc
   ════════════════════════════════════════════════════════════════════ */
.nb2-mag {
    background: var(--color-secondary);
    margin-top: 8px;
    color: #fff;
}

.nb2-mag__header {
    padding: 32px 5% 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.nb2-mag__header-left {}
.nb2-mag__vol {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 6px;
    display: block;
}
.nb2-mag__title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: .92;
    color: #fff;
    letter-spacing: -.03em;
    margin: 0;
}
.nb2-mag__title em {
    font-style: italic;
    -webkit-text-stroke: 1.5px rgba(255,255,255,.25);
    color: transparent;
}
.nb2-mag__header-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.nb2-mag__desc {
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    max-width: 240px;
    line-height: 1.6;
}
.nb2-mag__viewall {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    padding: 7px 16px;
    border-radius: 30px;
    transition: background .2s, border-color .2s;
}
.nb2-mag__viewall:hover { background: var(--color-primary); border-color: var(--color-primary); }

/* 2-col asymmetric layout */
.nb2-mag__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
}

/* Hero card — left col, full height */
.nb2-mag__hero-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,.06);
    overflow: hidden;
    background: rgba(255,255,255,.06) center/cover no-repeat;
    transition: filter .35s;
}
.nb2-mag__hero-card:hover { filter: brightness(1.06); }
.nb2-mag__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.35) 55%, transparent 100%);
}
.nb2-mag__hero-body {
    position: relative;
    z-index: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nb2-mag__hero-body h2 {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    font-weight: 900;
    line-height: 1.18;
    color: #fff;
    margin: 0;
}
.nb2-mag__hero-card:hover h2 { color: var(--color-primary); }
.nb2-mag__hero-excerpt {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Right stacked cards */
.nb2-mag__stack { display: flex; flex-direction: column; }
.nb2-mag__card {
    flex: 1;
    display: flex;
    gap: 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .25s;
    overflow: hidden;
}
.nb2-mag__card:last-child { border-bottom: none; }
.nb2-mag__card:hover { background: rgba(255,255,255,.04); }
.nb2-mag__card-img {
    flex: 0 0 120px;
    background: rgba(255,255,255,.08) center/cover no-repeat;
    overflow: hidden;
}
.nb2-mag__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s;
}
.nb2-mag__card:hover .nb2-mag__card-img img { transform: scale(1.07); }
.nb2-mag__card-body {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.nb2-mag__card-body h3 {
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}
.nb2-mag__card:hover h3 { color: var(--color-primary); }

/* ════════════════════════════════════════════════════════════════════
   STYLE 3: SPOTLIGHT — 1 bài lớn full + strip 3 col với số thứ tự
   Layout: Horizontal split 60/40 với số to decorative
   ════════════════════════════════════════════════════════════════════ */
.nb2-spotlight {
    background: var(--color-bg);
    margin-top: 8px;
    border-top: 3px solid var(--color-primary);
}

.nb2-spotlight__top {
    display: flex;
    align-items: stretch;
    min-height: 460px;
    border-bottom: 1px solid var(--color-border);
}

.nb2-spotlight__main {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    background: var(--color-secondary) center/cover no-repeat;
    border-right: 1px solid var(--color-border);
    transition: brightness .35s;
}
.nb2-spotlight__main:hover { filter: brightness(1.05); }
.nb2-spotlight__main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(0,0,0,.5) 100%),
                linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
}
.nb2-spotlight__main-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: clamp(8rem, 14vw, 16rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.04);
    pointer-events: none;
    z-index: 1;
    user-select: none;
}
.nb2-spotlight__main-body {
    position: relative;
    z-index: 2;
    padding: 32px 36px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nb2-spotlight__main-body h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    font-weight: 900;
    line-height: 1.12;
    color: #fff;
    margin: 0;
}
.nb2-spotlight__main:hover h2 { color: var(--color-primary); }
.nb2-spotlight__main-desc {
    font-size: .84rem;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Right column: label + 3 items */
.nb2-spotlight__side {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.nb2-spotlight__side-head {
    padding: 18px 22px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nb2-spotlight__side-head h3 {
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-text);
    margin: 0;
}
.nb2-spotlight__side-head a {
    font-size: .65rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: .06em;
}
.nb2-spotlight__list { flex: 1; }
.nb2-spotlight__item {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text);
    transition: background .2s;
    min-height: 100px;
}
.nb2-spotlight__item:last-child { border-bottom: none; }
.nb2-spotlight__item:hover { background: color-mix(in srgb, var(--color-bg) 92%, var(--color-primary)); }
.nb2-spotlight__item-n {
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(0,0,0,.08);
    border-right: 1px solid var(--color-border);
    transition: background .2s, color .2s;
}
.nb2-spotlight__item:hover .nb2-spotlight__item-n {
    background: var(--color-primary);
    color: var(--color-btn-text);
}
.nb2-spotlight__item-img {
    flex: 0 0 88px;
    background: var(--color-border) center/cover no-repeat;
    overflow: hidden;
}
.nb2-spotlight__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.nb2-spotlight__item:hover .nb2-spotlight__item-img img { transform: scale(1.08); }
.nb2-spotlight__item-body {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.nb2-spotlight__item-body h4 {
    font-size: .85rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}
.nb2-spotlight__item:hover h4 { color: var(--color-primary); }

/* ════════════════════════════════════════════════════════════════════
   STYLE 4: BENTO TILES — Lưới bất đối xứng đa kích thước
   Layout: 12-col grid với tiles lớn nhỏ, mixed light/dark
   ════════════════════════════════════════════════════════════════════ */
.nb2-bento {
    background: var(--color-bg);
    margin-top: 8px;
    padding: 20px 5% 28px;
}

.nb2-bento__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.nb2-bento__head-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nb2-bento__accent {
    width: 4px;
    height: 22px;
    background: var(--color-primary);
    border-radius: 2px;
}
.nb2-bento__head h2 {
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--color-text);
    margin: 0;
}
.nb2-bento__all {
    font-size: .7rem;
    font-weight: 800;
    color: var(--color-muted);
    border: 1.5px solid var(--color-border);
    padding: 5px 14px;
    border-radius: 30px;
    transition: border-color .2s, color .2s;
    letter-spacing: .04em;
}
.nb2-bento__all:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* Bento grid: 3 columns, 2 rows */
.nb2-bento__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 240px 180px;
    gap: 10px;
}

/* Tile chung */
.nb2-bento__tile {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--color-secondary) center/cover no-repeat;
    transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s;
}
.nb2-bento__tile:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,.15);
}
.nb2-bento__tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.nb2-bento__tile-body {
    position: relative;
    z-index: 1;
    padding: 12px 14px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.nb2-bento__tile-body h2 {
    font-size: clamp(.9rem, 1.4vw, 1.3rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}
.nb2-bento__tile-body h3 {
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nb2-bento__tile:hover h2,
.nb2-bento__tile:hover h3 { color: var(--color-primary); }

/* Big tile spans 2 rows */
.nb2-bento__tile--big { grid-row: span 2; }
.nb2-bento__tile--big .nb2-bento__tile-body { padding: 18px 20px; }
.nb2-bento__tile--big h2 {
    font-size: clamp(1rem, 1.6vw, 1.5rem);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nb2-bento__excerpt {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ════════════════════════════════════════════════════════════════════
   STYLE 5: TIMELINE — Split stagger editorial
   Mỗi bài: ảnh 55% xen kẽ trái/phải, số to decorative, accent bar
   ════════════════════════════════════════════════════════════════════ */
.nb2-timeline {
    background: var(--color-bg);
    margin-top: 8px;
}

.nb2-timeline__head {
    padding: 22px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--color-primary);
}
.nb2-timeline__head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nb2-timeline__pulse {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--color-primary); position: relative; flex-shrink: 0;
}
.nb2-timeline__pulse::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid var(--color-primary); opacity: .3;
    animation: nb2-pulse-ring 2s ease-in-out infinite;
}
@keyframes nb2-pulse-ring { 0%,100%{transform:scale(1);opacity:.3} 50%{transform:scale(1.4);opacity:0} }
.nb2-timeline__head h2 {
    font-size: .78rem; font-weight: 900; text-transform: uppercase;
    letter-spacing: .15em; color: var(--color-text); margin: 0;
}
.nb2-timeline__head a {
    font-size: .7rem; font-weight: 700; color: var(--color-primary); letter-spacing: .06em;
}

/* Track — 2 cột song song */
.nb2-timeline__track { padding: 0; }
.nb2-timeline__center-line { display: none; }
.nb2-timeline__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--color-border);
}

/* Mỗi entry */
.nb2-timeline__entry {
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: 110px;
    border-bottom: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    position: relative; overflow: hidden;
    transition: background .2s;
    text-decoration: none; color: var(--color-text);
}
/* Cột phải: bỏ border-right */
.nb2-timeline__entry:nth-child(2n) { border-right: none; }
/* 2 bài cuối: bỏ border-bottom */
.nb2-timeline__entry:nth-last-child(-n+2) { border-bottom: none; }
.nb2-timeline__entry:hover { background: color-mix(in srgb, var(--color-bg) 94%, var(--color-primary)); }

/* Ảnh nhỏ bên trái */
.nb2-timeline__entry-img {
    width: 120px; height: 100%; min-height: 110px;
    background: var(--color-border) center/cover no-repeat;
    overflow: hidden; flex-shrink: 0;
}
.nb2-timeline__entry-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .45s;
}
.nb2-timeline__entry:hover .nb2-timeline__entry-img img { transform: scale(1.06); }

/* Body text */
.nb2-timeline__entry-body {
    padding: 14px 16px;
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    position: relative; min-width: 0;
}
/* Số decorative nhỏ */
.nb2-timeline__entry-body::before {
    content: attr(data-index);
    position: absolute; top: 8px; right: 10px;
    font-size: 2.2rem; font-weight: 900; line-height: 1;
    color: var(--color-primary); opacity: .07;
    pointer-events: none; user-select: none;
}
/* Accent bar trái khi hover */
.nb2-timeline__entry-body::after {
    content: '';
    position: absolute; left: 0; top: 20%; bottom: 20%;
    width: 2px; background: var(--color-primary); border-radius: 2px;
    opacity: 0; transition: opacity .25s;
}
.nb2-timeline__entry:hover .nb2-timeline__entry-body::after { opacity: 1; }

.nb2-timeline__entry-body .nb2-tag { align-self: flex-start; }
.nb2-timeline__entry-body h3 {
    font-size: .85rem; font-weight: 800; line-height: 1.35;
    color: var(--color-text); margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
    transition: color .2s;
}
.nb2-timeline__entry:hover h3 { color: var(--color-primary); }
.nb2-timeline__entry-body p {
    font-size: .72rem; color: var(--color-muted); line-height: 1.55; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; overflow: hidden;
}
.nb2-timeline__entry-dot,
.nb2-timeline__entry-empty,
.nb2-timeline__entry-date { display: none; }
.nb2-timeline__entry-card { display: contents; text-decoration: none; color: inherit; }

/* ════════════════════════════════════════════════════════════════════
   STYLE 6: DIGEST — Tối giản, danh sách text nặng kiểu newsletter
   Layout: 2 col: danh sách rank left + featured card right
   ════════════════════════════════════════════════════════════════════ */
.nb2-digest {
    background: var(--color-bg);
    margin-top: 8px;
}

.nb2-digest__wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-top: 3px solid var(--color-text);
}

/* Left: heading + list */
.nb2-digest__left {
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}
.nb2-digest__header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.nb2-digest__header h2 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-text);
    margin: 0;
    letter-spacing: -.02em;
}
.nb2-digest__header a {
    font-size: .7rem;
    font-weight: 700;
    color: var(--color-muted);
    letter-spacing: .06em;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1px;
    transition: color .2s, border-color .2s;
}
.nb2-digest__header a:hover { color: var(--color-primary); border-color: var(--color-primary); }

.nb2-digest__list { flex: 1; }
.nb2-digest__item {
    display: grid;
    grid-template-columns: 44px 1fr;
    text-decoration: none;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    transition: background .2s;
    min-height: 88px;
}
.nb2-digest__item:last-child { border-bottom: none; }
.nb2-digest__item:hover { background: color-mix(in srgb, var(--color-bg) 92%, var(--color-primary)); }
.nb2-digest__num {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-border);
    border-right: 1px solid var(--color-border);
    transition: background .2s, color .2s;
}
.nb2-digest__item:hover .nb2-digest__num {
    background: var(--color-primary);
    color: var(--color-btn-text);
}
.nb2-digest__body { padding: 14px 18px; display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.nb2-digest__body h3 {
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}
.nb2-digest__item:hover h3 { color: var(--color-primary); }
.nb2-digest__item-excerpt {
    font-size: .73rem;
    color: var(--color-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Right: featured card */
.nb2-digest__right {
    display: flex;
    flex-direction: column;
}
.nb2-digest__feat {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    background: var(--color-secondary) center/cover no-repeat;
    min-height: 360px;
    overflow: hidden;
    transition: brightness .35s;
}
.nb2-digest__feat:hover { filter: brightness(1.08); }
.nb2-digest__feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.94) 0%, rgba(0,0,0,.4) 55%, transparent 100%);
}
.nb2-digest__feat-body {
    position: relative;
    z-index: 1;
    padding: 24px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nb2-digest__feat-label {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nb2-digest__feat-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--color-primary);
}
.nb2-digest__feat-body h2 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin: 0;
}
.nb2-digest__feat:hover h2 { color: var(--color-primary); }
.nb2-digest__feat-desc {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ════════════════════════════════════════════════════════════════════
   STYLE 7: PORTRAIT GRID — 4 cards overlay, text trên ảnh
   ════════════════════════════════════════════════════════════════════ */
.nb2-portrait {
    background: var(--color-secondary);
    margin-top: 8px;
}

.nb2-portrait__header {
    padding: 24px 5% 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nb2-portrait__header-left { display: flex; flex-direction: column; gap: 4px; }
.nb2-portrait__eyebrow {
    display: block;
    font-size: .58rem; font-weight: 900; letter-spacing: .22em;
    text-transform: uppercase; color: var(--color-primary);
}
.nb2-portrait__h2 {
    font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 900;
    line-height: 1.1; color: #fff; letter-spacing: -.02em; margin: 0;
}
.nb2-portrait__h2 em { font-style: italic; color: var(--color-primary); }
.nb2-portrait__header-right {
    display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.nb2-portrait__desc {
    font-size: .75rem; color: rgba(255,255,255,.35);
    max-width: 200px; text-align: right; line-height: 1.5;
}
.nb2-portrait__all {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .65rem; font-weight: 800; letter-spacing: .08em;
    color: var(--color-btn-text); background: var(--color-primary);
    padding: 7px 16px; border-radius: 2px; white-space: nowrap;
    transition: opacity .2s;
}
.nb2-portrait__all:hover { opacity: .85; }

/* Grid: 4 cols, ảnh full overlay */
.nb2-portrait__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255,255,255,.04);
    padding: 0 5% 32px;
}

.nb2-portrait__card {
    position: relative; overflow: hidden;
    text-decoration: none; display: block;
    aspect-ratio: 4/3;
    background: rgba(255,255,255,.08) center/cover no-repeat;
    border-radius: 6px;
    transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
/* Stagger nhẹ — chỉ 2 mức */
.nb2-portrait__card:nth-child(4n+2) { margin-top: 20px; }
.nb2-portrait__card:nth-child(4n+4) { margin-top: 20px; }
.nb2-portrait__card:hover { transform: translateY(-4px); }

.nb2-portrait__card-img {
    position: absolute; inset: 0;
    background: inherit center/cover no-repeat;
}
.nb2-portrait__card-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.nb2-portrait__card:hover .nb2-portrait__card-img img { transform: scale(1.07); }

/* Gradient overlay — mạnh ở dưới */
.nb2-portrait__card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.45) 40%,
        rgba(0,0,0,.08) 70%,
        transparent 100%
    );
    transition: opacity .3s;
}
.nb2-portrait__card:hover .nb2-portrait__card-overlay { opacity: .85; }

/* Badge category — góc trên trái */
.nb2-portrait__card-cat {
    position: absolute; top: 14px; left: 14px; z-index: 2;
}

/* Text body — nằm dưới ảnh */
.nb2-portrait__card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2; padding: 20px 18px 18px;
    display: flex; flex-direction: column; gap: 6px;
    transform: translateY(4px);
    transition: transform .3s;
}
.nb2-portrait__card:hover .nb2-portrait__card-body { transform: translateY(0); }

.nb2-portrait__card-body h3 {
    font-size: .88rem; font-weight: 800; line-height: 1.35;
    color: #fff; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
    transition: color .2s;
}
.nb2-portrait__card:hover h3 { color: var(--color-primary); }
.nb2-portrait__card-meta {
    display: flex; align-items: center; gap: 4px;
    font-size: .6rem; color: rgba(255,255,255,.45);
    opacity: 0; transform: translateY(4px);
    transition: opacity .3s .05s, transform .3s .05s;
}
.nb2-portrait__card:hover .nb2-portrait__card-meta { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — 1200px
   ═══════════════════════════════════════════════════════════════════ */
/* -------------------------------------------------------------------
   RESPONSIVE � 1200px (tablet landscape)
   ------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .nb2-hero__content { grid-template-columns: 1fr 280px; }
    .nb2-broadsheet__grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .nb2-broadsheet__feat { grid-row: span 2; }
    .nb2-broadsheet__mini:nth-child(n+5) { display: none; }
    .nb2-spotlight__main { flex: 0 0 55%; }
    /* Mag */
    .nb2-mag__title { font-size: 2rem; }
    .nb2-mag__layout { min-height: 420px; }
    .nb2-mag__card-img { flex: 0 0 100px; }
    /* Portrait */
    .nb2-portrait__grid { padding: 0 4% 28px; }
    .nb2-portrait__card:nth-child(4n+2),
    .nb2-portrait__card:nth-child(4n+4) { margin-top: 16px; }
    .nb2-digest__wrap { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .nb2-hero__content { grid-template-columns: 1fr; padding: 32px 5%; }
    .nb2-hero__panel { display: none; }
    .nb2-hero__lead { padding: 0; }
    .nb2-broadsheet__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .nb2-broadsheet__feat { grid-row: span 1; }
    .nb2-broadsheet__feat-img { aspect-ratio: 16/9; }
    .nb2-broadsheet__mini:nth-child(n+5) { display: flex; }
    .nb2-broadsheet__mini:nth-child(n+7) { display: none; }
    /* Mag: hero full width, stack ngang */
    .nb2-mag__layout { grid-template-columns: 1fr; min-height: auto; }
    .nb2-mag__hero-card { min-height: 260px; }
    .nb2-mag__stack { flex-direction: row; border-top: 1px solid rgba(255,255,255,.06); }
    .nb2-mag__card { flex: 1; flex-direction: column; border-bottom: none; border-right: 1px solid rgba(255,255,255,.06); }
    .nb2-mag__card:last-child { border-right: none; }
    .nb2-mag__card-img { flex: 0 0 auto; aspect-ratio: 16/9; width: 100%; }
    .nb2-mag__card-body { padding: 14px 16px; }
    .nb2-mag__header { padding: 24px 5% 20px; }
    .nb2-mag__title { font-size: 1.8rem; }
    .nb2-spotlight__top { flex-direction: column; }
    .nb2-spotlight__main { flex: none; min-height: 280px; }
    .nb2-bento__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 180px 180px; }
    .nb2-bento__tile--big { grid-column: span 2; grid-row: span 1; }
    .nb2-timeline__items { grid-template-columns: 1fr; }
    .nb2-timeline__entry { border-right: none; }
    .nb2-timeline__entry:nth-last-child(-n+2) { border-bottom: 1px solid var(--color-border); }
    .nb2-timeline__entry:last-child { border-bottom: none; }
    .nb2-digest__wrap { grid-template-columns: 1fr; }
    .nb2-digest__left { border-right: none; border-bottom: 1px solid var(--color-border); }
    .nb2-digest__feat { min-height: 240px; }
    /* Portrait: 2 col */
    .nb2-portrait__grid { grid-template-columns: repeat(2, 1fr); gap: 2px; padding: 0 5% 24px; }
    .nb2-portrait__card:nth-child(4n+2),
    .nb2-portrait__card:nth-child(4n+4) { margin-top: 0; }
    .nb2-portrait__card:nth-child(2n) { margin-top: 14px; }
    .nb2-portrait__header { padding: 20px 5% 16px; }
    .nb2-portrait__h2 { font-size: 1.3rem; }
}

@media (max-width: 600px) {
    .nb2-hero { min-height: auto; }
    .nb2-hero__title { font-size: 1.9rem; }
    .nb2-hero__excerpt { display: none; }
    .nb2-hero__ticker-inner { animation-duration: 18s; }
    .nb2-broadsheet__grid { grid-template-columns: 1fr; }
    .nb2-broadsheet__feat { grid-row: span 1; }
    .nb2-broadsheet__mini { flex-direction: row; border-right: none; border-bottom: 1px solid var(--color-border); }
    .nb2-broadsheet__mini:nth-child(n+5) { display: none; }
    .nb2-broadsheet__mini-img { flex: 0 0 90px; width: 90px; height: 72px; aspect-ratio: auto; }
    .nb2-broadsheet__mini-body p { display: none; }
    /* Mag: stack dọc */
    .nb2-mag__stack { flex-direction: column; }
    .nb2-mag__card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); flex-direction: row; }
    .nb2-mag__card:last-child { border-bottom: none; }
    .nb2-mag__card-img { flex: 0 0 90px; width: 90px; aspect-ratio: auto; align-self: stretch; }
    .nb2-mag__card-body { padding: 12px 14px; }
    .nb2-mag__card-body h3 { font-size: .82rem; -webkit-line-clamp: 2; }
    .nb2-mag__header { grid-template-columns: 1fr; gap: 10px; padding: 18px 4% 14px; }
    .nb2-mag__header-right { align-items: flex-start; text-align: left; }
    .nb2-mag__desc { max-width: 100%; display: none; }
    .nb2-mag__title { font-size: 1.5rem; }
    .nb2-bento { padding: 14px 4% 18px; }
    .nb2-bento__grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 8px; }
    .nb2-bento__tile--big { grid-column: auto; min-height: 200px; }
    .nb2-bento__tile { min-height: 150px; }
    .nb2-timeline__entry { grid-template-columns: 90px 1fr; min-height: 90px; }
    .nb2-timeline__entry-img { width: 90px; min-height: 90px; }
    .nb2-timeline__entry-body { padding: 10px 12px; gap: 4px; }
    .nb2-timeline__entry-body p { display: none; }
    .nb2-timeline__entry-body::before { font-size: 1.6rem; }
    .nb2-digest__header { padding: 14px 16px; }
    .nb2-digest__body { padding: 10px 12px; }
    .nb2-digest__item-excerpt { display: none; }
    /* Portrait: 2 col nhỏ */
    .nb2-portrait__grid { grid-template-columns: 1fr 1fr; gap: 2px; padding: 0 4% 18px; }
    .nb2-portrait__card:nth-child(2n) { margin-top: 10px; }
    .nb2-portrait__card-body h3 { font-size: .8rem; }
    .nb2-portrait__header { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px 4% 12px; }
    .nb2-portrait__header-right { align-items: flex-start; flex-direction: row; gap: 10px; }
    .nb2-portrait__desc { display: none; }
    .nb2-portrait__h2 { font-size: 1.1rem; }
}

@media (max-width: 400px) {
    .nb2-hero__title { font-size: 1.55rem; }
    .nb2-hero__cta { flex-direction: column; align-items: flex-start; gap: 10px; }
    .nb2-broadsheet__mini-img { flex: 0 0 72px; width: 72px; height: 60px; }
    /* Mag */
    .nb2-mag__card-img { flex: 0 0 72px; width: 72px; }
    .nb2-mag__title { font-size: 1.3rem; }
    .nb2-bento__grid { gap: 6px; }
    .nb2-bento__tile--big { min-height: 170px; }
    .nb2-timeline__entry { grid-template-columns: 72px 1fr; min-height: 80px; }
    .nb2-timeline__entry-img { width: 72px; min-height: 80px; }
    .nb2-digest__num { font-size: 1.1rem; flex: 0 0 32px; }
    /* Portrait */
    .nb2-portrait__grid { gap: 2px; }
    .nb2-portrait__card:nth-child(2n) { margin-top: 8px; }
}
