/* Script Outlook — base styles */
@import url('https://fonts.bunny.net/css?family=inter:400,500,600,700,800&display=swap');

:root {
  --navy:        #0f172a;
  --navy2:       #1e293b;
  --red:         #dc2626;
  --red-dark:    #b91c1c;
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --green:       #16a34a;
  --purple:      #7c3aed;
  --amber:       #d97706;
  --cyan:        #0891b2;
  --bg:          #f8fafc;
  --surface:     #ffffff;
  --border:      #e2e8f0;
  --text:        #0f172a;
  --muted:       #64748b;
  --font:        'Inter', system-ui, sans-serif;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── TOP BAR ── */
.top-bar { background: var(--navy); color: rgba(255,255,255,.55); font-size: .72rem; padding: .45rem 1.25rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,.55); transition: color .15s; }
.top-bar a:hover { color: #fff; }
.top-bar-left { display: flex; gap: 1.25rem; align-items: center; }
.top-bar-date { letter-spacing: .02em; }
.top-bar-right { display: flex; gap: 1.25rem; align-items: center; }

/* ── HEADER ── */
.site-header { background: var(--navy); border-bottom: 3px solid var(--red); padding: .85rem 1.25rem; }
.header-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.site-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 1.65rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.logo-name span { color: var(--red); }
.logo-tag { font-size: .65rem; color: rgba(255,255,255,.4); letter-spacing: .12em; text-transform: uppercase; margin-top: .1rem; }

/* ── NAV ── */
.site-nav { background: var(--navy2); border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link { padding: .8rem 1.1rem; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.6); white-space: nowrap; transition: color .15s, border-color .15s; border-bottom: 2px solid transparent; }
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; border-bottom-color: var(--red); }
.nav-link.nav-target { color: var(--red); font-weight: 700; }

