:root {
    --bg: #0f1424;
    --card: #171d33;
    --accent: #ff6b6b;
    --accent-deep: #e25555;
    --accent-shadow: #9f2d2d;
    --sky: #7dd3fc;
    --text: #e7e9f2;
    --sub: #9aa3b8;
    --invert: #f7f8fc;
    --ink: #1a2035;
    --ink-sub: #5c657a;
    --border: rgba(125, 211, 252, 0.16);
    --glow: rgba(255, 107, 107, 0.28);
    --radius: 16px;
    --side: 92px;
    --wrap: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans KR", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page {
    margin-left: var(--side);
}

/* ── 좌측 세로 사이드 헤더 ── */
.side-header {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--side);
    height: 100vh;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 1.2rem 0.6rem 1.4rem;
    background: linear-gradient(180deg, #12182c 0%, #0c101c 100%);
    border-right: 1px solid var(--border);
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 6px 16px var(--glow);
}

.brand-name {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
}

.side-nav a {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sub);
    text-align: center;
    padding: 0.45rem 0.2rem;
    border-radius: 10px;
    transition: color 0.2s, background 0.2s;
}

.side-nav a:hover {
    color: var(--sky);
    background: rgba(125, 211, 252, 0.08);
}

.side-cta {
    margin-top: auto;
    writing-mode: vertical-rl;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--accent);
    padding: 0.8rem 0.2rem;
}

/* ── 3D 버튼 ── */
.official-cta-wrap {
    text-align: center;
    padding: 1.6rem 0 0.4rem;
}

.official-cta-wrap--hero {
    text-align: left;
    padding: 1.4rem 0 0;
}

