/* ============================================================
   William Belem de Godoy — Advocacia
   Blog / Artigos Jurídicos — folha de estilo compartilhada
   Mesma identidade do site: royal blue + gold,
   Cormorant Garamond (títulos) + Inter (texto)
   ============================================================ */

:root{
  --royal-900:#0b1d4a;
  --royal-800:#102a6c;
  --royal-700:#1e3a8a;
  --royal-600:#2747a3;
  --gold-500:#d4a017;
  --gold-400:#e3b53b;
  --gold-300:#efd084;
  --silver-100:#f4f5f8;
  --silver-200:#e6e8ee;
  --silver-300:#c8ccd6;
  --silver-500:#8a90a0;
  --silver-700:#4a4f5c;
  --ink-900:#0a0e1a;
  --ink-700:#1f2433;
  --ink-500:#444a5c;
  --white:#ffffff;
  --shadow-soft:0 12px 40px -18px rgba(11,29,74,.22);
  --shadow-strong:0 30px 60px -30px rgba(11,29,74,.45);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  color:var(--ink-700);
  background:var(--white);
  line-height:1.6;
  font-weight:400;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

h1,h2,h3,h4{
  font-family:'Cormorant Garamond',Georgia,serif;
  color:var(--royal-900);
  font-weight:600;
  letter-spacing:-.01em;
  line-height:1.15;
}
h1{font-size:clamp(2.1rem,4.5vw,3.2rem);font-weight:700}
h2{font-size:clamp(1.7rem,3vw,2.3rem)}
h3{font-size:1.35rem}

.eyebrow{
  font-family:'Inter',sans-serif;
  font-size:.78rem;font-weight:600;letter-spacing:.22em;
  text-transform:uppercase;color:var(--gold-500);
  margin-bottom:14px;display:inline-block;
}
.eyebrow::before{
  content:"";display:inline-block;width:32px;height:1px;
  background:var(--gold-500);vertical-align:middle;margin-right:12px;
}

/* ---------- Reading progress ---------- */
.read-progress{
  position:fixed;top:0;left:0;height:3px;width:0;z-index:200;
  background:linear-gradient(90deg,var(--royal-700) 0%,var(--gold-500) 100%);
  transition:width .1s linear;
}

/* ---------- Header (compartilhado) ---------- */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--silver-200);transition:box-shadow .3s ease;
}
.site-header.scrolled{box-shadow:var(--shadow-soft)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:74px}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:42px;height:42px;border-radius:10px;
  background:linear-gradient(135deg,var(--royal-800) 0%,var(--royal-900) 100%);
  display:flex;align-items:center;justify-content:center;
  font-family:'Cormorant Garamond',serif;color:var(--gold-400);
  font-size:1.5rem;font-weight:700;box-shadow:inset 0 0 0 1px rgba(212,160,23,.35);
}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-name{font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-weight:600;color:var(--royal-900)}
.brand-oab{font-size:.7rem;color:var(--silver-500);letter-spacing:.1em;text-transform:uppercase}
nav ul{display:flex;list-style:none;gap:28px;align-items:center}
nav a{font-size:.92rem;font-weight:500;color:var(--ink-700);position:relative;padding:6px 0;transition:color .2s}
nav a:hover{color:var(--royal-700)}
nav a.active{color:var(--royal-800)}
nav a:not(.btn-nav)::after{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--gold-500);transition:width .25s ease}
nav a:not(.btn-nav):hover::after,nav a.active:not(.btn-nav)::after{width:100%}
.btn-nav{
  background:var(--royal-800);color:var(--white)!important;
  padding:11px 22px;border-radius:6px;font-size:.88rem;font-weight:600;
  transition:all .25s ease;border:1px solid var(--royal-800);
}
.btn-nav:hover{background:var(--royal-900);transform:translateY(-1px);box-shadow:var(--shadow-soft)}
.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px}
.menu-toggle span{display:block;width:24px;height:2px;background:var(--royal-900);margin:5px 0;transition:.3s}

