/* Variables */
:root {
    --font-main: "Inter", "Segoe UI", sans-serif;
    --container-max: 75rem;
    --container-pad: clamp(1rem, 0.79rem + 0.89vw, 1.5rem);
    --section-space: clamp(1.5rem, 0.97rem + 2.23vw, 2.75rem);
    --block-space: clamp(1rem, 0.68rem + 1.34vw, 1.75rem);
    --cluster-space: clamp(0.75rem, 0.54rem + 0.89vw, 1.25rem);
    --hero-pad: clamp(1.25rem, 0.72rem + 2.23vw, 2.5rem);
    --button-pad-y: clamp(0.85rem, 0.77rem + 0.33vw, 1.04rem);
    --button-pad-x: clamp(1.1rem, 0.62rem + 2.01vw, 2.23rem);
    --radius-soft: clamp(1rem, 0.79rem + 0.89vw, 1.5rem);
    --radius-round: 999px;
    --line-main: 1.5;
    --shadow-soft: 0 1.5rem 3rem rgba(5, 48, 24, 0.3);
    --shadow-card: 0 1rem 2rem rgba(3, 34, 17, 0.26);
    --color-page: #0c5a2a;
    --color-surface: rgba(255, 255, 255, 0.16);
    --color-surface-strong: rgba(246, 255, 223, 0.22);
    --color-border: rgba(255, 224, 92, 0.42);
    --color-text: #fffef6;
    --color-text-muted: rgba(255, 254, 246, 0.88);
    --color-accent: #ffd100;
    --color-accent-strong: #fff07a;
    --color-accent-text: #184114;
    --color-overlay: rgba(4, 44, 20, 0.36);
    --color-footer-line: rgba(255, 224, 92, 0.24);
    --hero-title-size: clamp(1.8rem, 1.39rem + 1.79vw, 2.81rem);
    --hero-copy-size: clamp(0.95rem, 0.9rem + 0.22vw, 1.08rem);
    --body-size: clamp(0.98rem, 0.93rem + 0.22vw, 1.1rem);
    --small-size: clamp(0.88rem, 0.83rem + 0.22vw, 1rem);
}

/* Base */
@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-VariableFont_slnt,wght.woff2") format("woff2");
    font-weight: 100 900;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    font-size: var(--body-size);
    line-height: var(--line-main);
    color: var(--color-text);
    background: var(--color-page);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0;
}

/* Layout */
.page-shell {
    min-height: 100vh;
}

.wrap {
    width: min(100% - (var(--container-pad) * 2), var(--container-max));
    margin: 0 auto;
}

/* Header */
.topbar {
    position: relative;
    padding-block: var(--cluster-space);
}

.topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--cluster-space);
    padding: clamp(0.7rem, 0.59rem + 0.45vw, 0.95rem) clamp(1rem, 0.68rem + 1.34vw, 1.75rem);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-round);
    background: var(--color-surface-strong);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-mark {
    width: clamp(8rem, 6.84rem + 4.91vw, 10.76rem);
    height: auto;
    flex: 0 0 auto;
}

.action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--button-pad-y) var(--button-pad-x);
    border: 1px solid rgba(255, 224, 92, 0.62);
    border-radius: var(--radius-round);
    background: rgba(246, 255, 223, 0.18);
    color: var(--color-text);
    font-size: var(--small-size);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.action-link:hover,
.action-link:focus-visible {
    background: rgba(246, 255, 223, 0.26);
    border-color: rgba(255, 224, 92, 0.86);
    transform: translateY(-1px);
}

.action-link-primary {
    background: var(--color-accent);
    color: var(--color-accent-text);
    border-color: transparent;
    box-shadow: 0 1rem 2rem rgba(255, 209, 0, 0.28);
}

.action-link-primary:hover,
.action-link-primary:focus-visible {
    background: #ffe457;
    color: #10250c;
}

/* Hero */
.hero {
    padding-block: var(--section-space);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-soft);
    background: #0f6a31;
    box-shadow: var(--shadow-soft);
    isolation: isolate;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: var(--color-overlay);
    z-index: 1;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--block-space);
    width: min(100%, 34rem);
    min-height: 100%;
    padding: var(--hero-pad);
    justify-content: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(255, 240, 122, 0.24);
    border-radius: var(--radius-round);
    background: rgba(246, 255, 223, 0.16);
    color: var(--color-accent-strong);
    font-size: var(--small-size);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    font-size: var(--hero-title-size);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.hero-text {
    max-width: 32rem;
    color: var(--color-text-muted);
    font-size: var(--hero-copy-size);
}

/* Footer */
.aop-site-footer {
    padding-block: 0 var(--section-space);
}

