:root { --color-primary:    #006BFF;
--color-primary-hover: #0057D9;
--color-secondary:  #00D4FF;
--color-accent:     #A7FF00;
--color-cta:        #FFD000;
--color-dark:       #03070F;
--color-navy:       #061B3A;
--color-text:       #071A2F;
--color-mid:        #5B6B7D;
--color-border:     #DDE3EC;
--color-light:      #F4F8FF;
--color-surface:    #FFFFFF;
--color-surface-alt:#F8FBFF;
--color-white:      #FFFFFF; --font-heading:     'Bebas Neue', sans-serif;
--font-body:        'Sora', sans-serif;
--font-accent:      'Playfair Display', serif;
--type-h1:          clamp(44px, 7vw, 82px);
--type-h2:          clamp(34px, 5vw, 56px);
--type-h3:          20px;
--type-body:        17px;
--type-small:       14px;
--type-button:      15px;
--font-size-base:   var(--type-body);
--line-height-base: var(--line-height-body);
--line-height-body: 1.75;
--line-height-heading: 1.05; --container-max:    1120px;
--container-content:860px;
--section-pad-desktop: 88px;
--section-pad-mobile: 64px;
--grid-gap:         22px;
--card-padding:     24px;
--section-pad:      var(--section-pad-desktop) 24px;
--radius:           12px;
--radius-sm:        10px;
--radius-md:        14px;
--radius-lg:        20px;
--radius-pill:      999px;
--shadow-soft:      0 12px 34px rgba(2,16,41,.08);
--shadow-strong:    0 28px 70px rgba(0,0,0,.28); --max-width:        var(--container-content);
--max-width-wide:   var(--container-max);
} *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font-body);
font-size: var(--font-size-base);
line-height: var(--line-height-base);
color: var(--color-text);
background: var(--color-white);
-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; } h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
line-height: var(--line-height-heading);
letter-spacing: .03em;
color: var(--color-text);
}
h1 { font-size: var(--type-h1); }
h2 { font-size: var(--type-h2); }
h3 { font-family: var(--font-body); font-size: var(--type-h3); font-weight: 700; letter-spacing: 0; }
h4 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; letter-spacing: 0; }
p { margin-bottom: 1.4em; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.4em; margin-bottom: 1.4em; }
li { margin-bottom: .5em; }
blockquote {
border-left: 4px solid var(--color-primary);
padding: 16px 24px;
background: var(--color-light);
border-radius: 0 var(--radius) var(--radius) 0;
font-style: italic;
color: var(--color-mid);
margin: 1.5em 0;
} table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; font-size: .95rem; }
th { background: var(--color-navy); color: var(--color-white); padding: 12px 16px; text-align: left; font-family: var(--font-body); font-weight: 700; }
td { padding: 11px 16px; border-bottom: 1px solid var(--color-border); }
tr:nth-child(even) td { background: var(--color-light); } .site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: var(--max-width-wide); margin: 0 auto; padding: 0 24px; }
.main-index { padding-top: 60px; padding-bottom: 60px; } .site-header {
background: var(--color-dark);
padding: 0 24px;
position: sticky; top: 0; z-index: 100;
border-bottom: 1px solid rgba(255,255,255,.08);
}
.wk-header-rounded .site-header {
position: absolute;
top: 12px;
left: 50%;
transform: translateX(-50%);
width: min(calc(100% - 32px), var(--max-width-wide));
margin: 0 auto;
background: color-mix(in srgb, var(--color-dark) 84%, transparent);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
border: 1px solid color-mix(in srgb, var(--color-white) 14%, transparent);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-soft);
}
.wk-header-rounded .site-content {
margin-top: 0;
}
.wk-header-square .site-header {
border-radius: 0;
box-shadow: none;
}
.wk-header-transparent .site-header {
position: absolute;
left: 0;
right: 0;
background: linear-gradient(180deg, rgba(3,7,15,.72), rgba(3,7,15,0));
border-bottom: 0;
}
.site-header__inner {
max-width: var(--max-width-wide);
margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
height: 64px;
}
.site-logo img { height: 32px; width: auto; }
.site-logo a { display: flex; align-items: center; }
.site-logo__text {
color: var(--color-white);
font-weight: 900;
letter-spacing: .02em;
text-decoration: none;
display: inline-block;
}
.site-footer .site-logo__text { margin-bottom: 12px; } .site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.8);
letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
transition: color .2s;
}
.site-nav a:hover,
.site-nav a.current { color: var(--color-secondary); text-decoration: none; }
.site-nav__cta {
background: var(--color-primary);
color: var(--color-white) !important;
padding: 9px 22px; border-radius: var(--radius-sm);
font-size: .85rem !important;
}
.site-nav__cta:hover { background: var(--color-primary-hover); color: var(--color-white) !important; } .nav-toggle {
display: none; background: none; border: none; cursor: pointer;
flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
display: block; width: 24px; height: 2px;
background: var(--color-white); border-radius: 2px; transition: .3s;
}
@media (max-width: 991px) {
.nav-toggle { display: flex; }
.site-nav {
display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
z-index: 99; overflow-y: auto;
background: var(--color-dark); flex-direction: column; align-items: flex-start;
padding: 20px 24px; gap: 16px; border-top: 1px solid rgba(255,255,255,.1);
}
.site-nav.open { display: flex; }
.site-nav a,
.da-dropdown-wrapper { width: 100%; }
.da-dropdown-trigger { display: flex; justify-content: space-between; align-items: center; }
.da-dropdown-content {
position: static;
display: block;
width: 100%;
padding-top: 8px;
opacity: 1;
visibility: visible;
transform: none;
}
.da-dropdown-inner {
display: grid;
gap: 8px;
padding-left: 14px;
border-left: 1px solid rgba(255,255,255,.14);
}
.da-dropdown-item {
display: block;
padding: 4px 0;
font-size: .84rem;
}
} .site-footer {
background: var(--color-dark);
padding: 48px 24px 24px;
color: rgba(255,255,255,.65);
border-top: 1px solid rgba(255,255,255,.06);
}
.wk-footer-minimal .site-footer {
padding: 28px 24px;
}
.wk-footer-minimal .site-footer__inner {
grid-template-columns: 1fr;
gap: 20px;
margin-bottom: 20px;
}
.wk-footer-minimal .site-footer__col {
display: none;
}
.wk-footer-centered .site-footer {
text-align: center;
}
.wk-footer-centered .site-footer__inner {
grid-template-columns: 1fr;
max-width: 720px;
}
.wk-footer-centered .site-footer__col ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px 18px;
}
.site-footer__inner {
max-width: var(--max-width-wide); margin: 0 auto;
display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
margin-bottom: 40px;
}
.site-footer__brand img { height: 28px; margin-bottom: 16px; }
.site-footer__brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.5); }
.site-footer__col h4 {
font-family: var(--font-body); font-size: .78rem; font-weight: 700;
letter-spacing: .12em; text-transform: uppercase;
color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col ul li { margin-bottom: 10px; }
.site-footer__col ul li a { font-size: .88rem; color: rgba(255,255,255,.65); text-decoration: none; }
.site-footer__col ul li a:hover { color: var(--color-secondary); }
.site-footer__bottom {
max-width: var(--max-width-wide); margin: 0 auto;
display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
font-size: .82rem; color: rgba(255,255,255,.35);
}
@media (max-width: 640px) {
.wk-header-rounded .site-header {
top: 10px;
width: calc(100% - 24px);
border-radius: var(--radius-md);
}
.site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
.site-footer__bottom { flex-direction: column; text-align: center; }
} .page-content { padding: 60px 0 80px; }
.page-content .entry-title {
font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 32px;
padding-bottom: 20px; border-bottom: 3px solid var(--color-primary);
}
.page-content .entry-body h2 { margin: 2em 0 .8em; color: var(--color-navy); }
.page-content .entry-body h3 { margin: 1.6em 0 .6em; }
.page-content .entry-body p { color: var(--color-mid); }
.page-content .entry-body strong { color: var(--color-text); } .archive-header {
background: var(--color-dark); padding: 60px 24px;
text-align: center; color: var(--color-white);
}
.archive-header__eyebrow {
display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .14em;
text-transform: uppercase; color: var(--color-secondary); margin-bottom: 12px;
}
.archive-header h1 { color: var(--color-white); margin-bottom: 10px; }
.archive-header p { color: rgba(255,255,255,.6); font-size: 1rem; }
.blog-archive { padding-bottom: 80px; }
.blog-empty { max-width: var(--container-content); margin: 60px auto; text-align: center; }
.blog-empty h2 { color: var(--color-text); margin-bottom: 10px; }
.blog-empty p { color: var(--color-mid); }
.archive-grid {
padding: 60px 0 80px;
display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 28px;
}
.archive-grid--list {
display: flex; flex-direction: column; max-width: var(--container-content); margin: 0 auto;
}
.archive-grid--featured_grid .post-card--featured {
grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
}
.archive-grid--featured_grid .post-card--featured .post-card__img { aspect-ratio: auto; min-height: 360px; }
.post-card {
background: var(--color-white); border: 1px solid var(--color-border);
border-radius: var(--radius-lg); overflow: hidden;
transition: box-shadow .2s, transform .2s;
display: flex; flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.post-card__img { aspect-ratio: 16/9; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-card__img img { transform: scale(1.04); }
.post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card__cat {
font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
color: var(--color-primary); margin-bottom: 10px; display: block;
}
.post-card__title { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--color-text); margin-bottom: 10px; line-height: 1.4; }
.post-card--featured .post-card__title { font-family: var(--font-heading); font-size: clamp(1.6rem, 4vw, 2.8rem); line-height: var(--line-height-heading); }
.post-card__title a { color: inherit; text-decoration: none; }
.post-card__title a:hover { color: var(--color-primary); }
.post-card__excerpt { font-size: .88rem; color: var(--color-mid); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.post-card__meta { display: flex; gap: 12px; font-size: .78rem; color: var(--color-mid); margin-top: auto; padding-top: 16px; border-top: 1px solid var(--color-border); }
.post-card--list {
display: grid; grid-template-columns: minmax(320px, 44%) minmax(0, 1fr); align-items: center;
border-left: 5px solid var(--color-primary);
}
.post-card--list .post-card__img { aspect-ratio: 16/9; width: 100%; min-width: 0; min-height: 0; align-self: stretch; }
.post-card--list .post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card--list .post-card__body { padding: 26px 34px; min-width: 0; position: relative; z-index: 1; }
.post-card--list .post-card__title { font-size: 1.22rem; }
.post-card--list .post-card__excerpt { font-size: .95rem; } .pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; }
.pagination a, .pagination span {
display: inline-flex; align-items: center; justify-content: center;
width: 40px; height: 40px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600;
border: 1px solid var(--color-border); color: var(--color-mid); text-decoration: none;
}
.pagination a:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.pagination .current { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }  .single-hero {
background: var(--color-dark); padding: 60px 24px 0;
position: relative; overflow: hidden;
}
.single-hero::before {
content: ''; position: absolute; inset: 0;
background: radial-gradient(circle at 70% 50%, rgba(0,107,255,.2), transparent 60%);
}
.single-hero__inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; }
.single-hero__cat {
display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
text-transform: uppercase; padding: 5px 14px; border-radius: 40px;
background: rgba(0,212,255,.12); color: var(--color-secondary); margin-bottom: 20px;
}
.single-hero__title { font-size: clamp(1.8rem, 5vw, 3rem); color: var(--color-white) !important; margin-bottom: 20px; line-height: 1.1; }
.single-hero__meta {
display: flex; gap: 20px; flex-wrap: wrap; font-size: .82rem;
color: rgba(255,255,255,.55); margin-bottom: 40px; align-items: center;
}
.single-hero__meta span { display: flex; align-items: center; gap: 6px; }
.single-hero__img {
border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden;
}
.single-hero__img img { width: 100%; height: clamp(520px, 42vw, 640px); object-fit: cover; }
.single-hero--editorial {
background: var(--color-surface); color: var(--color-text); padding-top: 72px;
}
.single-hero--editorial::before { background: linear-gradient(90deg, rgba(0,107,255,.08), transparent 60%); }
.single-hero--editorial .single-hero__title { color: var(--color-text) !important; max-width: 840px; }
.single-hero--editorial .single-hero__meta { color: var(--color-mid); }
.single-hero--editorial .single-hero__img {
border-radius: var(--radius-lg); margin-top: 18px; box-shadow: var(--shadow-soft);
}
.single-hero--seo_aeo .single-hero__inner::before {
content: ''; display: block; width: 68px; height: 4px; border-radius: var(--radius-pill);
background: var(--color-secondary); margin-bottom: 18px;
} .quick-answer {
background: linear-gradient(135deg, var(--color-navy), var(--color-dark));
border-left: 4px solid var(--color-secondary);
border-radius: 0 var(--radius) var(--radius) 0;
padding: 24px 28px; margin: 40px 0;
}
.quick-answer__label {
font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
color: var(--color-secondary); margin-bottom: 10px; display: block;
}
.quick-answer__text { font-size: 1rem; color: rgba(255,255,255,.85) !important; line-height: 1.75; }
.wk-post--editorial .quick-answer {
background: var(--color-light); border-left-color: var(--color-primary);
box-shadow: inset 0 0 0 1px var(--color-border);
}
.wk-post--editorial .quick-answer__label { color: var(--color-primary); }
.wk-post--editorial .quick-answer__text { color: var(--color-text) !important; } .toc {
background: var(--color-light); border: 1px solid var(--color-border);
border-radius: var(--radius); padding: 24px 28px; margin: 36px 0;
}
.toc__title {
font-family: var(--font-body); font-size: .78rem; font-weight: 700;
letter-spacing: .14em; text-transform: uppercase; color: var(--color-primary);
margin-bottom: 14px; display: block;
}
.toc ol { margin: 0; padding-left: 1.2em; }
.toc ol li { margin-bottom: 8px; }
.toc ol li a { font-size: .9rem; color: var(--color-text); font-weight: 500; }
.toc ol li a:hover { color: var(--color-primary); } .single-body { padding: 48px 24px 0; }
.single-body__inner { max-width: var(--max-width); margin: 0 auto; }
.single-body--editorial .single-body__inner,
.single-body--seo_aeo .single-body__inner { max-width: var(--container-content); }
.single-body h2 { color: var(--color-navy) !important; margin: 2.2em 0 .8em; padding-bottom: 10px; border-bottom: 2px solid var(--color-border); }
.single-body h3 { color: var(--color-text) !important; margin: 1.8em 0 .6em; }
.single-body h4 { color: var(--color-text) !important; margin: 1.4em 0 .5em; }
.single-body p { color: var(--color-mid) !important; font-size: var(--type-body); line-height: var(--line-height-body); }
.single-body p strong { color: var(--color-text) !important; }
.single-body ul, .single-body ol { padding-left: 1.25em; }
.single-body ul li, .single-body ol li { color: var(--color-mid); margin-bottom: .7em; line-height: var(--line-height-body); }
.single-body a { color: var(--color-primary); text-decoration: underline; }
.single-body blockquote {
margin: 36px 0; padding: 22px 26px; border-left: 4px solid var(--color-primary);
background: var(--color-light); border-radius: 0 var(--radius-md) var(--radius-md) 0;
color: var(--color-text);
}
.single-body table {
width: 100%; border-collapse: collapse; margin: 32px 0; font-size: .94rem;
border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden;
}
.single-body th, .single-body td { padding: 14px 16px; border-bottom: 1px solid var(--color-border); text-align: left; vertical-align: top; }
.single-body th { background: var(--color-light); color: var(--color-text); font-weight: 800; }
.single-body tr:last-child td { border-bottom: none; }
.wk-post--seo_aeo .single-body h2 {
border-bottom: none; padding-bottom: 0; position: relative;
}
.wk-post--seo_aeo .single-body h2::before {
content: ''; display: block; width: 42px; height: 3px; background: var(--color-primary);
border-radius: var(--radius-pill); margin-bottom: 12px;
} .post-summary {
background: var(--color-navy); border-radius: var(--radius-lg);
padding: 32px; margin: 48px 0 0;
}
.post-summary__label {
font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
color: var(--color-secondary); margin-bottom: 14px; display: block;
}
.post-summary__text { font-size: .97rem; color: rgba(255,255,255,.8) !important; line-height: 1.8; }
.post-summary__text p { color: rgba(255,255,255,.8) !important; margin-bottom: .8em; }
.post-summary__text p:last-child { margin-bottom: 0; } .post-faq { padding: 48px 24px; background: var(--color-light); margin-top: 48px; }
.post-faq__inner { max-width: var(--max-width); margin: 0 auto; }
.post-faq__title {
font-family: var(--font-heading); font-size: clamp(1.6rem, 4vw, 2.2rem);
color: var(--color-text) !important; margin-bottom: 8px; letter-spacing: .03em;
}
.post-faq__sub { font-size: .88rem; color: var(--color-mid); margin-bottom: 32px; }
.post-faq__list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__q {
width: 100%; background: none; border: none; cursor: pointer;
display: flex; justify-content: space-between; align-items: center;
padding: 20px 0; text-align: left; gap: 16px;
font-family: var(--font-body); font-size: .97rem; font-weight: 600;
color: var(--color-text) !important; outline: none;
}
.faq-item__q:hover { color: var(--color-primary) !important; }
.faq-item__arrow { color: var(--color-primary); font-size: 1.2rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-item__arrow { transform: rotate(180deg); }
.faq-item__a { display: none; padding: 0 0 20px; }
.faq-item.open .faq-item__a { display: block; }
.faq-item__a p { font-size: .92rem; color: var(--color-mid) !important; line-height: 1.8; } .post-cta {
background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-navy) 100%);
padding: 48px 32px; border-radius: var(--radius-lg);
text-align: center; margin: 0 24px 48px; position: relative; overflow: hidden;
}
.post-cta::before {
content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
background: radial-gradient(circle, rgba(0,107,255,.25), transparent 70%);
top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.post-cta__inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.post-cta__title { font-family: var(--font-heading); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--color-white) !important; letter-spacing: .04em; margin-bottom: 12px; }
.post-cta__desc { font-size: .92rem; color: rgba(255,255,255,.65) !important; line-height: 1.7; margin-bottom: 24px; }
.post-cta__btn {
display: inline-block; background: var(--color-cta); color: var(--color-dark) !important;
font-family: var(--font-body); font-weight: 800; font-size: 1rem;
padding: 16px 36px; border-radius: var(--radius-sm); text-decoration: none;
box-shadow: var(--shadow-soft); transition: transform .2s, box-shadow .2s;
}
.post-cta__btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); text-decoration: none; } .post-sources { padding: 0 24px 48px; }
.post-sources__inner { max-width: var(--max-width); margin: 0 auto; }
.post-sources__title {
font-family: var(--font-body); font-size: .78rem; font-weight: 700;
letter-spacing: .14em; text-transform: uppercase; color: var(--color-mid);
margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--color-border);
}
.post-sources__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.post-sources__list li::before { content: '↗ '; color: var(--color-primary); }
.post-sources__list a { font-size: .85rem; color: var(--color-primary); } .related-posts { background: var(--color-white); padding: 48px 24px; border-top: 1px solid var(--color-border); }
.related-posts__inner { max-width: var(--max-width-wide); margin: 0 auto; }
.related-posts__title { font-size: 1.1rem; font-weight: 700; color: var(--color-text) !important; margin-bottom: 24px; }
.related-posts__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 820px) {
.archive-grid--featured_grid .post-card--featured,
.post-card--list { grid-template-columns: 1fr; }
.post-card--list .post-card__img { aspect-ratio: 16/9; }
}
@media (max-width: 640px) { .related-posts__grid { grid-template-columns: 1fr; } } .btn {
display: inline-block; font-family: var(--font-body); font-weight: 700;
font-size: .95rem; padding: 14px 32px; border-radius: var(--radius-sm); text-decoration: none;
cursor: pointer; border: none; transition: transform .2s, box-shadow .2s;
}
.btn--primary {
background: var(--color-primary); color: var(--color-white) !important;
box-shadow: var(--shadow-soft);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); text-decoration: none; }
.btn--cta {
background: var(--color-cta); color: var(--color-dark) !important;
box-shadow: var(--shadow-soft);
}
.btn--cta:hover { transform: translateY(-2px); text-decoration: none; } .page-404 { text-align: center; padding: 120px 24px; }
.page-404 h1 { font-size: 8rem; color: var(--color-primary); line-height: 1; margin-bottom: 0; }
.page-404 h2 { color: var(--color-text) !important; margin-bottom: 16px; }
.page-404 p { color: var(--color-mid); margin-bottom: 32px; } @media (max-width: 480px) {
:root { --font-size-base: 16px; }
.single-hero { padding: 40px 16px 0; }
.single-hero__img img { height: clamp(320px, 72vw, 420px); }
.single-body { padding: 32px 16px 0; }
.post-cta { padding: 36px 20px; margin: 0 0 40px; }
.post-faq { padding: 40px 16px; }
.post-sources { padding: 0 16px 40px; }
.quick-answer { padding: 20px; }
.toc { padding: 20px; }
.archive-grid { grid-template-columns: 1fr; }
}