/* ── BREAKING BAR ── */
.breaking-bar { background: var(--red); color: #fff; font-size: .78rem; font-weight: 600; padding: .4rem 1.25rem; display: flex; align-items: center; gap: .75rem; overflow: hidden; }
.breaking-label { background: #fff; color: var(--red); font-size: .65rem; font-weight: 800; padding: .1rem .45rem; border-radius: 3px; letter-spacing: .08em; text-transform: uppercase; flex-shrink: 0; }

/* ── LAYOUT ── */
.page-wrap { max-width: 1280px; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.two-col { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ── HERO ── */
.hero-article { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy); margin-bottom: 2rem; min-height: 360px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-body { padding: 2rem 2rem 1.75rem; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-cat { display: inline-block; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: .2rem .55rem; border-radius: 3px; margin-bottom: .75rem; }
.hero-title { font-size: clamp(1.25rem,2.5vw,1.75rem); font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: .6rem; }
.hero-title:hover { color: rgba(255,255,255,.85); }
.hero-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: .85rem; }
.hero-meta { font-size: .72rem; color: rgba(255,255,255,.4); display: flex; gap: .6rem; }
@media (max-width: 700px) { .hero-article { grid-template-columns: 1fr; } .hero-img { height: 220px; } }

/* ── SECTION HEADER ── */
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--border); }
.sec-head-title { font-size: 1rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; display: flex; align-items: center; gap: .5rem; }
.sec-head-title::before { content: ''; display: inline-block; width: 4px; height: 1.1em; border-radius: 2px; background: currentColor; }
.sec-head-link { font-size: .78rem; font-weight: 600; color: var(--muted); }
.sec-head-link:hover { color: var(--text); }

/* ── ARTICLE CARD ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .cards-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .cards-grid-3, .cards-grid { grid-template-columns: 1fr; } }

.card { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { width: 100%; height: 180px; object-fit: cover; }
.card-img-placeholder { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.card-body { padding: .9rem 1rem 1rem; flex: 1; display: flex; flex-direction: column; }
.card-cat { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .4rem; }
.card-title { font-size: .95rem; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: .4rem; flex: 1; }
.card-title:hover { color: var(--red); }
.card-meta { font-size: .72rem; color: var(--muted); display: flex; gap: .5rem; align-items: center; margin-top: .5rem; }
.card-meta span { display: flex; align-items: center; gap: .25rem; }

/* ── LIST CARD (sidebar / compact) ── */
.list-card { display: flex; gap: .85rem; padding: .85rem 0; border-bottom: 1px solid var(--border); }
.list-card:last-child { border-bottom: none; }
.list-card-img { width: 80px; height: 64px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.list-card-body { flex: 1; min-width: 0; }
.list-card-cat { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.list-card-title { font-size: .83rem; font-weight: 600; line-height: 1.35; margin-top: .2rem; color: var(--text); }
.list-card-title:hover { color: var(--red); }
.list-card-meta { font-size: .68rem; color: var(--muted); margin-top: .3rem; }

/* ── SIDEBAR ── */
.sidebar-widget { background: var(--surface); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.sidebar-widget-title { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); border-bottom: 2px solid var(--border); padding-bottom: .6rem; margin-bottom: .85rem; }
.sidebar-num-list { counter-reset: art-num; }
.sidebar-num-item { counter-increment: art-num; padding: .65rem 0; border-bottom: 1px solid var(--border); display: flex; gap: .7rem; align-items: flex-start; }
.sidebar-num-item:last-child { border-bottom: none; }
.sidebar-num-item::before { content: counter(art-num); font-size: .7rem; font-weight: 800; color: var(--red); min-width: 18px; margin-top: .1rem; }
.sidebar-num-link { font-size: .83rem; font-weight: 600; color: var(--text); line-height: 1.35; }
.sidebar-num-link:hover { color: var(--red); }

/* ── ARTICLE PAGE ── */
.article-wrap { max-width: 760px; }
.article-cat-label { display: inline-block; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: .2rem .6rem; border-radius: 3px; margin-bottom: .85rem; }
.article-title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: .75rem; }
.article-meta { font-size: .78rem; color: var(--muted); display: flex; gap: .65rem; flex-wrap: wrap; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.article-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 1.75rem; }
.article-body p { font-size: .97rem; color: #1e293b; line-height: 1.8; margin-bottom: 1.1rem; }
.article-body h2 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin: 2rem 0 .7rem; }
.article-body h3 { font-size: 1.05rem; font-weight: 700; margin: 1.5rem 0 .5rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body li { font-size: .97rem; color: #1e293b; line-height: 1.7; margin-bottom: .4rem; }
.article-body strong { font-weight: 700; }
.article-body a { color: var(--blue); text-decoration: underline; }
.article-body blockquote { border-left: 4px solid var(--red); padding: .85rem 1.25rem; background: #fef2f2; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.75rem 0; font-style: italic; color: var(--text); line-height: 1.65; }
.article-body .callout { background: #f8fafc; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.article-body .callout h3 { margin-top: 0; }

/* ── AFFILIATE DISCLOSURE ── */
.affiliate-disclosure { background: #fef9c3; border: 1px solid #fde047; border-radius: var(--radius); padding: .6rem .85rem; font-size: .75rem; color: #713f12; margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: .5rem; }
.affiliate-disclosure::before { content: 'ℹ'; font-style: normal; font-weight: 700; flex-shrink: 0; }

/* ── PRODUCT PICK (article inline) ── */
.prod-pick { display: flex; gap: 1rem; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1rem 1.25rem; margin: 1rem 0; transition: box-shadow .15s; }
.prod-pick:hover { box-shadow: var(--shadow-md); }
.prod-pick img { width: 88px; height: 70px; object-fit: contain; border-radius: var(--radius); background: #f1f5f9; padding: 4px; flex-shrink: 0; }
.prod-pick-info { flex: 1; min-width: 0; }
.prod-pick-name { font-weight: 700; font-size: .93rem; color: var(--text); margin-bottom: .2rem; }
.prod-pick-price { font-weight: 800; font-size: .95rem; color: var(--blue-dark); }
.prod-pick-desc { font-size: .82rem; color: var(--muted); margin-top: .2rem; line-height: 1.45; }
.prod-pick-btn { flex-shrink: 0; background: var(--red); color: #fff; padding: .55rem 1rem; border-radius: var(--radius); font-size: .78rem; font-weight: 700; white-space: nowrap; transition: background .15s; }
.prod-pick-btn:hover { background: var(--red-dark); }
@media (max-width: 500px) { .prod-pick { flex-wrap: wrap; } .prod-pick-btn { width: 100%; text-align: center; } }

/* ── CATEGORY HERO BAND ── */
.cat-band { padding: 1.5rem 1.25rem; margin-bottom: 0; }
.cat-band-inner { max-width: 1280px; margin: 0 auto; }
.cat-band h1 { font-size: 1.85rem; font-weight: 800; color: #fff; margin-bottom: .25rem; }
.cat-band p { font-size: .88rem; color: rgba(255,255,255,.65); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.55); margin-top: 3rem; }
.footer-main { max-width: 1280px; margin: 0 auto; padding: 3rem 1.25rem 2rem; display: grid; grid-template-columns: 1.75fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-main { grid-template-columns: 1fr; } }
.footer-brand .logo-name { font-size: 1.35rem; margin-bottom: .6rem; }
.footer-brand p { font-size: .8rem; line-height: 1.65; margin-bottom: .85rem; }
.footer-col h4 { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.9); margin-bottom: .85rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .45rem; }
.footer-col a { font-size: .8rem; color: rgba(255,255,255,.45); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 1.25rem; max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; font-size: .73rem; color: rgba(255,255,255,.3); }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: .75rem; color: var(--muted); display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: #cbd5e1; }

/* ── LIVE / BREAKING BADGE ── */
.badge-live { background: var(--red); color: #fff; font-size: .6rem; font-weight: 800; padding: .15rem .4rem; border-radius: 3px; text-transform: uppercase; letter-spacing: .07em; display: inline-block; vertical-align: middle; margin-right: .3rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

/* ── HOMEPAGE MONEY+TECH TWO-COL ── */
.money-tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 640px) { .money-tech-grid { grid-template-columns: 1fr; } }

/* ── CONTACT INFO GRID ── */
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
@media (max-width: 520px) { .contact-info-grid { grid-template-columns: 1fr; } }

/* ── TOP BAR MOBILE ── */
@media (max-width: 540px) { .top-bar-date { display: none; } .top-bar-left span:nth-child(2) { display: none; } }

/* ── SUBSCRIPTION CTA ── */
.sub-cta { background: var(--navy); border-radius: var(--radius-lg); padding: 2.25rem 2rem; margin-bottom: 2.5rem; }
.sub-cta-label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--red); margin-bottom: .6rem; }
.sub-cta h2 { font-size: 1.45rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: .5rem; }
.sub-cta > div > p { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.sub-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .sub-plans { grid-template-columns: 1fr; } }
.sub-plan { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 1.35rem 1.25rem; position: relative; }
.sub-plan-featured { background: rgba(220,38,38,.12); border-color: var(--red); }
.sub-plan-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: .15rem .65rem; border-radius: 20px; white-space: nowrap; }
.sub-plan-name { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: .4rem; }
.sub-plan-price { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: .15rem; }
.sub-plan-price span { font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.5); }
.sub-plan-annual { font-size: .73rem; color: rgba(255,255,255,.4); margin-bottom: .9rem; }
.sub-plan-features { list-style: none; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .4rem; }
.sub-plan-features li { font-size: .8rem; color: rgba(255,255,255,.7); padding-left: 1.1rem; position: relative; }
.sub-plan-features li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-size: .72rem; }
.sub-plan-features li.sub-dim { color: rgba(255,255,255,.3); }
.sub-plan-features li.sub-dim::before { content: '—'; color: rgba(255,255,255,.2); }
.sub-btn { display: block; text-align: center; padding: .65rem 1rem; border-radius: 6px; font-size: .82rem; font-weight: 700; text-decoration: none; transition: opacity .15s; }
.sub-btn:hover { opacity: .88; }
.sub-btn-free { background: rgba(255,255,255,.1); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.15); }
.sub-btn-premium { background: var(--red); color: #fff; }

/* ── SUBSCRIBE PAGE ── */
.sub-toggle { display: flex; background: #f1f5f9; border-radius: 8px; padding: 4px; gap: 4px; width: fit-content; margin: 0 auto 2rem; }
.sub-toggle-btn { padding: .45rem 1.25rem; border-radius: 6px; font-size: .82rem; font-weight: 700; cursor: pointer; border: none; background: transparent; color: var(--muted); transition: all .15s; }
.sub-toggle-btn.active { background: var(--navy); color: #fff; }
.sub-page-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (max-width: 560px) { .sub-page-plans { grid-template-columns: 1fr; } }
.sub-page-plan { border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; position: relative; background: var(--surface); }
.sub-page-plan.featured { border-color: var(--red); }
.sub-page-plan .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: .2rem .75rem; border-radius: 20px; white-space: nowrap; }
.sub-page-plan-name { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .5rem; }
.sub-page-plan-price { font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: .2rem; }
.sub-page-plan-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.sub-page-plan-annual { font-size: .75rem; color: var(--muted); margin-bottom: 1rem; min-height: 1.2em; }
.sub-page-plan ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.5rem; }
.sub-page-plan ul li { font-size: .82rem; color: var(--text); padding-left: 1.25rem; position: relative; }
.sub-page-plan ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.sub-page-plan ul li.dim { color: var(--muted); }
.sub-page-plan ul li.dim::before { content: '—'; color: var(--border); }
.sub-page-btn { display: block; text-align: center; padding: .75rem 1rem; border-radius: 6px; font-size: .88rem; font-weight: 700; text-decoration: none; }
.sub-page-btn-free { background: #f1f5f9; color: var(--navy); }
.sub-page-btn-premium { background: var(--red); color: #fff; }
.sub-page-btn:hover { opacity: .88; }
.sub-register { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; max-width: 480px; margin: 0 auto; }
.sub-register h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .35rem; }
.sub-register p { font-size: .82rem; color: var(--muted); margin-bottom: 1.25rem; }
.sub-register input { width: 100%; padding: .7rem .9rem; border: 1px solid var(--border); border-radius: 6px; font-family: var(--font); font-size: .9rem; color: var(--text); margin-bottom: .85rem; }
.sub-register input:focus { outline: 2px solid var(--red); border-color: transparent; }
.sub-register button { width: 100%; padding: .8rem; background: var(--red); color: #fff; border: none; border-radius: 6px; font-size: .9rem; font-weight: 700; cursor: pointer; }
.sub-register button:hover { background: var(--red-dark); }

/* ── NEWSLETTER ── */
.nl-strip { background: var(--navy2); border-top: 1px solid rgba(255,255,255,.07); padding: 2rem 1.25rem; }
.nl-strip-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.nl-strip-text { flex: 1; min-width: 200px; }
.nl-strip-title { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: .3rem; }
.nl-strip-sub { font-size: .8rem; color: rgba(255,255,255,.45); }
.nl-strip-form { display: flex; flex-direction: column; gap: .45rem; flex-shrink: 0; }
.nl-strip-row { display: flex; gap: .5rem; }
.nl-input { padding: .6rem .9rem; border-radius: 6px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.07); color: #fff; font-family: var(--font); font-size: .85rem; width: 230px; }
.nl-input::placeholder { color: rgba(255,255,255,.3); }
.nl-input:focus { outline: 2px solid var(--red); border-color: transparent; }
.nl-btn { background: var(--red); color: #fff; border: none; padding: .6rem 1.15rem; border-radius: 6px; font-weight: 700; font-size: .85rem; cursor: pointer; white-space: nowrap; transition: background .15s; }
.nl-btn:hover { background: var(--red-dark); }
.nl-btn:disabled { opacity: .6; cursor: not-allowed; }
.nl-consent-label { display: flex; align-items: flex-start; gap: .4rem; font-size: .68rem; color: rgba(255,255,255,.4); line-height: 1.45; cursor: pointer; }
.nl-consent-label a { color: rgba(255,255,255,.55); text-decoration: underline; }
.nl-consent-check { margin-top: .15rem; flex-shrink: 0; accent-color: var(--red); width: 13px; height: 13px; }
.nl-strip-success { display: none; color: #4ade80; font-size: .88rem; font-weight: 700; }
@media (max-width: 600px) { .nl-strip-form { width: 100%; } .nl-strip-row { width: 100%; } .nl-input { flex: 1; width: auto; } }

/* sidebar newsletter */
.nl-input-sidebar { width: 100%; padding: .6rem .75rem; border: 1px solid var(--border); border-radius: 6px; font-family: var(--font); font-size: .83rem; color: var(--text); margin-bottom: .5rem; }
.nl-input-sidebar:focus { outline: 2px solid var(--red); border-color: transparent; }
.nl-btn-sidebar { width: 100%; padding: .6rem; background: var(--red); color: #fff; border: none; border-radius: 6px; font-weight: 700; font-size: .83rem; cursor: pointer; transition: background .15s; }
.nl-btn-sidebar:hover { background: var(--red-dark); }
.nl-btn-sidebar:disabled { opacity: .6; cursor: not-allowed; }

/* ── MISC ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.tag-pill { display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: .2rem .55rem; border-radius: 3px; }
.read-more { font-size: .82rem; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: .25rem; margin-top: .5rem; }
.read-more:hover { color: var(--red-dark); }
.section-gap { margin-bottom: 2.5rem; }
