* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    margin: 0;
    background: #070813;
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    letter-spacing: 0;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    border-radius: 4px;
}

a {
    color: inherit;
}

.page {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 8%, rgba(37, 99, 235, 0.34), transparent 28rem),
        radial-gradient(circle at 84% 4%, rgba(124, 58, 237, 0.32), transparent 28rem),
        radial-gradient(circle at 52% 100%, rgba(14, 165, 233, 0.14), transparent 34rem),
        linear-gradient(180deg, #0c1222 0%, #10081d 48%, #070813 100%);
}

.page::before {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 56% at 50% 0%, #000 55%, transparent 100%);
    opacity: 0.75;
}

.page::after {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.36) 100%);
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.reading-progress__bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #22d3ee, #2563eb, #7c3aed);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.55);
}

.nav,
.article {
    position: relative;
    z-index: 1;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.32s ease, background 0.32s ease, border-color 0.32s ease;
}

.nav.is-compact {
    border-bottom-color: rgba(255, 255, 255, 0.16);
    background: rgba(8, 9, 18, 0.92);
}

.nav.is-hidden {
    transform: translateY(-100%);
}

.article {
    width: min(100% - 2rem, 820px);
    margin: 0 auto;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.brand-link {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.logo {
    height: 2.5rem;
    width: auto;
    max-width: min(100%, 200px);
    object-fit: contain;
    object-position: left;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    font-family: Inter, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cta-link {
    border-radius: 999px;
    background: transparent;
    box-shadow:
        rgba(0, 0, 0, 0) 0 0 0 0,
        rgba(0, 0, 0, 0) 0 0 0 0,
        rgba(59, 130, 246, 0.2) 0 4px 6px -1px,
        rgba(59, 130, 246, 0.2) 0 2px 4px -2px;
    color: #fff;
    padding: 0.875rem 2.25rem;
}

.cta-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-link:hover::before {
    left: 100%;
}

.cta-link:hover {
    filter: brightness(1.05);
    transform: translateY(-1px) scale(1.02);
    box-shadow:
        rgba(0, 0, 0, 0) 0 0 0 0,
        rgba(0, 0, 0, 0) 0 0 0 0,
        rgba(59, 130, 246, 0.3) 0 10px 15px -3px,
        rgba(59, 130, 246, 0.3) 0 4px 6px -4px;
}

.article {
    display: block;
    position: relative;
    padding: 9.25rem 0 7rem;
}

.article > .eyebrow,
.article > h1,
.article > .excerpt,
.article > .meta {
    width: 100%;
}

.article > .content {
    width: 100%;
}

.article::before {
    display: block;
    width: 100%;
    height: 1px;
    margin: 2.35rem 0 2.55rem;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.75), rgba(124, 58, 237, 0.35), transparent);
    content: "";
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(147, 197, 253, 0.32);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #bfdbfe;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin: 0 0 1rem;
    padding: 0.55rem 0.85rem;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #60a5fa;
    box-shadow: 0 0 18px rgba(96, 165, 250, 0.9);
    content: "";
}

h1 {
    max-width: 820px;
    font-size: clamp(2.1rem, 4.2vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: 0;
    margin: 0 0 1rem;
    text-wrap: balance;
}

.excerpt {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.75;
    margin: 0;
    padding-left: 1rem;
    border-left: 2px solid #60a5fa;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.35rem 0 0;
}

.meta span {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.55rem 0.8rem;
}

.hero-image {
    aspect-ratio: 1200 / 630;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.6rem;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
    margin: 0;
    object-fit: cover;
    transform-origin: center;
    will-change: transform;
}

.content {
    max-width: 820px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(226, 232, 240, 0.82);
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.82;
    padding: 0;
    counter-reset: article-section;
}

.post-enhanced .nav,
.post-enhanced .eyebrow,
.post-enhanced h1,
.post-enhanced .excerpt,
.post-enhanced .meta,
.post-enhanced .hero-image,
.post-enhanced .content {
    will-change: opacity, transform;
}

.content::before {
    display: none;
}

.content p {
    margin: 0 0 1.05rem;
}

.guide-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    border: 1px solid rgba(96, 165, 250, 0.16);
    border-radius: 0.75rem;
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.2)),
        radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.12), transparent 16rem);
    margin: 1.45rem 0 1.8rem;
    padding: 0.85rem;
}

.summary-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.035);
    padding: 0.85rem;
}

.summary-item span {
    display: block;
    color: #67e8f9;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.summary-item strong {
    color: #fff;
    font-size: 0.94rem;
    line-height: 1.3;
}

.table-of-contents {
    position: fixed;
    top: 7.3rem;
    right: max(1.5rem, calc((100vw - 1500px) / 2));
    z-index: 2;
    width: 238px;
    border: 1px solid rgba(96, 165, 250, 0.14);
    border-radius: 0.8rem;
    background: rgba(8, 11, 24, 0.82);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 1rem;
}