/* ---------- Blog hero (index) ---------- */
.blog-hero{
  padding:150px 0 60px;
  background:
    radial-gradient(circle at 85% 15%,rgba(212,160,23,.06) 0%,transparent 45%),
    linear-gradient(180deg,#fafbfd 0%,var(--white) 100%);
}
.blog-hero .eyebrow{margin-bottom:16px}
.blog-hero h1{margin-bottom:20px;max-width:15ch}
.blog-hero .lead{font-size:1.12rem;color:var(--ink-500);max-width:60ch;line-height:1.7}

/* ---------- Breadcrumb ---------- */
.breadcrumb{font-size:.82rem;color:var(--silver-500);margin-bottom:20px;letter-spacing:.02em}
.breadcrumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.breadcrumb a{color:var(--silver-500);transition:color .2s}
.breadcrumb a:hover{color:var(--royal-700)}
.breadcrumb li[aria-current]{color:var(--royal-800);font-weight:500}
.breadcrumb .sep{color:var(--silver-300)}

/* ---------- Article grid (index) ---------- */
.articles-section{padding:20px 0 100px}
.article-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.article-card{
  display:flex;flex-direction:column;background:var(--white);
  border:1px solid var(--silver-200);border-radius:10px;overflow:hidden;
  transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
  position:relative;height:100%;
}
.article-card:hover{transform:translateY(-6px);border-color:var(--royal-800);box-shadow:var(--shadow-strong)}
.article-card:focus-within{border-color:var(--royal-800);box-shadow:var(--shadow-strong)}
.article-thumb{
  aspect-ratio:16/10;position:relative;overflow:hidden;
  background:linear-gradient(135deg,var(--royal-800) 0%,var(--royal-900) 100%);
  display:flex;align-items:center;justify-content:center;
}
.article-thumb::after{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 25% 20%,rgba(212,160,23,.16) 0%,transparent 55%);
}
.article-thumb svg{width:54px;height:54px;color:var(--gold-300);opacity:.85;position:relative;z-index:1}
.article-thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.article-thumb .thumb-tag{
  position:absolute;top:14px;left:14px;z-index:2;
  background:rgba(255,255,255,.92);color:var(--royal-800);
  font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  padding:6px 11px;border-radius:5px;
}
.article-body{padding:26px 26px 28px;display:flex;flex-direction:column;flex:1}
.article-meta{font-size:.76rem;color:var(--silver-500);letter-spacing:.04em;margin-bottom:12px;display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.article-meta .dot{width:3px;height:3px;border-radius:50%;background:var(--silver-300)}
.article-card h2,.article-card h3{font-size:1.3rem;margin-bottom:12px;line-height:1.2}
.article-card h2 a,.article-card h3 a{transition:color .2s}
.article-card:hover h2 a,.article-card:hover h3 a{color:var(--royal-700)}
.article-excerpt{color:var(--ink-500);font-size:.93rem;margin-bottom:20px;flex:1}
.article-readmore{
  font-size:.86rem;font-weight:600;color:var(--royal-800);
  display:inline-flex;align-items:center;gap:7px;margin-top:auto;
}
.article-readmore svg{width:15px;height:15px;transition:transform .25s ease}
.article-card:hover .article-readmore svg{transform:translateX(4px)}
.stretched-link::before{content:"";position:absolute;inset:0;z-index:3}

/* Featured (first card spans 2 cols on desktop) */
.article-card.featured{grid-column:span 2;flex-direction:row}
.article-card.featured .article-thumb{aspect-ratio:auto;min-width:44%;flex:0 0 44%}
.article-card.featured .article-thumb svg{width:70px;height:70px}
.article-card.featured h2{font-size:1.7rem}
.article-card.featured .article-excerpt{font-size:1rem}

/* ---------- Single article layout ---------- */
.post-hero{
  padding:130px 0 46px;
  background:
    radial-gradient(circle at 88% 12%,rgba(212,160,23,.06) 0%,transparent 42%),
    linear-gradient(180deg,#fafbfd 0%,var(--white) 100%);
  border-bottom:1px solid var(--silver-200);
}
.post-hero .tag{
  display:inline-block;background:rgba(11,29,74,.06);color:var(--royal-800);
  font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  padding:7px 13px;border-radius:5px;margin-bottom:20px;
}
.post-hero h1{max-width:22ch;margin-bottom:22px}
.post-hero .post-sub{font-size:1.12rem;color:var(--ink-500);max-width:62ch;line-height:1.7;margin-bottom:26px}
.post-byline{display:flex;align-items:center;gap:14px;flex-wrap:wrap;color:var(--silver-500);font-size:.86rem}
.post-byline .avatar{
  width:44px;height:44px;border-radius:50%;object-fit:cover;
  border:2px solid var(--gold-300);flex-shrink:0;
}
.post-byline strong{color:var(--royal-900);font-weight:600;display:block;font-size:.92rem}
.post-byline .meta-line{display:flex;gap:9px;align-items:center;flex-wrap:wrap;margin-top:2px}
.post-byline .dot{width:3px;height:3px;border-radius:50%;background:var(--silver-300)}

/* Layout: article + sticky TOC */
.post-layout{
  display:grid;grid-template-columns:minmax(0,1fr) 280px;gap:64px;
  padding:56px 0 90px;align-items:start;
}
.post-article{max-width:100%;min-width:0}
.post-figure{max-width:100%;margin:0 0 34px;border-radius:12px;overflow:hidden;border:1px solid var(--silver-200);box-shadow:var(--shadow-soft)}
.post-figure img{width:100%;height:auto;display:block;aspect-ratio:16/9;object-fit:cover}
.post-content{font-size:1.06rem;line-height:1.8;color:var(--ink-700)}
.post-content > *{max-width:68ch}
.post-content .post-lead{font-size:1.2rem;line-height:1.7;color:var(--ink-500);margin-bottom:30px;font-weight:400}
.post-content h2{
  font-size:1.7rem;margin:46px 0 16px;padding-top:10px;scroll-margin-top:100px;
}
.post-content h2::before{
  content:"";display:block;width:44px;height:3px;border-radius:2px;
  background:linear-gradient(90deg,var(--gold-500),var(--gold-300));margin-bottom:16px;
}
.post-content h3{font-size:1.28rem;margin:30px 0 12px;color:var(--royal-800);scroll-margin-top:100px}
.post-content p{margin-bottom:20px}
.post-content a:not(.btn-primary):not(.btn-secondary){
  color:var(--royal-700);font-weight:500;
  border-bottom:1px solid var(--silver-300);transition:border-color .2s,color .2s;
}
.post-content a:not(.btn-primary):not(.btn-secondary):hover{color:var(--royal-900);border-color:var(--royal-700)}
.post-content strong{color:var(--royal-900);font-weight:600}
.post-content ul,.post-content ol{margin:0 0 22px 2px;padding-left:20px}
.post-content li{margin-bottom:10px}
.post-content ul.post-list{list-style:none;padding-left:0}
.post-content ul.post-list li{position:relative;padding-left:28px}
.post-content ul.post-list li::before{
  content:"";position:absolute;left:2px;top:9px;width:7px;height:7px;
  border-radius:50%;background:var(--gold-500);
}

/* Callout box */
.post-callout{
  max-width:68ch;background:var(--silver-100);border:1px solid var(--silver-200);
  border-left:3px solid var(--gold-500);border-radius:8px;
  padding:22px 26px;margin:28px 0;font-size:1rem;line-height:1.7;
}
.post-callout strong:first-child{display:block;color:var(--royal-800);margin-bottom:6px;font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;font-weight:700}
.post-callout.warn{border-left-color:var(--royal-700);background:rgba(30,58,138,.04)}

/* Pull quote */
.post-quote{
  max-width:68ch;font-family:'Cormorant Garamond',serif;font-size:1.5rem;
  line-height:1.4;color:var(--royal-800);font-style:italic;
  padding:8px 0 8px 26px;border-left:3px solid var(--gold-500);margin:32px 0;
}

/* Table */
.post-table-wrap{max-width:68ch;overflow-x:auto;margin:26px 0;border:1px solid var(--silver-200);border-radius:8px}
.post-table-wrap table{border-collapse:collapse;width:100%;font-size:.92rem;min-width:440px}
.post-table-wrap th{
  background:var(--royal-900);color:var(--white);text-align:left;
  padding:13px 16px;font-weight:600;font-size:.82rem;letter-spacing:.03em;
}
.post-table-wrap td{padding:12px 16px;border-top:1px solid var(--silver-200);color:var(--ink-700);vertical-align:top}
.post-table-wrap tr:nth-child(even) td{background:var(--silver-100)}

/* FAQ */
.post-faq{max-width:68ch;margin:12px 0}
.post-faq details{
  border:1px solid var(--silver-200);border-radius:8px;padding:0;margin-bottom:12px;
  background:var(--white);transition:border-color .2s;overflow:hidden;
}
.post-faq details[open]{border-color:var(--silver-300)}
.post-faq summary{
  cursor:pointer;list-style:none;padding:18px 22px;font-weight:600;
  color:var(--royal-900);font-size:1.02rem;display:flex;justify-content:space-between;
  align-items:center;gap:16px;font-family:'Cormorant Garamond',serif;
}
.post-faq summary::-webkit-details-marker{display:none}
.post-faq summary::after{content:"+";font-size:1.5rem;color:var(--gold-500);transition:transform .2s;line-height:1;font-family:'Inter',sans-serif}
.post-faq details[open] summary::after{transform:rotate(45deg)}
.post-faq details p{padding:0 22px 20px;margin:0;color:var(--ink-500);font-size:.98rem;line-height:1.7}

/* Divider */
.post-divider{max-width:68ch;border:none;border-top:1px solid var(--silver-200);margin:44px 0}

/* Author box */
.author-box{
  max-width:68ch;display:flex;gap:22px;align-items:flex-start;
  background:var(--silver-100);border:1px solid var(--silver-200);border-radius:10px;
  padding:28px;margin:40px 0 8px;
}
.author-box img{width:80px;height:80px;border-radius:12px;object-fit:cover;flex-shrink:0;border:1px solid var(--silver-300)}
.author-box .a-name{font-family:'Cormorant Garamond',serif;font-size:1.35rem;color:var(--royal-900);font-weight:600;margin-bottom:2px}
.author-box .a-role{font-size:.78rem;color:var(--gold-500);letter-spacing:.1em;text-transform:uppercase;font-weight:600;margin-bottom:10px}
.author-box p{font-size:.94rem;color:var(--ink-500);line-height:1.6;margin-bottom:14px;max-width:none}
.author-box .a-cta{font-size:.86rem;font-weight:600;color:var(--royal-800);display:inline-flex;align-items:center;gap:7px}
.author-box .a-cta svg{width:15px;height:15px}

/* ---------- Sticky TOC ---------- */
.post-aside{position:sticky;top:100px}
.toc{
  border:1px solid var(--silver-200);border-radius:10px;padding:24px 22px;
  background:var(--white);
}
.toc h4{font-size:.76rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold-500);margin-bottom:16px;font-family:'Inter',sans-serif;font-weight:700}
.toc ol{list-style:none;counter-reset:toc;display:flex;flex-direction:column;gap:2px}
.toc li{counter-increment:toc}
.toc a{
  display:flex;gap:10px;font-size:.88rem;color:var(--ink-500);
  padding:7px 8px;border-radius:6px;line-height:1.4;transition:all .18s ease;
  border-left:2px solid transparent;
}
.toc a::before{content:counter(toc,decimal-leading-zero);color:var(--silver-300);font-weight:600;font-variant-numeric:tabular-nums}
.toc a:hover{background:var(--silver-100);color:var(--royal-800)}
.toc a.active{color:var(--royal-800);font-weight:600;background:rgba(11,29,74,.04);border-left-color:var(--gold-500)}
.toc a.active::before{color:var(--gold-500)}
.aside-cta{
  margin-top:20px;background:linear-gradient(135deg,var(--royal-800) 0%,var(--royal-900) 100%);
  border-radius:10px;padding:26px 22px;color:var(--white);text-align:center;overflow:hidden;position:relative;
}
.aside-cta::before{content:"";position:absolute;top:-40%;right:-30%;width:80%;height:180%;background:radial-gradient(circle,rgba(212,160,23,.14) 0%,transparent 60%)}
.aside-cta h4{color:var(--gold-300);font-family:'Cormorant Garamond',serif;font-size:1.3rem;margin-bottom:8px;position:relative;text-transform:none;letter-spacing:0}
.aside-cta p{font-size:.86rem;color:rgba(255,255,255,.75);margin-bottom:18px;position:relative;line-height:1.6}
.aside-cta a{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;width:100%;
  background:linear-gradient(135deg,#25d366 0%,#1ebc59 100%);color:var(--white);
  padding:13px 18px;border-radius:8px;font-weight:600;font-size:.92rem;position:relative;
  transition:transform .25s ease,box-shadow .25s ease;
}
.aside-cta a:hover{transform:translateY(-2px);box-shadow:0 16px 30px -12px rgba(37,211,102,.6)}
.aside-cta a svg{width:20px;height:20px}

/* ---------- Related / next articles ---------- */
.related{background:var(--silver-100);padding:80px 0}
.related .section-header{text-align:center;max-width:640px;margin:0 auto 48px}
.related .section-header h2{margin-bottom:14px}
.related .section-header p{color:var(--ink-500)}
.related .article-grid{grid-template-columns:repeat(3,1fr)}

/* ---------- Bottom CTA band ---------- */
.cta-band{
  background:linear-gradient(135deg,var(--royal-900) 0%,var(--royal-800) 100%);
  color:var(--white);text-align:center;padding:80px 0;position:relative;overflow:hidden;
}
.cta-band::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 15% 25%,rgba(212,160,23,.08) 0%,transparent 40%),radial-gradient(circle at 85% 75%,rgba(212,160,23,.06) 0%,transparent 40%)}
.cta-band .eyebrow{color:var(--gold-400)}
.cta-band h2{color:var(--white);position:relative;margin-bottom:16px;max-width:22ch;margin-left:auto;margin-right:auto}
.cta-band p{color:rgba(255,255,255,.75);position:relative;max-width:52ch;margin:0 auto 30px}
.cta-band .cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;position:relative}
.btn-primary{
  display:inline-flex;align-items:center;gap:10px;
  background:linear-gradient(135deg,#25d366 0%,#1ebc59 100%);color:var(--white);
  padding:15px 28px;border-radius:8px;font-weight:600;font-size:.98rem;
  transition:all .3s ease;box-shadow:0 14px 30px -12px rgba(37,211,102,.55);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 40px -12px rgba(37,211,102,.7)}
.btn-secondary{
  display:inline-flex;align-items:center;gap:10px;background:transparent;color:var(--white);
  padding:14px 26px;border-radius:8px;font-weight:600;font-size:.95rem;
  border:1.5px solid rgba(255,255,255,.35);transition:all .25s ease;
}
.btn-secondary:hover{border-color:var(--gold-400);background:rgba(255,255,255,.06)}

/* ---------- Footer (compartilhado) ---------- */
footer{background:var(--ink-900);color:rgba(255,255,255,.65);padding:60px 0 30px}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:60px;margin-bottom:48px}
.footer-brand .brand-mark{margin-bottom:18px}
.footer-brand h4{font-family:'Cormorant Garamond',serif;color:var(--white);font-size:1.4rem;margin-bottom:10px;font-weight:600}
.footer-brand p{font-size:.9rem;line-height:1.7;max-width:340px}
.footer-col h5{color:var(--gold-400);font-family:'Inter',sans-serif;font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;margin-bottom:20px;font-weight:600}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:12px;font-size:.92rem}
.footer-col a:hover{color:var(--gold-400)}
.footer-col .contact-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:14px}
.footer-col .contact-item svg{width:16px;height:16px;color:var(--gold-400);margin-top:3px;flex-shrink:0}
.footer-bottom{padding-top:28px;border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:space-between;flex-wrap:wrap;gap:16px;font-size:.82rem;color:rgba(255,255,255,.4)}