.btn-official-3d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.15rem 2.8rem;
    font-size: 1.12rem;
    font-weight: 800;
    font-family: "Noto Sans KR", sans-serif;
    color: #fff;
    letter-spacing: -0.01em;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    position: relative;
    background: linear-gradient(180deg, #ff8a8a 0%, #ff6b6b 45%, #e25555 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35) inset,
        0 6px 0 var(--accent-shadow),
        0 10px 20px rgba(255, 107, 107, 0.45),
        0 20px 40px rgba(159, 45, 45, 0.22);
    transform: translateY(0);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-official-3d:hover {
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 8px 0 var(--accent-shadow),
        0 14px 28px rgba(255, 107, 107, 0.5),
        0 24px 48px rgba(159, 45, 45, 0.25);
    color: #fff;
}

.btn-official-3d:active {
    transform: translateY(4px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 2px 0 var(--accent-shadow),
        0 4px 12px rgba(255, 107, 107, 0.35);
}

.btn-official-3d svg {
    flex-shrink: 0;
}

/* ── 레이아웃 폭 ── */
.wrap-1200 {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 4.2rem 0 3.4rem;
}

.sec-head {
    margin-bottom: 1.8rem;
    max-width: 760px;
}

.sec-head h2,
.card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.35;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.sec-head p,
.card p {
    font-size: 0.97rem;
    color: var(--sub);
    margin-bottom: 0.9rem;
}

.sec-head.ink h2 {
    color: #c44545;
}

.sec-head.ink p {
    color: var(--ink-sub);
}

/* ── 1. 히어로 풀블리드 ── */
.hero-full {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 2.2rem 3.2rem;
    background:
        radial-gradient(ellipse 70% 80% at 12% 20%, rgba(255, 107, 107, 0.16), transparent 55%),
        radial-gradient(ellipse 50% 60% at 90% 80%, rgba(125, 211, 252, 0.1), transparent 50%),
        linear-gradient(160deg, #0c1222 0%, #0f1424 55%, #141a2e 100%);
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.4rem;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--sky);
    border: 1px solid rgba(125, 211, 252, 0.28);
    background: rgba(125, 211, 252, 0.08);
    border-radius: 999px;
    padding: 0.28rem 0.85rem;
    margin-bottom: 1.1rem;
}

.hero-copy h1 {
    font-size: clamp(1.85rem, 4.2vw, 3rem);
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
    background: linear-gradient(135deg, #fff 10%, var(--sky) 55%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    font-size: 1.02rem;
    color: var(--sub);
    max-width: 38em;
}

.rank-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.rank-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: rgba(23, 29, 51, 0.88);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.rank-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.rank-list li:nth-child(n + 4) .rank-num {
    background: linear-gradient(135deg, #3d4a6b, #2a334d);
}

.rank-meta {
    font-size: 0.82rem;
    color: var(--sky);
    margin-bottom: 0.2rem;
}

.rank-meta b {
    color: var(--text);
    font-weight: 800;
}

.rank-sum {
    font-size: 0.88rem;
    color: var(--sub);
    line-height: 1.55;
}

/* ── 티커 ── */
.ticker {
    overflow: hidden;
    border-block: 1px solid rgba(255, 107, 107, 0.28);
    background: #141b30;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 32s linear infinite;
}

.ticker-track p {
    padding: 0.7rem 3rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #f8c4c4;
    letter-spacing: 0.02em;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── 카드 / hbox / wbox / 체크리스트 ── */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.card-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    border-radius: 12px;
    display: block;
    position: relative;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 14px var(--glow);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hbox {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.12), rgba(125, 211, 252, 0.06));
    border-left: 3px solid var(--accent);
    border-radius: 0 10px 10px 0;
    padding: 1.1rem 1.3rem;
    margin: 1.2rem 0 0;
    font-size: 0.95rem;
    color: var(--text);
}

.hbox strong {
    color: var(--sky);
}

.wbox {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.28);
    border-radius: 10px;
    padding: 1.1rem 1.3rem;
    margin: 1.2rem 0 0;
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.wbox svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.wbox p {
    margin: 0;
    font-size: 0.93rem;
    color: #f4b4b4;
}

.checklist {
    list-style: none;
    margin: 1rem 0 0.4rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(125, 211, 252, 0.1);
    font-size: 0.95rem;
    color: var(--sub);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist strong {
    color: var(--text);
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.quote-box {
    margin: 1.1rem 0;
    padding: 1.1rem 1.2rem 1.1rem 1.4rem;
    border-left: 4px solid var(--sky);
    background: rgba(125, 211, 252, 0.08);
    border-radius: 0 12px 12px 0;
}

.quote-box p {
    margin: 0;
    color: var(--text);
    font-weight: 600;
    font-size: 0.98rem;
}

/* ── 2. 편집형 2단 ── */
.edit-split {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 1.6rem;
    align-items: start;
}

/* ── 엑박 / 이미지 ── */
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #12182b, #1a2340);
    color: var(--sub);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    padding: 1rem;
    border: 1.5px dashed rgba(125, 211, 252, 0.4);
    border-radius: 14px;
    overflow: auto;
}

.prompt-inner {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    line-height: 1.55;
    max-width: 100%;
}

.prompt-inner p {
    margin: 0 0 0.35rem;
    color: var(--sub);
}

.prompt-inner strong {
    color: var(--sky);
}

.figure-about,
.figure-well,
.figure-rev {
    margin: 0;
}

.figure-about figcaption,
.figure-well figcaption,
.figure-rev figcaption {
    margin-top: 0.55rem;
    font-size: 0.8rem;
    color: var(--sub);
}

.invert .figure-well figcaption {
    color: var(--ink-sub);
}

.figure-about img {
    width: 450px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 450 / 600;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.figure-well img {
    width: 390px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 390 / 520;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(26, 32, 53, 0.1);
}

.figure-rev img {
    width: 360px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 360 / 480;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border);
}

/* ── TOC 칩 ── */
.toc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0.4rem 20px 1.2rem;
}

.toc-chips a {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--bg);
    background: var(--sky);
    border-radius: 999px;
    padding: 0.42rem 0.95rem;
    transition: transform 0.15s, background 0.15s;
}

.toc-chips a:hover {
    background: #fff;
    transform: translateY(-1px);
}

/* ── 3. 벤토 ── */
.bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.15fr;
    grid-template-rows: 200px 170px;
    gap: 14px;
}

.bento-tile {
    border-radius: 18px;
    padding: 1.3rem 1.35rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.bento-tile svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: auto;
}

.bento-tile h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0.4rem 0 0.15rem;
}