.table-of-contents strong {
    display: block;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.table-of-contents a {
    display: block;
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    padding: 0.45rem 0;
    text-decoration: none;
}

.table-of-contents a:hover {
    color: #93c5fd;
}

.table-of-contents a.is-active {
    position: relative;
    color: #fff;
}

.table-of-contents a.is-active::before {
    position: absolute;
    top: 50%;
    left: -0.55rem;
    width: 0.22rem;
    height: 1.05rem;
    border-radius: 999px;
    background: #60a5fa;
    box-shadow: 0 0 14px rgba(96, 165, 250, 0.55);
    content: "";
    transform: translateY(-50%);
}

.pull-quote {
    border-left: 2px solid #60a5fa;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.02rem, 1.6vw, 1.22rem);
    font-weight: 760;
    line-height: 1.58;
    margin: 2rem 0;
    padding: 0.25rem 0 0.25rem 1.1rem;
}

.lead {
    color: rgba(241, 245, 249, 0.88);
    font-size: 1.04rem;
    line-height: 1.84;
}

.note,
.example,
.faq-block,
.executive-brief,
.proof-panel,
.rewrite-lab,
.audit-matrix,
.premium-checklist,
.author-card,
.related-guides {
    border: 1px solid rgba(96, 165, 250, 0.16);
    border-radius: 0.65rem;
    margin: 1.3rem 0;
    padding: 1rem 1.05rem;
}

.note {
    background: rgba(96, 165, 250, 0.1);
}

.example {
    background: rgba(255, 255, 255, 0.055);
}

.example strong,
.note strong {
    color: #fff;
}

.checklist {
    display: grid;
    gap: 0.85rem;
    counter-reset: checklist-step;
    margin: 1.45rem 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.9rem;
    min-height: 3.65rem;
    border: 1px solid rgba(147, 197, 253, 0.14);
    border-radius: 0.75rem;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.075), rgba(124, 58, 237, 0.055)),
        rgba(255, 255, 255, 0.025);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    counter-increment: checklist-step;
    margin: 0;
    padding: 0.85rem 1rem;
}

.checklist li::before {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(147, 197, 253, 0.24);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.16);
    color: #bfdbfe;
    content: counter(checklist-step, decimal-leading-zero);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.checklist li::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 999px;
    background: #60a5fa;
    box-shadow: 0 0 14px rgba(96, 165, 250, 0.55);
    content: "";
    transform: translateY(-50%);
}

.faq-block {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.11), rgba(124, 58, 237, 0.1));
}

.executive-brief {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    background: rgba(15, 23, 42, 0.42);
}

.brief-item,
.proof-stat,
.matrix-row,
.related-guides a {
    border: 1px solid rgba(96, 165, 250, 0.14);
    border-radius: 0.55rem;
    background: rgba(2, 6, 23, 0.24);
    padding: 0.9rem;
}

.brief-item span,
.proof-stat span,
.matrix-row span {
    display: block;
    color: #93c5fd;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.brief-item strong,
.proof-stat strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.25;
}

.proof-panel {
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.08)),
        rgba(255, 255, 255, 0.02);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.proof-stat strong {
    font-size: 1.35rem;
}

.rewrite-lab {
    background: rgba(255, 255, 255, 0.05);
}

.rewrite-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.rewrite-columns div {
    border-radius: 0.85rem;
    background: rgba(2, 6, 23, 0.36);
    padding: 1rem;
}

.rewrite-columns strong {
    display: block;
    color: #fff;
    margin-bottom: 0.45rem;
}

.audit-matrix {
    display: grid;
    gap: 0.7rem;
    background: rgba(15, 23, 42, 0.45);
}

.matrix-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1rem;
    align-items: start;
}

.premium-checklist {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1), rgba(37, 99, 235, 0.1));
}

.author-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    border-color: rgba(147, 197, 253, 0.14);
    background: transparent;
    padding: 1rem 0;
    border-width: 1px 0;
    border-radius: 0;
}

.author-card img {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    object-fit: contain;
    padding: 0.28rem;
}

.author-card strong {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.96rem;
    margin-bottom: 0.2rem;
}

.author-card p {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.94rem;
    line-height: 1.65;
    margin: 0;
}

.related-guides {
    display: grid;
    gap: 0.45rem;
    border-color: rgba(147, 197, 253, 0.14);
    background: transparent;
    padding: 1rem 0;
    border-width: 1px 0;
    border-radius: 0;
}

.related-guides h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    margin: 0 0 0.45rem;
    text-transform: uppercase;
}

.related-guides a {
    display: inline-flex;
    width: fit-content;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #93c5fd;
    font-size: 0.98rem;
    padding: 0.25rem 0;
}

