*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand:       #E43265;
  --brand-dark:  #C41E4E;
  --brand-light: #FDEDF2;
  --black:       #0A0A0A;
  --gray-900:    #111111;
  --gray-700:    #333333;
  --gray-500:    #666666;
  --gray-300:    #AAAAAA;
  --gray-100:    #F2F2F2;
  --white:       #FFFFFF;
  --border:      #E5E5E5;
  --max-w:       1200px;
  --font-sans:   'Inter', sans-serif;
  --font-serif:  'Merriweather', Georgia, serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--white); color: var(--gray-900); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
img { display: block; width: 100%; height: auto; object-fit: cover; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* BANNER */
.top-banner { background: var(--brand); color: var(--white); padding: 10px 0; position: relative; }
.top-banner-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.top-banner-text { font-size: 13px; font-weight: 600; white-space: nowrap; }
.top-banner-text strong { font-weight: 800; }
.top-banner-form { display: flex; gap: 8px; }
.top-banner-input { padding: 6px 14px; border-radius: 5px; border: none; background: rgba(255,255,255,.2); color: var(--white); font-size: 13px; font-family: var(--font-sans); outline: none; width: 220px; transition: background .2s; }
.top-banner-input::placeholder { color: rgba(255,255,255,.65); }
.top-banner-input:focus { background: rgba(255,255,255,.3); }
.top-banner-btn { padding: 6px 16px; background: var(--white); color: var(--brand); border: none; border-radius: 5px; font-size: 13px; font-weight: 800; cursor: pointer; white-space: nowrap; transition: opacity .15s; }
.top-banner-btn:hover { opacity: .88; }
.top-banner-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255,255,255,.7); font-size: 20px; cursor: pointer; line-height: 1; }
.top-banner-close:hover { color: var(--white); }

/* HEADER */
.site-header { background: var(--black); border-bottom: 2px solid var(--brand); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 38px; height: 38px; background: var(--brand); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 900; font-size: 18px; }
.logo-text { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; color: var(--white); }
.logo-text span { color: var(--brand); }
.main-nav { display: flex; gap: 0; }
.main-nav a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); padding: 8px 14px; border-radius: 6px; transition: background .15s, color .15s; text-transform: uppercase; letter-spacing: .04em; }
.main-nav a:hover, .main-nav a.active { background: var(--brand); color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 6px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all .15s; border: none; }
.btn-primary { background: var(--brand); color: var(--white); }
.btn-primary:hover { background: var(--brand-dark); color: var(--white); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* HERO */
.hero { border-bottom: 1px solid var(--border); padding: 32px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 0 28px; align-items: stretch; }
.hero-main { position: relative; border-radius: 12px; overflow: hidden; background: var(--gray-100); min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; }
.hero-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Overlay padrão (com imagem): gradiente cobre o rodapé, texto centralizado */
.hero-main-overlay { position: relative; background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 50%, transparent 100%); padding: 40px 36px 32px; color: var(--white); display: flex; flex-direction: column; align-items: center; text-align: center; }

/* Hero sem imagem: layout premium centralizado */
.hero-main--no-img { justify-content: stretch; background: linear-gradient(145deg, #0d0008 0%, #1c0011 45%, #0a0006 100%) !important; }
.hero-main--no-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 28% 55%, rgba(228,50,101,.22) 0%, transparent 62%), radial-gradient(ellipse at 78% 22%, rgba(228,50,101,.10) 0%, transparent 52%); pointer-events: none; }
.hero-main--no-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, transparent 40%, rgba(0,0,0,.3) 100%); pointer-events: none; }
.hero-main--no-img .hero-main-overlay { flex: 1; background: none; justify-content: center; padding: 48px 44px; }

.hero-main-tag { display: inline-block; background: var(--brand); color: white; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 14px; border-radius: 20px; margin-bottom: 18px; }
.hero-main h1 { font-family: var(--font-serif); font-size: 34px; font-weight: 900; line-height: 1.25; margin-bottom: 16px; text-shadow: 0 2px 8px rgba(0,0,0,.4); max-width: 520px; }
.hero-main p { font-size: 15px; opacity: .78; margin-bottom: 20px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; max-width: 460px; }
.hero-meta { font-size: 12px; opacity: .75; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.hero-author-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--brand); border: 2px solid rgba(255,255,255,.4); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: white; flex-shrink: 0; }
.hero-meta-sep { opacity: .35; }