.tile-loc {
    font-size: 0.82rem;
    color: var(--sky);
    margin: 0;
}

.tile-n {
    font-size: 0.78rem;
    color: var(--sub);
    margin: 0.15rem 0 0;
}

.t-well {
    grid-row: 1 / 3;
    background: linear-gradient(160deg, #1b2744, #151c32);
    color: var(--text);
}

.t-mass {
    background: #1a2238;
}

.t-nightout {
    background: #1e243c;
}

.t-club {
    background: linear-gradient(135deg, #3a1f2c, #221828);
}

.t-lounge {
    background: linear-gradient(135deg, #173044, #152033);
}

.bento-tile:hover {
    border-color: rgba(255, 107, 107, 0.45);
    transform: translateY(-2px);
    transition: transform 0.2s, border-color 0.2s;
}

/* ── 웨이브 ── */
.wave-sep {
    display: block;
    width: 100%;
    height: 48px;
    line-height: 0;
    margin-top: -1px;
}

.wave-flip {
    background: var(--invert);
}

/* ── 4. 밝은 반전 + 2:1 ── */
.invert {
    background: var(--invert);
    color: var(--ink);
}

.grid-21 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.6rem;
    align-items: start;
}

.course-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.course-card {
    background: #fff;
    border: 1px solid rgba(26, 32, 53, 0.08);
    border-radius: 14px;
    padding: 1.15rem 1.2rem;
    box-shadow: 0 8px 24px rgba(26, 32, 53, 0.06);
}

.course-card h3 {
    font-size: 1.02rem;
    color: #c44545;
    margin-bottom: 0.25rem;
}

.course-meta {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2b6b88;
    margin-bottom: 0.45rem;
}

.course-card p:last-child {
    font-size: 0.9rem;
    color: var(--ink-sub);
    line-height: 1.65;
    margin: 0;
}

/* ── 5. 비교표 ── */
.table-scroll {
    overflow-x: auto;
    margin-top: 1.1rem;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.compare-table caption {
    caption-side: bottom;
    text-align: left;
    padding-top: 0.7rem;
    color: var(--sub);
    font-size: 0.8rem;
}

.compare-table th,
.compare-table td {
    padding: 0.85rem 0.9rem;
    text-align: left;
    border-bottom: 1px solid rgba(125, 211, 252, 0.12);
}

.compare-table thead th {
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}

.compare-table tbody td {
    color: var(--text);
    background: #141a2e;
}

.compare-table tbody tr:nth-child(even) td {
    background: #1a2138;
}

/* ── 6. 탭 후기 ── */
.tabs {
    position: relative;
}

.tabs > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tab-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.tab-labels label {
    cursor: pointer;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 0.5rem 1.05rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--sub);
    background: var(--card);
}

#tab-photo:checked ~ .tab-labels label[for="tab-photo"],
#tab-text:checked ~ .tab-labels label[for="tab-text"],
#tab-revisit:checked ~ .tab-labels label[for="tab-revisit"] {
    color: #0f1424;
    background: var(--sky);
    border-color: var(--sky);
}

.panel {
    display: none;
}

#tab-photo:checked ~ .tab-panels .panel-photo,
#tab-text:checked ~ .tab-panels .panel-text,
#tab-revisit:checked ~ .tab-panels .panel-revisit {
    display: grid;
}