.footer-layout {
    display: flex;
    flex-direction: column;
    gap: var(--block-space);
    padding: clamp(1.35rem, 0.98rem + 1.56vw, 2.23rem);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-soft);
    background: rgba(246, 255, 223, 0.14);
    box-shadow: var(--shadow-card);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--cluster-space);
    padding-bottom: var(--block-space);
    border-bottom: 1px solid var(--color-footer-line);
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: var(--small-size);
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--color-accent-strong);
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 0.73rem + 1.12vw, 1.63rem);
    padding-bottom: var(--block-space);
    border-bottom: 1px solid var(--color-footer-line);
}

.footer-logo {
    width: clamp(3rem, 2.58rem + 1.79vw, 4rem);
    height: auto;
}

.footer-badge {
    width: auto;
    height: clamp(2rem, 1.79rem + 0.89vw, 2.5rem);
}

.footer-badge-age {
    height: clamp(2.2rem, 2.03rem + 0.71vw, 2.6rem);
}

.footer-copy {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--small-size);
}

/* Media */
@media screen and (max-width: 820px) {
    .hero-copy {
        width: 100%;
        justify-content: flex-end;
    }

    .footer-badges {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 560px) {
    .eyebrow {
        display: none;
    }
}


/* pages.css merged */
:root {
    --pages-max-width: min(100% - clamp(1rem, 0.42rem + 2.45vw, 2.4rem), 74rem);
    --pages-surface: rgba(255, 255, 255, 0.13);
    --pages-surface-strong: rgba(246, 255, 223, 0.18);
    --pages-surface-soft: rgba(255, 209, 0, 0.12);
    --pages-border: rgba(255, 224, 92, 0.34);
    --pages-border-soft: rgba(255, 255, 255, 0.16);
    --pages-text: rgba(255, 254, 246, 0.9);
    --pages-text-soft: rgba(255, 254, 246, 0.74);
    --pages-title: #fffef6;
    --pages-accent: #ffd100;
    --pages-accent-strong: #ffe103;
    --pages-shadow: 0 1.4rem 3rem rgba(3, 34, 17, 0.24);
}

body.page-body,
body.site-body {
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 209, 0, 0.18), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(246, 255, 223, 0.12), transparent 26%),
        linear-gradient(180deg, #0c5a2a 0%, #0a4d24 54%, #083a1b 100%);
}

.page-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.page-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 209, 0, 0.05) 0, rgba(255, 209, 0, 0) 14%, rgba(255, 209, 0, 0) 86%, rgba(255, 209, 0, 0.05) 100%);
}

.page-main {
    padding: 0 0 clamp(2.4rem, 1.2rem + 4vw, 4.4rem);
}

.page-content {
    width: var(--pages-max-width);
    margin: 0 auto;
    padding: 0;
}

.page-content > section {
    margin-bottom: clamp(1.4rem, 0.98rem + 1.8vw, 2.45rem);
}

.page-content > section:last-of-type {
    margin-bottom: 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    margin: 0 0 0.8rem;
    color: var(--pages-title);
    letter-spacing: -0.02em;
}

.page-content h1 {
    font-size: clamp(2rem, 1.56rem + 1.92vw, 3.05rem);
    line-height: 1.05;
}

.page-content h2 {
    font-size: clamp(1.45rem, 1.18rem + 1.1vw, 2.08rem);
    line-height: 1.16;
}

.page-content h3 {
    font-size: clamp(1.08rem, 0.98rem + 0.45vw, 1.4rem);
    line-height: 1.28;
}

.page-content p,
.page-content li,
.page-content td,
.page-content th {
    color: var(--pages-text);
    font-size: clamp(0.98rem, 0.94rem + 0.18vw, 1.08rem);
    line-height: 1.72;
}

.page-content p {
    margin: 0 0 0.95rem;
}

.page-content p:last-child,
.page-content li p:last-child,
.page-content td p:last-child,
.page-content th p:last-child {
    margin-bottom: 0;
}

.page-content strong {
    color: var(--pages-title);
}

.page-content em {
    color: var(--pages-text-soft);
}

.page-content a {
    color: var(--pages-accent-strong);
    text-decoration-color: rgba(255, 240, 122, 0.46);
    text-underline-offset: 0.18em;
}

.page-content a:hover,
.page-content a:focus-visible {
    color: var(--pages-title);
    text-decoration-color: rgba(255, 240, 122, 0.82);
}

.page-hero {
    margin-bottom: clamp(1.7rem, 1.15rem + 2.35vw, 3rem);
}

.page-hero-copy,
.article-toc,
.article-card,
.article-highlight,
.article-table-wrap,
.spoiler {
    border: 1px solid var(--pages-border);
    border-radius: 1.3rem;
    box-shadow: var(--pages-shadow);
}