/* Hero secundário — sem imagem, só texto */
.hero-secondary { display: flex; flex-direction: column; justify-content: space-between; height: 100%; gap: 0; }
.hero-card { display: flex; flex-direction: column; gap: 7px; padding: 20px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.hero-card:first-child { padding-top: 2px; }
.hero-card:last-child { border-bottom: none; padding-bottom: 2px; }
.hero-card-img { display: none; }
.hero-card-body { display: flex; flex-direction: column; gap: 6px; }
.hero-card-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); }
.hero-card h3 { font-size: 15px; font-weight: 800; line-height: 1.4; color: var(--black); }
.hero-card h3:hover { color: var(--brand); }
.hero-card-meta { font-size: 11px; color: var(--gray-300); }

/* AD — centralizados em todos os contextos */
.ad-strip { background: var(--gray-100); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; }
.ad-strip .container { display: flex; flex-direction: column; align-items: center; }
.ad-label { font-size: 10px; color: var(--gray-300); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; text-align: center; width: 100%; }
.ad-placeholder { background: #f8f8f8; border: 1px dashed #ccc; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 12px; margin: 0 auto; max-width: 100%; }

/* SECTIONS */
.section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.section-title { font-size: 17px; font-weight: 900; letter-spacing: -0.2px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; color: var(--gray-900); }
.section-title::before { content: ''; width: 3px; height: 18px; background: var(--brand); border-radius: 2px; display: block; }
.section-link { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .04em; transition: opacity .15s; }
.section-link:hover { opacity: .7; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.news-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.news-split { display: grid; grid-template-columns: 1fr 340px; gap: 32px; }

/* NEWS CARDS — typography-first, sem imagem */
.news-card { display: flex; flex-direction: column; gap: 8px; background: var(--white); padding: 20px; position: relative; transition: background .15s; }
.news-card:hover { background: #fafafa; }
.news-card-img { border-radius: 8px; overflow: hidden; height: 160px; background: var(--gray-100); flex-shrink: 0; margin-bottom: 4px; }
.news-card-img img { height: 100%; }
.news-card-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); display: flex; flex-wrap: wrap; gap: 5px; }
.cat-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); }
.cat-tag + .cat-tag::before { content: '·'; margin-right: 5px; opacity: .4; }
.news-card h3 { font-size: 15px; font-weight: 800; line-height: 1.4; letter-spacing: -.1px; }
.news-card h3:hover { color: var(--brand); }
.news-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-meta { font-size: 11px; color: var(--gray-300); display: flex; gap: 10px; margin-top: 4px; }

/* NEWS LIST — Últimas Notícias */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-list-item { display: flex; flex-direction: column; gap: 5px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.news-list-item:first-child { padding-top: 0; }
.news-list-item:last-child { border-bottom: none; }
.news-list-img { display: none; }
.news-list-body { display: flex; flex-direction: column; gap: 4px; }
.news-list-tag { font-size: 10px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .07em; }
.news-list-body h3 { font-size: 14px; font-weight: 700; line-height: 1.45; }
.news-list-body h3:hover { color: var(--brand); }
.news-list-meta { font-size: 11px; color: var(--gray-300); }

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.sidebar-widget-header { background: var(--black); color: var(--white); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 10px 16px; }
.sidebar-widget-body { padding: 16px; }
.top-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.top-list li { display: flex; gap: 12px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--border); }
.top-list li:last-child { border-bottom: none; padding-bottom: 0; }
.top-list-num { font-size: 11px; font-weight: 800; color: var(--brand); min-width: 18px; letter-spacing: .02em; }
.top-list-title { font-size: 13px; font-weight: 600; line-height: 1.4; }
.top-list-title:hover { color: var(--brand); }
.sidebar-ad { display: flex; flex-direction: column; align-items: center; }
.sidebar-ad ins.adsbygoogle { margin: 0 auto; max-width: 100%; }
.sidebar-ad .ad-placeholder { width: 300px; height: 250px; max-width: 100%; margin: 0 auto; }

/* NEWSLETTER */
.newsletter { background: var(--gray-100); padding: 48px 0; }
.newsletter-card { background: var(--black); border-radius: 16px; padding: 40px 48px; color: var(--white); }
.newsletter-inner { display: grid; grid-template-columns: 1.1fr 1fr 1.2fr; gap: 48px; align-items: center; }
.newsletter-badge { display: inline-flex; align-items: center; background: transparent; color: var(--brand); border: 1px solid rgba(228,50,101,.5); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 3px 10px; border-radius: 20px; margin-bottom: 14px; }
.newsletter h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 900; line-height: 1.2; margin-bottom: 10px; }
.newsletter-col-text p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; }
.newsletter-col-perks { display: flex; flex-direction: column; gap: 16px; }
.perk { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.4; }
.perk-check { color: var(--brand); font-size: 15px; font-weight: 900; flex-shrink: 0; line-height: 1.3; }
.newsletter-col-form .newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: flex; gap: 8px; }
.newsletter-input { flex: 1; padding: 11px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: var(--white); font-size: 13px; font-family: var(--font-sans); outline: none; transition: border-color .2s, background .2s; }
.newsletter-input::placeholder { color: rgba(255,255,255,.25); }
.newsletter-input:focus { border-color: var(--brand); background: rgba(255,255,255,.09); }
.newsletter-submit { padding: 11px 20px; background: var(--brand); color: white; border: none; border-radius: 8px; font-weight: 700; font-size: 13px; font-family: var(--font-sans); cursor: pointer; white-space: nowrap; transition: background .15s; }
.newsletter-submit:hover { background: var(--brand-dark); }
.newsletter-fine { font-size: 11px; color: rgba(255,255,255,.25); }