.panel-photo {
    grid-template-columns: 2fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

.panel-text,
.panel-revisit {
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.review-cards {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.rev-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
}

.rev-top {
    font-size: 0.84rem;
    color: var(--sky);
    margin-bottom: 0.45rem;
}

.rev-card p:last-child {
    margin: 0;
    color: var(--sub);
    font-size: 0.93rem;
}

/* ── 7. FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.faq-list details {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26, 32, 53, 0.08);
    padding: 0.2rem 1.2rem;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--ink);
    padding: 0.95rem 0;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    color: #c44545;
    font-weight: 900;
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list details p {
    padding: 0 0 1rem;
    color: var(--ink-sub);
    font-size: 0.95rem;
}

/* ── 8. 통계 풀블리드 ── */
.stats-full {
    padding: 4.2rem 0 3.6rem;
    background:
        radial-gradient(ellipse 40% 70% at 80% 20%, rgba(125, 211, 252, 0.1), transparent 55%),
        linear-gradient(180deg, #0b101c 0%, #12182c 100%);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.4rem 1.2rem 1.2rem;
    text-align: left;
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.stat-label {
    margin: 0.35rem 0 0.2rem;
    color: var(--sub);
    font-size: 0.88rem;
}

.stat-delta {
    margin: 0;
    color: var(--sky);
    font-size: 0.8rem;
    font-weight: 700;
}

/* ── 9. CTA + 3단 풋터 ── */
.cta-band {
    text-align: center;
    padding: 3.4rem 1.4rem 2.8rem;
    background:
        linear-gradient(180deg, rgba(255, 107, 107, 0.16), rgba(15, 20, 36, 0.2)),
        #151c30;
    border-top: 1px solid rgba(255, 107, 107, 0.25);
}

.cta-band h2 {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: 900;
    margin-bottom: 0.55rem;
}

.cta-band p {
    color: var(--sub);
}

footer {
    background: linear-gradient(180deg, #12182c 0%, #0a0e18 100%);
    padding: 2.6rem 20px 1.6rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    max-width: var(--wrap);
    margin: 0 auto 1.6rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.4fr;
    gap: 1.8rem;
}

footer h3 {
    font-size: 0.92rem;
    color: var(--sky);
    margin-bottom: 0.7rem;
}

footer ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 0.8rem;
}

footer a:hover {
    color: var(--accent);
}

footer p {
    font-size: 0.88rem;
    color: var(--sub);
}

.copy {
    text-align: center;
    font-size: 0.82rem;
    color: #6d7690;
    padding-top: 0.4rem;
}

/* ── 반응형 640 ── */
@media (max-width: 640px) {
    .page {
        margin-left: 0;
    }

    .side-header {
        position: relative;
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        padding: 0.7rem 0.9rem;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .brand {
        flex-direction: row;
        gap: 0.5rem;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        border-radius: 9px;
    }

    .side-nav,
    .side-cta {
        display: none;
    }

    .hero-full {
        padding: 2.2rem 1rem 2rem;
    }

    .hero-grid,
    .edit-split,
    .grid-21,
    .panel-photo,
    .course-stack,
    .stat-grid,
    .footer-grid,
    .bento {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .bento {
        gap: 10px;
    }

    .t-well {
        grid-row: auto;
        min-height: 180px;
    }

    .bento-tile {
        min-height: 140px;
    }

    .hero-copy h1 {
        font-size: 1.7rem;
    }

    .official-cta-wrap--hero {
        text-align: center;
    }

    .card {
        padding: 1.45rem 1.15rem;
    }

    .card p,
    .sec-head p,
    .hbox,
    .wbox p,
    .checklist li,
    .rev-card,
    .faq-list details p {
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .btn-official-3d {
        padding: 0.95rem 2.1rem;
        font-size: 1.02rem;
        width: 100%;
        max-width: 320px;
    }

    .figure-about,
    .figure-well,
    .figure-rev {
        max-width: 400px;
        margin: 0 auto;
    }

    .figure-about img,
    .figure-well img,
    .figure-rev img {
        width: auto;
        max-width: 400px;
        max-height: 400px;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }

    .section {
        padding: 2.6rem 0 2.2rem;
    }

    .table-scroll {
        margin-left: -4px;
        margin-right: -4px;
    }

    .compare-table {
        min-width: 640px;
    }
}