.page-hero-copy {
    position: relative;
    padding: clamp(1.3rem, 1rem + 1.35vw, 2rem);
    background:
        linear-gradient(155deg, rgba(255, 209, 0, 0.16), rgba(255, 255, 255, 0.03) 42%, rgba(255, 209, 0, 0.06)),
        var(--pages-surface);
    backdrop-filter: blur(14px);
}

.page-hero-copy::before,
.page-hero-copy::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.page-hero-copy::before {
    top: -2.2rem;
    right: -1.6rem;
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 209, 0, 0.34) 0, rgba(255, 209, 0, 0.06) 42%, transparent 70%);
    filter: blur(3px);
}

.page-hero-copy::after {
    left: 1.1rem;
    bottom: 1rem;
    width: 6rem;
    height: 0.35rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pages-accent), rgba(255, 240, 122, 0));
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.9rem;
    padding: 0.45rem 0.82rem;
    border-radius: 999px;
    background: rgba(246, 255, 223, 0.14);
    color: var(--pages-accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-description {
    margin: 0;
    color: var(--pages-text);
    font-size: clamp(1rem, 0.96rem + 0.28vw, 1.16rem);
}

.article-highlight,
.article-card {
    position: relative;
    padding: clamp(1rem, 0.9rem + 0.4vw, 1.3rem);
    background:
        linear-gradient(145deg, rgba(255, 209, 0, 0.1), rgba(255, 255, 255, 0.02)),
        var(--pages-surface);
}

.article-highlight::before,
.article-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(125deg, rgba(255, 240, 122, 0.18), transparent 20%),
        linear-gradient(305deg, rgba(255, 255, 255, 0.06), transparent 28%);
}

.article-highlight {
    background:
        linear-gradient(145deg, rgba(255, 240, 122, 0.18), rgba(255, 209, 0, 0.08)),
        var(--pages-surface);
}

.article-card-tight {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.article-toc {
    margin-top: 1.2rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 240, 122, 0.08), rgba(255, 240, 122, 0) 48%),
        rgba(8, 58, 27, 0.48);
}

.article-toc-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    padding: 1rem 1.1rem;
    color: var(--pages-title);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
}

.article-toc-title::-webkit-details-marker {
    display: none;
}

.article-toc-title::after {
    content: "+";
    color: var(--pages-accent-strong);
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.article-toc[open] .article-toc-title::after {
    transform: rotate(45deg);
}

.article-toc nav {
    padding: 0 1.1rem 1rem;
    border-top: 1px solid var(--pages-border-soft);
}

.article-toc ol {
    margin: 0;
    padding-left: 1.2rem;
}

.article-toc li {
    margin-bottom: 0.45rem;
}

.article-toc li:last-child {
    margin-bottom: 0;
}

.page-content ul,
.page-content ol {
    margin: 0 0 1rem;
}

.page-content ul {
    list-style: none;
    padding-left: 0;
}

.page-content ul li {
    position: relative;
    margin-bottom: 0.6rem;
    padding-left: 1.35rem;
}

.page-content ul li::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pages-accent), var(--pages-accent-strong));
    transform: translateY(-50%);
}

.page-content ol {
    padding-left: 1.35rem;
}

.page-content ol li {
    margin-bottom: 0.6rem;
    padding-left: 0.12rem;
}

.article-table-wrap {
    margin: 1rem 0 1.2rem;
    overflow-x: auto;
    background:
        linear-gradient(145deg, rgba(255, 240, 122, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(8, 58, 27, 0.6);
}

.article-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    min-width: 42rem;
}

.article-table-wrap th,
.article-table-wrap td {
    padding: 0.9rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--pages-border-soft);
}

.article-table-wrap thead th {
    background: rgba(255, 209, 0, 0.12);
    color: var(--pages-title);
}

.article-table-wrap tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.article-table-wrap tbody tr:last-child td {
    border-bottom: 0;
}

.article-float-media {
    width: min(14rem, 42%);
    margin: 0.15rem 0 0.9rem;
}

.article-float-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 1rem 2rem rgba(3, 34, 17, 0.3);
}

.article-float-media.is-left {
    float: left;
    margin-right: 1.1rem;
}

.article-float-media.is-right {
    float: right;
    margin-left: 1.1rem;
}

.article-float-media::after,
.article-card::after,
.article-highlight::after,
.faq-group::after {
    content: "";
    display: table;
    clear: both;
}

.faq-group {
    margin-top: 1rem;
}

.home-page .page-content > section:not(.page-hero) {
    position: relative;
}

.home-page .page-content > section:not(.page-hero)::before {
    content: "";
    position: absolute;
    top: -0.35rem;
    left: 0;
    width: 4.8rem;
    height: 0.22rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pages-accent), rgba(255, 240, 122, 0));
    opacity: 0.9;
}

.home-page .page-content > section:not(.page-hero):nth-of-type(even)::before {
    left: auto;
    right: 0;
    background: linear-gradient(270deg, var(--pages-accent), rgba(255, 240, 122, 0));
}