/* ════════════════════════════════════════
   CASES — Seção Evergreen Premium
   ════════════════════════════════════════ */
.section-cases { background: var(--black); padding: 56px 0; border-bottom: none; }
.cases-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 24px; }
.cases-eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--brand); margin-bottom: 10px; }
.cases-section-title { font-family: var(--font-serif); font-size: 30px; font-weight: 900; color: var(--white); letter-spacing: -.4px; line-height: 1.1; margin-bottom: 6px; }
.cases-section-sub { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.5; }
.cases-section-link { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; transition: opacity .15s; }
.cases-section-link:hover { opacity: .75; }

.cases-featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.case-featured-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 14px; cursor: pointer; transition: background .2s, border-color .2s, transform .2s; position: relative; overflow: hidden; }
.case-featured-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--brand), transparent); opacity: 0; transition: opacity .25s; }
.case-featured-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); transform: translateY(-2px); }
.case-featured-card:hover::after { opacity: 1; }
.case-meta-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.case-company-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); background: rgba(228,50,101,.12); border: 1px solid rgba(228,50,101,.2); padding: 3px 9px; border-radius: 4px; }
.case-cat-tag { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.25); }
.case-featured-title { font-size: 19px; font-weight: 800; line-height: 1.35; color: var(--white); letter-spacing: -.2px; }
.case-featured-excerpt { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.case-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.07); margin-top: auto; }
.case-read-time { font-size: 11px; color: rgba(255,255,255,.25); }
.case-read-btn { font-size: 12px; font-weight: 700; color: var(--brand); letter-spacing: -.1px; transition: opacity .15s; }
.case-featured-card:hover .case-read-btn { opacity: .8; }

/* Cases list page cards */
.cases-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.case-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: box-shadow .15s, transform .15s; }
.case-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); transform: translateY(-2px); }
.case-card-img { height: 160px; background: var(--gray-100); overflow: hidden; flex-shrink: 0; }
.case-card-img img { width: 100%; height: 100%; object-fit: cover; }
.case-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.case-company { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); }
.case-card h3 { font-size: 16px; font-weight: 800; line-height: 1.35; letter-spacing: -.1px; }
.case-card h3:hover { color: var(--brand); }
.case-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.case-card-meta { font-size: 11px; color: var(--gray-300); margin-top: 4px; }