.related-guides a::after {
    content: ">";
    color: rgba(147, 197, 253, 0.55);
    margin-left: 0.5rem;
}

.faq-block h3 {
    color: #fff;
    margin-top: 0;
}

.content h2 {
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.25rem, 1.85vw, 1.58rem);
    line-height: 1.28;
    margin: 2.35rem 0 0.75rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-wrap: balance;
    counter-increment: article-section;
}

.content h2::before {
    display: block;
    width: fit-content;
    color: #60a5fa;
    content: counter(article-section, decimal-leading-zero) " /";
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.content h2:first-of-type {
    margin-top: 1rem;
}

.content h3 {
    color: #dbeafe;
    font-size: 1rem;
    margin: 1.6rem 0 0.45rem;
}

.content a {
    color: #93c5fd;
    font-weight: 900;
    text-decoration: none;
}

.content a:hover {
    color: #bfdbfe;
    text-decoration: underline;
}

.content ul,
.content ol {
    margin: 1.2rem 0;
    padding-left: 1.25rem;
}

.content li {
    margin: 0.65rem 0;
    padding-left: 0.2rem;
}

.cta-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 0.9rem;
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.16), transparent 16rem),
        linear-gradient(145deg, rgba(37, 99, 235, 0.13), rgba(15, 23, 42, 0.32));
    margin-top: 2rem;
    padding: 1.45rem;
}

.post-cta-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 5rem 1rem 7rem;
}

.post-cta-section::before {
    position: absolute;
    inset: 50% auto auto 50%;
    width: min(56rem, 90vw);
    height: 16rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.24), rgba(124, 58, 237, 0.22), rgba(236, 72, 153, 0.16));
    content: "";
    filter: blur(90px);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.post-cta-shell {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3rem;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    overflow: hidden;
    padding: 0.3rem;
}

.post-cta-shell::before,
.post-cta-shell::after {
    position: absolute;
    width: 11rem;
    height: 11rem;
    border-radius: 34% 66% 58% 42%;
    content: "";
    opacity: 0.65;
    pointer-events: none;
}

.post-cta-shell::before {
    right: -2.5rem;
    top: -2.2rem;
    background: rgba(255, 255, 255, 0.08);
}

.post-cta-shell::after {
    left: -3.5rem;
    bottom: -3.2rem;
    background: rgba(124, 58, 237, 0.18);
}

.post-cta-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2.75rem;
    background: rgba(10, 11, 20, 0.58);
    padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
    text-align: center;
}

.post-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #bfdbfe;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin-bottom: 1.35rem;
    padding: 0.5rem 0.9rem;
    text-transform: uppercase;
}

.post-cta-badge::before {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #60a5fa;
    content: "";
}

.post-cta-card h2 {
    max-width: 720px;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0;
    margin: 0 auto 1.15rem;
}

.post-cta-card p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.52);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.55;
    margin: 0 auto 2.4rem;
}

.post-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.24);
    color: #0f172a;
    font-weight: 900;
    min-height: 4.2rem;
    padding: 1rem 2.4rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 72px rgba(255, 255, 255, 0.36);
}

.cta-box strong {
    display: block;
    color: #fff;
    font-size: 1.16rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.cta-box p {
    color: rgba(226, 232, 240, 0.76);
    margin-bottom: 0;
}

.cta-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: transparent;
    box-shadow:
        rgba(0, 0, 0, 0) 0 0 0 0,
        rgba(0, 0, 0, 0) 0 0 0 0,
        rgba(59, 130, 246, 0.2) 0 4px 6px -1px,
        rgba(59, 130, 246, 0.2) 0 2px 4px -2px;
    color: #fff;
    margin-top: 1rem;
    padding: 0.78rem 1.15rem;
    text-decoration: none;
}

@media (max-width: 900px) {
    .nav-inner {
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .article {
        display: block;
        padding-top: 7.5rem;
    }

    .article::before {
        display: none;
    }

    .hero-image {
        margin: 1.8rem 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .nav-inner {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .cta-link {
        display: none;
    }
}

@media (max-width: 1240px) {
    .table-of-contents {
        display: none;
    }
}

@media (min-width: 1241px) and (max-width: 1440px) {
    .article {
        margin-left: max(2rem, calc((100vw - 1260px) / 2));
        margin-right: auto;
    }
}

@media (max-width: 760px) {
    .executive-brief,
    .proof-grid,
    .rewrite-columns,
    .matrix-row,
    .guide-summary {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 640px) {
    .nav-inner {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 640px) {
    .logo {
        height: 2rem;
    }

    .article {
        width: min(100% - 1rem, 1180px);
        padding-bottom: 4rem;
    }

    h1 {
        font-size: clamp(2.25rem, 12vw, 3.6rem);
    }

    .hero-image,
    .content,
    .article::before {
        border-radius: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