/* ---------- WhatsApp float ---------- */
.whatsapp-float{
  position:fixed;bottom:26px;right:26px;z-index:99;width:60px;height:60px;border-radius:50%;
  background:linear-gradient(135deg,#25d366 0%,#1ebc59 100%);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 14px 30px -8px rgba(37,211,102,.55);transition:transform .3s ease;animation:pulse 2.4s infinite;
}
.whatsapp-float:hover{transform:scale(1.08)}
.whatsapp-float svg{width:32px;height:32px;color:var(--white)}
@keyframes pulse{
  0%{box-shadow:0 14px 30px -8px rgba(37,211,102,.55),0 0 0 0 rgba(37,211,102,.6)}
  70%{box-shadow:0 14px 30px -8px rgba(37,211,102,.55),0 0 0 18px rgba(37,211,102,0)}
  100%{box-shadow:0 14px 30px -8px rgba(37,211,102,.55),0 0 0 0 rgba(37,211,102,0)}
}

/* ---------- Reveal ---------- */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .8s cubic-bezier(.16,1,.3,1),transform .8s cubic-bezier(.16,1,.3,1)}
.reveal.visible{opacity:1;transform:translateY(0)}

:focus-visible{outline:2px solid var(--royal-700);outline-offset:3px;border-radius:4px}

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .post-layout{grid-template-columns:1fr;gap:0}
  .post-aside{position:static;margin-bottom:36px;order:-1}
  .toc{display:none}
  .aside-cta{margin-top:0}
  .article-grid,.related .article-grid{grid-template-columns:1fr 1fr}
  .article-card.featured{grid-column:span 2}
  .footer-grid{grid-template-columns:1fr;gap:36px}
  nav ul{display:none;position:absolute;top:74px;left:0;right:0;background:var(--white);
    flex-direction:column;gap:0;padding:20px;border-bottom:1px solid var(--silver-200);box-shadow:var(--shadow-soft)}
  nav ul.open{display:flex}
  nav li{width:100%;text-align:center;padding:12px 0}
  .menu-toggle{display:block}
  .post-content > *,.post-callout,.post-quote,.post-table-wrap,.post-faq,.author-box,.post-divider{max-width:100%}
}
@media (max-width:640px){
  .container{padding:0 20px}
  .article-grid,.related .article-grid{grid-template-columns:1fr}
  .article-card.featured{grid-column:span 1;flex-direction:column}
  .article-card.featured .article-thumb{min-width:0;flex:none;aspect-ratio:16/10}
  .blog-hero{padding:120px 0 40px}
  .post-hero{padding:110px 0 36px}
  .cta-band .cta-actions{flex-direction:column;align-items:stretch}
  .cta-band .cta-actions a{justify-content:center}
  .author-box{flex-direction:column}
}
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none}
}