/* ALL-NEWS / CASES LIST PAGE */
.list-page-header { background: var(--black); padding: 40px 0 32px; }
.list-page-back { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.6); font-size: 13px; font-weight: 600; margin-bottom: 16px; cursor: pointer; transition: color .15s; background: none; border: none; }
.list-page-back:hover { color: var(--white); }
.list-page-title { font-family: var(--font-serif); font-size: 32px; font-weight: 900; color: var(--white); }
.all-news-item { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); align-items: start; }
.all-news-item:last-child { border-bottom: none; }
.all-news-item-img { border-radius: 8px; overflow: hidden; height: 88px; background: var(--gray-100); flex-shrink: 0; }
.all-news-item-body { display: flex; flex-direction: column; gap: 6px; }
.all-news-item-tag { font-size: 10px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .05em; display: flex; flex-wrap: wrap; gap: 5px; }
.all-news-item-body h3 { font-size: 17px; font-weight: 700; line-height: 1.4; }
.all-news-item-body h3:hover { color: var(--brand); }
.all-news-item-body p { font-size: 14px; color: var(--gray-500); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.all-news-item-meta { font-size: 12px; color: var(--gray-300); display: flex; gap: 12px; }
.cases-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.infinite-loading { text-align: center; padding: 32px; color: var(--gray-300); font-size: 14px; }

/* CASE DETAIL PAGE */
#case-page { display: none; }

/* FOOTER */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.7); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-about .logo-text { color: var(--white); font-size: 22px; }
.footer-about p { font-size: 13px; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: white; transition: background .15s; }
.social-btn:hover { background: var(--brand); color: white; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ARTICLE PAGE */
#article-page { display: none; }
.article-hero { background: var(--black); padding: 48px 0 0; }
.article-ad { max-width: 780px; margin: 0 auto; padding: 24px 20px; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; }
.article-ad-bottom { max-width: 780px; margin: 0 auto; padding: 32px 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; }
.article-ad .ad-label, .article-ad-bottom .ad-label { font-size: 10px; color: var(--gray-300); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.article-ad ins.adsbygoogle, .article-ad-bottom ins.adsbygoogle { margin: 0 auto; max-width: 100%; }
.article-ad-mid { margin: 32px 0; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; }
.article-ad-mid .ad-label { font-size: 10px; color: var(--gray-300); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.article-ad-mid ins.adsbygoogle { margin: 0 auto; max-width: 100%; }
.article-hero-inner { max-width: 780px; margin: 0 auto; padding: 0 20px; }
.article-back { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.6); font-size: 13px; font-weight: 600; margin-bottom: 20px; cursor: pointer; transition: color .15s; }
.article-back:hover { color: var(--white); }
.article-cat-tag { display: inline-block; background: var(--brand); color: white; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 10px; border-radius: 4px; margin-bottom: 16px; }
.article-title { font-family: var(--font-serif); font-size: 36px; font-weight: 900; line-height: 1.2; color: var(--white); margin-bottom: 16px; }
.article-excerpt { font-size: 18px; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 20px; }
.article-byline { display: flex; align-items: center; gap: 20px; font-size: 13px; color: rgba(255,255,255,.5); padding-bottom: 32px; }
.article-byline strong { color: rgba(255,255,255,.8); font-weight: 600; }
.article-cover { width: 100%; max-height: 500px; object-fit: cover; display: block; }
.article-body { max-width: 780px; margin: 0 auto; padding: 40px 20px 20px; }
.article-body h2 { font-family: var(--font-serif); font-size: 24px; font-weight: 700; margin: 32px 0 14px; }
.article-body h3 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; }
.article-body p { font-size: 17px; line-height: 1.8; margin-bottom: 20px; color: var(--gray-700); }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 17px; line-height: 1.8; margin-bottom: 6px; color: var(--gray-700); }
.article-body blockquote { border-left: 4px solid var(--brand); padding: 12px 20px; margin: 24px 0; background: var(--gray-100); border-radius: 0 8px 8px 0; }
.article-body blockquote p { font-style: italic; font-size: 18px; color: var(--gray-700); margin: 0; }
.article-body img { border-radius: 10px; margin: 24px 0; }
.article-body a { color: var(--brand); text-decoration: underline; }
.article-body p:empty { display: none; }

/* SKELETON */
.skel { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: 6px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skel-img { height: 180px; border-radius: 8px; }
.skel-line { height: 14px; margin-bottom: 8px; }
.skel-line.short { width: 60%; }
.skel-line.med { width: 80%; }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 48px 20px; color: var(--gray-300); }
.empty-state .icon { font-size: 40px; margin-bottom: 12px; }

/* TOAST */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--black); color: white; padding: 12px 20px; border-radius: 10px; font-size: 13px; font-weight: 500; animation: toastIn .25s ease; box-shadow: 0 4px 20px rgba(0,0,0,.25); }
.toast.ok  { border-left: 3px solid #4ADE80; }
.toast.err { border-left: 3px solid var(--brand); }
@keyframes toastIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { min-height: 420px; grid-row: auto; }
  .hero-main h1 { font-size: 28px; }
  .hero-secondary { flex-direction: row; flex-wrap: wrap; gap: 16px; margin-top: 20px; height: auto; justify-content: flex-start; }
  .hero-card { flex: 1 1 260px; border-bottom: none; border-right: 1px solid var(--border); padding: 0 16px 0 0; }
  .hero-card:last-child { border-right: none; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .news-grid, .news-grid-3, .news-split,
  .newsletter-inner, .cases-featured-grid, .cases-list-grid, .footer-grid { grid-template-columns: 1fr; }
  .all-news-item { grid-template-columns: 100px 1fr; gap: 14px; }
  .hero-main h1 { font-size: 24px; }
  .article-title { font-size: 26px; }
  .hero-secondary { flex-direction: column; height: auto; justify-content: flex-start; }
  .hero-card { flex: none; border-right: none; border-bottom: 1px solid var(--border); padding: 14px 0; }
  .form-row { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cases-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cases-section-title { font-size: 24px; }
  .case-featured-card { padding: 20px; }
}
@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .newsletter h2 { font-size: 22px; }
  .newsletter-card { padding: 28px 24px; }
  .cases-featured-grid { grid-template-columns: 1fr; }
}
