:root {
    --bg: #0b0d10;
    --bg-soft: #111419;
    --panel: #15191f;
    --panel-2: #1a1f26;
    --line: rgba(255,255,255,.1);
    --line-strong: rgba(255,255,255,.18);
    --text: #f4f1eb;
    --muted: #a8adb5;
    --subtle: #747b85;
    --accent: #d99a52;
    --accent-rgb: 217,154,82;
    --success: #70b58c;
    --danger: #d97878;
    --shell: 1240px;
    --content: 760px;
    --radius: 10px;
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Manrope", system-ui, sans-serif;
    --gh-font-heading: var(--font-display);
    --gh-font-body: var(--font-body);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--gh-font-body, var(--font-body));
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.shell-narrow { width: min(calc(100% - 48px), 940px); }
.shell-content { width: min(calc(100% - 48px), var(--content)); }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 10px 16px; background: var(--accent); color: #101010; }
.skip-link:focus { top: 16px; }
.eyebrow { display: block; color: var(--accent); font-size: .73rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.button {
    display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px;
    border: 1px solid var(--accent); border-radius: 4px; background: var(--accent); color: #111;
    font-weight: 700; transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); background: #edb36d; }
.button-small { min-height: 38px; padding-inline: 16px; font-size: .84rem; }
.text-button { border: 0; background: none; padding: 0; cursor: pointer; font-weight: 700; }
.text-button span, .arrow-link span, .section-heading > a span { color: var(--accent); margin-left: 7px; transition: margin .2s; }
.text-button:hover span, .arrow-link:hover span, .section-heading > a:hover span { margin-left: 12px; }

/* Header */
.site-header { position: relative; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(11,13,16,.92); backdrop-filter: blur(18px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-logo { max-width: 210px; max-height: 44px; }
.brand-name { color: var(--text); font-family: var(--gh-font-heading, var(--font-display)); font-size: 1.2rem; font-weight: 800; letter-spacing: -.045em; }
.brand-name span { color: var(--accent); }
.brand-mark { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; gap: 2px; }
.brand-mark i { display: block; width: 3px; border-radius: 3px; background: var(--accent); }
.brand-mark i:nth-child(1), .brand-mark i:nth-child(4) { height: 9px; }
.brand-mark i:nth-child(2) { height: 20px; }
.brand-mark i:nth-child(3) { height: 14px; }
.header-panel { display: flex; align-items: center; justify-content: flex-end; gap: 34px; flex: 1; }
.primary-nav .nav { display: flex; align-items: center; gap: 27px; list-style: none; padding: 0; margin: 0; }
.primary-nav .nav a { color: #d2d4d7; font-size: .88rem; font-weight: 600; }
.primary-nav .nav a:hover, .primary-nav .nav-current a { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-button { width: 38px; height: 38px; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.icon-button:hover { color: var(--accent); }
.nav-toggle { display: none; width: 40px; height: 40px; border: 0; background: transparent; position: relative; }
.nav-toggle span { position: absolute; left: 8px; width: 24px; height: 2px; background: currentColor; transition: .25s; }
.nav-toggle span:first-child { top: 15px; }
.nav-toggle span:last-child { top: 23px; }

/* Homepage hero */
.hero { min-height: 630px; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to right, transparent, #000 45%, #000); }
.hero-glow { position: absolute; right: -10%; top: 5%; width: 670px; height: 670px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),.16), transparent 62%); filter: blur(10px); }
.hero-inner { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 50px; position: relative; }
.hero-copy { padding-block: 88px; }
.hero h1 { max-width: 720px; margin: 18px 0 24px; font-family: var(--font-display); font-size: clamp(3.4rem, 6vw, 6.6rem); line-height: .98; letter-spacing: -.065em; }
.hero-copy > p { max-width: 600px; color: var(--muted); font-size: 1.17rem; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; }
.hero-visual { min-height: 470px; position: relative; display: grid; place-items: center; }
.sound-disc { width: 330px; height: 330px; border: 1px solid rgba(var(--accent-rgb),.5); border-radius: 50%; display: grid; place-items: center; box-shadow: 0 0 80px rgba(var(--accent-rgb),.08), inset 0 0 70px rgba(var(--accent-rgb),.06); }
.sound-disc::before, .sound-disc::after { content: ""; position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.sound-disc::before { width: 240px; height: 240px; }
.sound-disc::after { width: 150px; height: 150px; }
.sound-disc span { width: 66px; height: 66px; border: 1px solid var(--accent); border-radius: 50%; background: var(--panel); }
.sound-disc i { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); transform: translate(128px, -48px); box-shadow: 0 0 22px var(--accent); }
.sound-wave { position: absolute; width: 390px; height: 390px; border-radius: 50%; border: 1px solid rgba(255,255,255,.07); }
.wave-two { width: 450px; height: 450px; border-color: rgba(255,255,255,.035); }
.frequency-lines { position: absolute; bottom: 20px; display: flex; align-items: center; gap: 8px; height: 62px; }
.frequency-lines i { width: 3px; background: var(--accent); opacity: .65; border-radius: 2px; }
.frequency-lines i:nth-child(1),.frequency-lines i:nth-child(9){height:12px}.frequency-lines i:nth-child(2),.frequency-lines i:nth-child(8){height:25px}.frequency-lines i:nth-child(3),.frequency-lines i:nth-child(7){height:42px}.frequency-lines i:nth-child(4),.frequency-lines i:nth-child(6){height:55px}.frequency-lines i:nth-child(5){height:32px}

.category-strip { display: grid; grid-template-columns: repeat(5, 1fr); border-inline: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.category-strip a { min-height: 105px; padding: 25px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); font-family: var(--font-display); font-weight: 700; transition: background .2s; }
.category-strip a:last-child { border-right: 0; }
.category-strip a:hover { background: var(--panel); }
.category-strip span { color: var(--accent); font-family: var(--font-body); font-size: .66rem; letter-spacing: .12em; }

.featured { display: grid; grid-template-columns: 1.15fr .85fr; margin-block: 110px; background: var(--panel); border: 1px solid var(--line); }
.featured-image { min-height: 510px; overflow: hidden; background: #08090b; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.featured:hover .featured-image img { transform: scale(1.02); }
.featured-copy { padding: clamp(36px, 6vw, 76px); display: flex; flex-direction: column; justify-content: center; }
.featured-copy h2 { margin: 18px 0; font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 3.35rem); line-height: 1.08; letter-spacing: -.05em; }
.featured-copy > p { color: var(--muted); }
.featured-meta { display: flex; gap: 10px; color: var(--subtle); font-size: .8rem; }
.featured-meta span + span::before { content: "•"; margin-right: 10px; }
.arrow-link { margin-top: 28px; font-weight: 700; }

/* Cards and archives */
.latest, .archive { padding-bottom: 100px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; padding-bottom: 26px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.section-heading > div > span { color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.section-heading h2 { margin: 5px 0 0; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.1; letter-spacing: -.05em; }
.section-heading > a { font-size: .88rem; font-weight: 700; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px 24px; }
.post-card { min-width: 0; }
.post-card-image-link { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--panel); border: 1px solid var(--line); }
.post-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform .45s, filter .45s; }
.post-card:hover .post-card-image { transform: scale(1.035); filter: brightness(1.08); }
.post-card-placeholder { width: 100%; height: 100%; min-height: 220px; display: grid; place-items: center; background: radial-gradient(circle at center, rgba(var(--accent-rgb),.12), transparent 55%), var(--panel); }
.post-card-placeholder .brand-mark { transform: scale(2); opacity: .6; }
.post-card-body { padding-top: 19px; }
.post-card-meta { min-height: 24px; display: flex; justify-content: space-between; gap: 14px; color: var(--subtle); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.post-card-meta a { color: var(--accent); }
.post-card h3 { margin: 8px 0 10px; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.25; letter-spacing: -.03em; }
.post-card h3 a:hover { color: var(--accent); }
.post-card-body > p { margin: 0; color: var(--muted); font-size: .92rem; }
.post-card-footer { display: flex; justify-content: space-between; gap: 12px; padding-top: 15px; margin-top: 18px; border-top: 1px solid var(--line); color: var(--subtle); font-size: .73rem; }
.archive-header { padding-block: 100px 65px; }
.archive-header h1 { max-width: 900px; margin: 16px 0; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.6rem); line-height: 1; letter-spacing: -.065em; }
.archive-header p { max-width: 670px; color: var(--muted); font-size: 1.1rem; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 60px; }
.pagination a { color: var(--accent); font-weight: 700; }

/* Newsletter and footer */
.newsletter { min-height: 270px; margin-bottom: 100px; padding: 50px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border: 1px solid rgba(var(--accent-rgb),.35); background: radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb),.13), transparent 37%), var(--panel); }
.newsletter h2 { margin: 8px 0 4px; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.05em; }
.newsletter p { margin: 0; color: var(--muted); }
.site-footer { border-top: 1px solid var(--line); background: #080a0c; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr 1.2fr; gap: 70px; padding-block: 72px; }
.footer-grid h2 { margin: 0 0 16px; color: var(--subtle); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-brand p, .footer-disclosure p { max-width: 430px; color: var(--muted); font-size: .85rem; }
.footer-nav .nav { list-style: none; margin: 0; padding: 0; columns: 2; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: var(--muted); font-size: .86rem; }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom { min-height: 70px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); color: var(--subtle); font-size: .76rem; }

/* Article */
.article-header { padding-block: 95px 55px; text-align: center; }
.article-kicker { display: flex; justify-content: center; align-items: center; gap: 12px; color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.article-kicker > * + *::before { content: "/"; margin-right: 12px; color: var(--subtle); }
.content-type { color: var(--text); }
.article-header h1 { margin: 20px 0; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.7rem); line-height: 1.02; letter-spacing: -.065em; }
.article-deck { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: 1.18rem; }
.article-byline { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; text-align: left; }
.article-byline img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.article-byline div { display: flex; flex-direction: column; font-size: .76rem; color: var(--subtle); line-height: 1.45; }
.article-byline a { color: var(--text); font-weight: 600; }
.article-feature { margin-bottom: 70px; }
.article-feature img { width: 100%; max-height: 760px; object-fit: cover; }
.article-feature figcaption { margin-top: 10px; color: var(--subtle); font-size: .75rem; text-align: center; }
.article-layout { display: grid; grid-template-columns: 190px minmax(0, var(--content)) 1fr; gap: 48px; align-items: start; }
.article-rail { grid-column: 1; }
.rail-sticky { position: sticky; top: 30px; }
.rail-label { margin: 0 0 13px; color: var(--subtle); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.toc { display: flex; flex-direction: column; border-left: 1px solid var(--line); }
.toc:empty::after { content: "Article overview"; padding-left: 14px; color: var(--subtle); font-size: .78rem; }
.toc a { padding: 5px 0 5px 14px; color: var(--subtle); font-size: .76rem; line-height: 1.35; border-left: 1px solid transparent; margin-left: -1px; }
.toc a:hover, .toc a.is-active { color: var(--accent); border-color: var(--accent); }
.share-row { display: flex; flex-direction: column; gap: 4px; margin-top: 26px; font-size: .72rem; color: var(--subtle); }
.article-main { grid-column: 2; min-width: 0; }
.affiliate-note { margin: 0 0 38px; padding: 15px 18px; border-left: 2px solid var(--accent); background: var(--panel); color: var(--muted); font-size: .78rem; }
.affiliate-note strong { color: var(--text); }
.article-footer { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 36px; margin-top: 60px; border-top: 1px solid var(--line); }
.article-footer a { padding: 5px 10px; border: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.article-footer a:hover { border-color: var(--accent); color: var(--accent); }
.comments { margin-block: 80px; }
.related { margin-block: 110px; }

/* Ghost editor content */
.gh-content { color: #d9d7d2; font-size: 1.06rem; }
.gh-content > * { margin-block: 0 1.55em; }
.gh-content h2, .gh-content h3, .gh-content h4 { color: var(--text); font-family: var(--font-display); line-height: 1.2; letter-spacing: -.035em; scroll-margin-top: 30px; }
.gh-content h2 { margin-top: 2.2em; font-size: 2.15rem; }
.gh-content h3 { margin-top: 1.8em; font-size: 1.55rem; }
.gh-content h4 { font-size: 1.15rem; }
.gh-content a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.gh-content strong { color: var(--text); }
.gh-content blockquote { margin-inline: 0; padding: 22px 28px; border-left: 3px solid var(--accent); background: var(--panel); color: var(--text); font-family: var(--font-display); font-size: 1.2rem; }
.gh-content hr { height: 1px; border: 0; background: var(--line); margin-block: 3em; }
.gh-content img { height: auto; }
.gh-content figcaption { color: var(--subtle); font-size: .76rem; }
.gh-content ul, .gh-content ol { padding-left: 1.25em; }
.gh-content li { margin-bottom: .5em; }
.gh-content table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.gh-content th, .gh-content td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.gh-content th { background: var(--panel-2); color: var(--text); }
.table-scroll { overflow-x: auto; margin-bottom: 1.8em; }
.table-scroll table { min-width: 680px; margin: 0; }
.kg-width-wide { width: min(100vw - 48px, 1040px); margin-left: 50%; transform: translateX(-50%); }
.kg-width-full { width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.kg-image-card img { margin-inline: auto; }
.kg-product-card .kg-product-card-container, .kg-callout-card, .kg-bookmark-container, .kg-file-card-container, .kg-toggle-card { background: var(--panel) !important; border-color: var(--line) !important; color: var(--text) !important; box-shadow: none !important; }
.kg-product-card .kg-product-card-button, .kg-button-card .kg-btn { background: var(--accent) !important; color: #111 !important; font-weight: 700 !important; }
.kg-audio-card { background: var(--panel) !important; color: var(--text) !important; }

/* Authoring components: use in Ghost HTML cards */
.agl-verdict, .agl-product-box, .agl-pros-cons, .agl-key-takeaway { margin-block: 34px; border: 1px solid var(--line-strong); background: var(--panel); color: var(--text); }
.agl-verdict { padding: 30px; border-top: 3px solid var(--accent); }
.agl-verdict__top { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.agl-verdict__label { color: var(--accent); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.agl-score { width: 70px; height: 70px; display: grid; place-items: center; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; }
.agl-score small { font-size: .65rem; color: var(--subtle); }
.agl-product-box { display: grid; grid-template-columns: 190px 1fr; padding: 24px; gap: 26px; }
.agl-product-box img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; }
.agl-product-box h3 { margin-top: 0; }
.agl-buy-button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; background: var(--accent); color: #111 !important; text-decoration: none !important; font-weight: 700; border-radius: 3px; }
.agl-buy-button:hover { background: #edb36d; }
.agl-price-note { color: var(--subtle); font-size: .74rem; }
.agl-pros-cons { display: grid; grid-template-columns: 1fr 1fr; }
.agl-pros-cons > div { padding: 25px; }
.agl-pros-cons > div + div { border-left: 1px solid var(--line); }
.agl-pros-cons h3 { margin-top: 0; font-size: 1rem; }
.agl-pros h3 { color: var(--success); }
.agl-cons h3 { color: var(--danger); }
.agl-key-takeaway { padding: 24px 26px; border-left: 3px solid var(--accent); }
.agl-key-takeaway strong { display: block; margin-bottom: 5px; color: var(--accent); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }

/* Pages */
.page-content { padding-bottom: 100px; }
.author-header { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 38px; padding-block: 90px 70px; }
.author-header img { width: 150px; height: 150px; object-fit: cover; border-radius: 50%; }
.author-header h1 { margin: 8px 0; font-family: var(--font-display); font-size: 3.4rem; letter-spacing: -.055em; }
.author-header p { color: var(--muted); }
.error-page { min-height: 70vh; padding-block: 120px; text-align: center; }
.error-code { display: block; color: rgba(var(--accent-rgb),.13); font-family: var(--font-display); font-size: 9rem; font-weight: 800; line-height: .8; }
.error-page h1 { margin: 18px 0; font-family: var(--font-display); font-size: 3.3rem; letter-spacing: -.05em; }
.error-page p { color: var(--muted); }
.error-page .hero-actions { justify-content: center; }

@media (max-width: 1000px) {
    .nav-toggle { display: block; cursor: pointer; }
    .header-panel { position: absolute; top: 78px; left: 0; right: 0; padding: 26px 24px 30px; display: none; align-items: stretch; flex-direction: column; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
    .header-panel.is-open { display: flex; }
    .primary-nav .nav { flex-direction: column; align-items: flex-start; gap: 14px; }
    .header-actions { border-top: 1px solid var(--line); padding-top: 20px; }
    .hero { min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-copy { padding-bottom: 20px; }
    .hero-visual { min-height: 390px; }
    .sound-disc { width: 270px; height: 270px; }
    .sound-wave { width: 330px; height: 330px; }.wave-two{width:380px;height:380px}
    .category-strip { grid-template-columns: repeat(3, 1fr); }
    .category-strip a:nth-child(3) { border-right: 0; }
    .category-strip a:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
    .featured { grid-template-columns: 1fr; }.featured-image{min-height:430px}
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .article-layout { grid-template-columns: minmax(0, var(--content)); justify-content: center; }
    .article-rail { display: none; }.article-main{grid-column:1}
    .footer-grid { grid-template-columns: 1fr 1fr; }.footer-disclosure{grid-column:1/-1}
}

@media (max-width: 680px) {
    .shell, .shell-narrow, .shell-content { width: min(calc(100% - 30px), var(--shell)); }
    .header-inner { min-height: 68px; }.header-panel{top:68px}.brand-name{font-size:1.05rem}
    .hero::before { background-size: 50px 50px; }
    .hero-copy { padding-top: 65px; }.hero h1{font-size:3.35rem}
    .hero-actions { align-items: flex-start; flex-direction: column; }
    .hero-visual { min-height: 320px; transform: scale(.85); margin-top: -20px; }
    .category-strip { grid-template-columns: 1fr 1fr; }.category-strip a{min-height:85px;padding:18px}
    .category-strip a:nth-child(n) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .category-strip a:nth-child(even) { border-right: 0; }
    .featured { margin-block: 70px; }.featured-image{min-height:260px}.featured-copy{padding:30px}
    .card-grid { grid-template-columns: 1fr; gap: 42px; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 16px; }
    .newsletter { padding: 34px 26px; align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }.footer-disclosure{grid-column:auto}.footer-bottom{align-items:flex-start;flex-direction:column;justify-content:center;gap:4px}
    .article-header { padding-block: 65px 42px; text-align: left; }.article-kicker{justify-content:flex-start}.article-header h1{font-size:2.75rem}.article-byline{display:flex}
    .article-feature { width: 100%; margin-bottom: 45px; }.article-feature figcaption{padding-inline:15px}
    .gh-content { font-size: 1rem; }.gh-content h2{font-size:1.75rem}.gh-content h3{font-size:1.35rem}
    .kg-width-wide, .kg-width-full { width: 100vw; }
    .agl-product-box { grid-template-columns: 1fr; }.agl-product-box img{max-width:220px}.agl-pros-cons{grid-template-columns:1fr}.agl-pros-cons > div + div{border-left:0;border-top:1px solid var(--line)}
    .author-header { grid-template-columns: 1fr; }.author-header h1{font-size:2.7rem}
    .archive-header { padding-block: 70px 45px; }.archive-header h1{font-size:3rem}
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