.home-page .article-highlight {
    overflow: hidden;
}

.home-page .article-highlight::after {
    content: "";
    position: absolute;
    top: -1.2rem;
    right: -1.2rem;
    width: 6rem;
    height: 6rem;
    border: 1px solid rgba(255, 240, 122, 0.22);
    border-radius: 1.25rem;
    transform: rotate(18deg);
    pointer-events: none;
}

.article-steps {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.95rem;
    margin-top: 0.5rem;
}

.article-step {
    position: relative;
    grid-column: span 6;
    min-height: 100%;
    padding: 1.05rem 1rem 1rem;
    border: 1px solid rgba(255, 240, 122, 0.2);
    border-radius: 1rem;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015) 45%),
        rgba(7, 66, 30, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.article-step::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(255, 240, 122, 0.12), transparent 32%);
}

.article-step--wide {
    grid-column: span 12;
}

.article-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.75rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pages-accent), var(--pages-accent-strong));
    color: #16341a;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0.55rem 1rem rgba(255, 209, 0, 0.2);
}

.article-step h3 {
    max-width: 18ch;
}

.article-step p:last-child {
    margin-bottom: 0;
}

.article-step ul {
    margin-bottom: 0;
}

.article-factor-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.article-factor-media,
.article-factor-intro,
.article-factor-card {
    position: relative;
    grid-column: span 6;
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(255, 240, 122, 0.18);
    border-radius: 1rem;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012) 46%),
        rgba(7, 66, 30, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.article-factor-media {
    grid-column: span 3;
    padding: 0;
    overflow: hidden;
}

.article-factor-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.article-factor-intro {
    grid-column: span 9;
    display: flex;
    align-items: center;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 46%),
        rgba(7, 66, 30, 0.18);
}

.article-factor-intro p {
    margin: 0;
    font-size: clamp(1rem, 0.97rem + 0.22vw, 1.14rem);
}

.article-factor-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(255, 240, 122, 0.12), transparent 34%);
}

.article-factor-card--wide {
    grid-column: span 12;
}

.article-factor-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.7rem;
    padding: 0 0.72rem;
    border-radius: 999px;
    background: rgba(255, 209, 0, 0.14);
    color: var(--pages-accent-strong);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 240, 122, 0.24);
}

.article-factor-card h3 {
    max-width: 20ch;
}

.article-factor-card p:last-child {
    margin-bottom: 0;
}

.home-page .spoiler-toggle:hover,
.home-page .spoiler-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.03);
}

.spoiler {
    margin-bottom: 0.85rem;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 209, 0, 0.12), rgba(255, 255, 255, 0.02)),
        rgba(8, 58, 27, 0.56);
}

.spoiler:last-child {
    margin-bottom: 0;
}

.spoiler-toggle {
    position: relative;
    margin: 0;
    padding: 1rem 3.2rem 1rem 1.05rem;
    color: var(--pages-title);
    font-weight: 700;
    cursor: pointer;
}

.spoiler-toggle::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 1rem;
    color: var(--pages-accent-strong);
    font-size: 1.35rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.spoiler.active .spoiler-toggle::after {
    transform: translateY(-50%) rotate(45deg);
}

.spoiler-content {
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: max-height 0.22s ease, border-color 0.22s ease;
}

.spoiler.active .spoiler-content {
    border-top-color: var(--pages-border-soft);
}

.spoiler-content-inner {
    padding: 0.95rem 1.05rem 1.05rem;
}

.service-page .page-hero-copy {
    background:
        linear-gradient(155deg, rgba(246, 255, 223, 0.08), rgba(255, 255, 255, 0.03) 42%, rgba(255, 209, 0, 0.05)),
        var(--pages-surface);
}

.service-page section:not(.page-hero) {
    padding: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media screen and (max-width: 760px) {
    .article-table-wrap table {
        min-width: 34rem;
    }

    .article-step,
    .article-step--wide {
        grid-column: span 12;
    }

    .article-factor-media,
    .article-factor-intro,
    .article-factor-card,
    .article-factor-card--wide {
        grid-column: span 12;
    }

    .article-factor-media img {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .article-float-media,
    .article-float-media.is-left,
    .article-float-media.is-right {
        float: none;
        width: min(100%, 20rem);
        margin: 0 auto 1rem;
    }
}

@media screen and (max-width: 560px) {
    .page-content {
        padding-top: 0;
    }

    .page-content h1 {
        font-size: clamp(1.75rem, 1.45rem + 1.4vw, 2.2rem);
    }

    .article-table-wrap table {
        min-width: 30rem;
    }

    .spoiler-toggle {
        padding-right: 2.85rem;
    }

    .home-page .page-content > section:not(.page-hero)::before {
        width: 3.5rem;
    }
}
