:root {
    color-scheme: light;
    --ink: #201923;
    --muted: #6d6471;
    --line: rgba(81, 55, 72, 0.13);
    --panel: rgba(255, 255, 255, 0.82);
    --rose: #f299b2;
    --coral: #f2a38a;
    --peach: #f7c9a9;
    --mint: #87d7c0;
    --blue: #7fa7e8;
    --violet: #9b78c8;
    --plum: #5b486f;
    --shadow: 0 24px 70px rgba(104, 69, 88, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(255, 244, 238, 0.96), rgba(246, 250, 255, 0.96) 45%, rgba(251, 244, 255, 0.96)),
        linear-gradient(90deg, rgba(242, 153, 178, 0.14), rgba(135, 215, 192, 0.12), rgba(127, 167, 232, 0.14));
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(91, 72, 111, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(91, 72, 111, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 74%);
}

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

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

.site-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
}

.site-header {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 950;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(242, 153, 178, 0.32);
}

.brand-name {
    font-size: 24px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
}

.top-nav a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    color: #51475a;
    font-size: 14px;
    font-weight: 850;
    word-break: keep-all;
}

.top-nav a:hover {
    background: #ffffff;
    color: #b94c73;
}

.hero {
    min-height: calc(100vh - 112px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
    align-items: center;
    gap: clamp(28px, 6vw, 82px);
    padding: 26px 0 74px;
}

.eyebrow {
    margin: 0 0 16px;
    color: #b94c73;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.hero-subtitle,
.section-heading h2,
.feature-card h3,
.feature-card p,
.demo-card h3,
.demo-card p,
.button,
.upload-title {
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(46px, 7.4vw, 88px);
    line-height: 1.04;
    letter-spacing: 0;
}

.hero-subtitle {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.6;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 0 22px;
    font-weight: 950;
    border: 1px solid transparent;
}

.button.primary {
    color: #ffffff;
    background: linear-gradient(135deg, #e45f86, #8f78d4);
    box-shadow: 0 16px 34px rgba(228, 95, 134, 0.28);
}

.button.secondary {
    color: #4b4153;
    background: rgba(255, 255, 255, 0.76);
    border-color: var(--line);
}

.analysis-card {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.48)),
        linear-gradient(135deg, rgba(242, 153, 178, 0.18), rgba(135, 215, 192, 0.13), rgba(127, 167, 232, 0.16));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.analysis-card-top,
.analysis-flow,
.season-row,
.hero-palette {
    display: flex;
    align-items: center;
}

.analysis-card-top {
    justify-content: space-between;
    color: #b94c73;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.analysis-card-top strong {
    min-width: 58px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: #e45f86;
    letter-spacing: 0;
}

.photo-preview {
    position: relative;
    min-height: 292px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 245, 248, 0.9), rgba(242, 247, 255, 0.86)),
        repeating-linear-gradient(90deg, rgba(91, 72, 111, 0.05) 0 1px, transparent 1px 24px);
}

.face-illustration {
    position: relative;
    width: 168px;
    height: 198px;
}

.face-hair,
.face-shape,
.face-neck {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.face-hair {
    top: 0;
    width: 142px;
    height: 136px;
    border-radius: 54px 54px 42px 42px;
    background: #3f3249;
}

.face-shape {
    top: 42px;
    width: 112px;
    height: 124px;
    border-radius: 46% 46% 48% 48%;
    background: linear-gradient(160deg, #ffd6bf, #efb39f);
    box-shadow: inset -16px -18px 0 rgba(206, 114, 119, 0.13);
}

.face-neck {
    bottom: 0;
    width: 62px;
    height: 54px;
    border-radius: 0 0 28px 28px;
    background: #efb39f;
}

.scan-line {
    position: absolute;
    left: 9%;
    right: 9%;
    top: 42%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(228, 95, 134, 0.9), transparent);
    box-shadow: 0 0 18px rgba(228, 95, 134, 0.58);
}

.analysis-flow {
    justify-content: space-between;
    gap: 8px;
    color: #5e5367;
    font-size: 13px;
    font-weight: 900;
}

.analysis-flow span {
    min-height: 34px;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.season-row {
    flex-wrap: wrap;
    gap: 8px;
}

.season-chip {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 12px;
    color: #5f5368;
    background: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 900;
}

.season-chip.is-active {
    color: #ffffff;
    background: #e45f86;
}

.hero-palette,
.result-palette {
    gap: 10px;
}

.hero-palette span,
.result-palette span {
    display: block;
    width: 44px;
    height: 44px;
    border: 5px solid #ffffff;
    border-radius: 15px;
    background: var(--chip-color);
    box-shadow: 0 12px 24px rgba(104, 69, 88, 0.14);
}

main > section {
    position: relative;
    z-index: 1;
    overflow: visible;
    isolation: isolate;
    scroll-margin-top: 110px;
}

.trust-section {
    padding: 72px 0 92px;
}

.trust-heading {
    align-items: start;
}

.trust-heading .section-note {
    max-width: 520px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

.trust-card {
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 48px rgba(104, 69, 88, 0.09);
    backdrop-filter: blur(16px);
}

.trust-card span {
    display: inline-flex;
    min-width: 46px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--violet));
    font-weight: 950;
}

.trust-card h3 {
    margin: 28px 0 0;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.24;
    letter-spacing: 0;
    word-break: keep-all;
}

.trust-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
    font-weight: 750;
    word-break: keep-all;
}

.app-preview {
    padding: 58px 0 86px;
}

.app-preview-heading {
    align-items: start;
}

.phone-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

.phone-card {
    min-width: 0;
}

.phone-screen {
    position: relative;
    min-height: 430px;
    display: grid;
    align-content: space-between;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 32px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18)),
        var(--phone-bg, linear-gradient(135deg, #ffd7e4, #dfeaff));
    box-shadow: 0 24px 54px rgba(104, 69, 88, 0.14);
    overflow: hidden;
}

.phone-screen::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    pointer-events: none;
}

.phone-copy {
    position: relative;
    z-index: 2;
}

.phone-copy p {
    margin: 0 0 8px;
    color: rgba(32, 25, 35, 0.62);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.phone-copy h3 {
    max-width: 210px;
    margin: 0;
    color: #201923;
    font-size: clamp(25px, 2.35vw, 34px);
    line-height: 1.06;
    letter-spacing: 0;
    word-break: keep-all;
}

.phone-face {
    position: relative;
    z-index: 1;
    width: 180px;
    height: 220px;
    justify-self: center;
    align-self: end;
}

.phone-hair-shape,
.phone-face-shape {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.phone-hair-shape {
    top: 6px;
    width: 154px;
    height: 170px;
    border-radius: 78px 78px 54px 54px;
    background: var(--hair-color, #704739);
    box-shadow: inset -32px 0 0 rgba(255, 255, 255, 0.18);
}

.phone-face-shape {
    top: 48px;
    width: 112px;
    height: 136px;
    border-radius: 48% 48% 46% 46%;
    background: linear-gradient(160deg, #ffd8c2, #ecad9d);
}

.phone-widget {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    min-height: 64px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 14px 34px rgba(104, 69, 88, 0.12);
}

.phone-widget span {
    min-height: 44px;
    border-radius: 14px;
    background: var(--widget-color, #f299b2);
}

.phone-widget span:nth-child(2) {
    background: var(--widget-color-2, #f7c9a9);
}

.phone-widget span:nth-child(3) {
    background: var(--widget-color-3, #87d7c0);
}

.phone-widget span:nth-child(4) {
    background: var(--widget-color-4, #7fa7e8);
}

.phone-card > p {
    margin: 14px 6px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 750;
    word-break: keep-all;
}

.phone-hair {
    --phone-bg: linear-gradient(145deg, #ffe1ed, #eadcff);
    --hair-color: linear-gradient(90deg, #6d4637 0 48%, #c7a6d7 49% 100%);
    --widget-color: #e98caf;
    --widget-color-2: #c7a6d7;
    --widget-color-3: #5a3f6d;
    --widget-color-4: #9f7bd2;
}

.phone-analysis {
    --phone-bg: linear-gradient(145deg, #ffd9d6, #ffe9c9);
    --hair-color: #8a513c;
    --widget-color: #f5b7a4;
    --widget-color-2: #e9879a;
    --widget-color-3: #9b6a56;
    --widget-color-4: #433c72;
}

.phone-makeup {
    --phone-bg: linear-gradient(145deg, #e5e5ff, #ffdbe5);
    --hair-color: #654536;
    --widget-color: #da7b8f;
    --widget-color-2: #b84068;
    --widget-color-3: #f4b8aa;
    --widget-color-4: #8d5b8c;
}

.phone-style {
    --phone-bg: linear-gradient(145deg, #fff0c9, #ffe1e8);
    --hair-color: #b98654;
    --widget-color: #f7c9a9;
    --widget-color-2: #d8b86f;
    --widget-color-3: #b98f8c;
    --widget-color-4: #87d7c0;
}

.features {
    padding: 72px 0 92px;
}

.section-heading {
    position: relative;
    z-index: 8;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
    overflow: visible;
}

.section-heading h2 {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.16;
    letter-spacing: 0;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.86);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

.feature-card,
.demo-card {
    position: relative;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: 0 18px 48px rgba(104, 69, 88, 0.1);
    backdrop-filter: blur(16px);
}

.feature-card {
    min-height: 286px;
    padding: 24px;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: var(--accent);
}

.feature-rose { --accent: var(--rose); }
.feature-blue { --accent: var(--blue); }
.feature-mint { --accent: var(--mint); }
.feature-violet { --accent: var(--violet); }

.feature-number {
    display: inline-flex;
    min-width: 46px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(91, 72, 111, 0.08);
    color: #4a3e55;
    font-weight: 950;
}

.feature-kicker {
    margin: 34px 0 8px;
    color: #b94c73;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.demo-card .feature-kicker {
    margin-top: 0;
}

.feature-card h3,
.demo-card h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.24;
    letter-spacing: 0;
}

.feature-card p:last-child,
.demo-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 700;
}

.demo-section {
    padding: 72px 0 112px;
}

.demo-heading {
    align-items: start;
}

.section-note {
    max-width: 390px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 750;
    word-break: keep-all;
}

.demo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.result-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
}

.demo-card {
    padding: 24px;
}

.upload-card {
    grid-row: span 2;
}

.upload-zone {
    display: grid;
    place-items: center;
    min-height: 284px;
    margin-top: 18px;
    padding: 24px;
    border: 2px dashed rgba(228, 95, 134, 0.28);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 245, 248, 0.88), rgba(240, 248, 255, 0.82));
    text-align: center;
    cursor: pointer;
}

.upload-zone input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.upload-face {
    width: 74px;
    height: 74px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 36%, #ffd6bf 0 20px, transparent 21px),
        linear-gradient(#e45f86, #e45f86) center 52px / 34px 6px no-repeat,
        linear-gradient(135deg, #fbced9, #dbeafe);
    box-shadow: 0 18px 30px rgba(228, 95, 134, 0.18);
}

.upload-title {
    display: block;
    margin-top: 16px;
    color: #302736;
    font-size: 18px;
    font-weight: 950;
}

.upload-meta,
.upload-status {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.upload-meta {
    display: block;
    margin-top: 7px;
}

.upload-status {
    min-height: 24px;
    margin: 14px 0 0;
    color: #b94c73;
}

.upload-zone.is-ready {
    border-color: rgba(135, 215, 192, 0.72);
    background: linear-gradient(135deg, rgba(232, 255, 248, 0.88), rgba(255, 245, 248, 0.82));
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 13px;
    color: #463b50;
    background: rgba(255, 255, 255, 0.68);
    font-weight: 850;
}

.check-list span {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--mint);
    box-shadow: inset 0 0 0 5px #ffffff;
}

.type-card strong {
    display: inline-flex;
    margin-top: 18px;
    min-height: 42px;
    align-items: center;
    border-radius: 999px;
    padding: 0 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #e45f86, #f2a38a);
    font-size: 20px;
}

.result-summary-card .type-badge {
    display: inline-flex;
    margin-top: 18px;
    min-height: 42px;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 8px;
    border-radius: 999px;
    padding: 0 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #e45f86, #f2a38a);
    font-size: 20px;
}

.type-badge small {
    font-size: 13px;
    font-weight: 900;
    opacity: 0.82;
}

.result-metrics {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
}

.result-metrics div {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.68);
}

.result-metrics dt,
.result-metrics dd {
    margin: 0;
    font-weight: 900;
}

.result-metrics dt {
    color: #7a5166;
}

.result-metrics dd {
    min-width: 0;
    color: #3f3348;
}

.result-metrics dd span {
    color: #7a6f80;
    font-size: 13px;
    font-weight: 850;
}

.confidence {
    margin-top: 20px;
}

.confidence > span,
.confidence > strong {
    display: inline-flex;
    margin-right: 8px;
    color: #45384f;
    font-weight: 950;
}

.confidence > div {
    height: 12px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(91, 72, 111, 0.11);
    overflow: hidden;
}

.confidence > div span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--rose), var(--violet));
}

.palette-card .result-palette {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.result-disclaimer {
    margin: 18px 0 0;
    padding: 16px 18px;
    border: 1px solid rgba(185, 76, 115, 0.18);
    border-radius: 16px;
    color: #6b5263;
    background: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 800;
    word-break: keep-all;
}

.expansion-section {
    padding-top: 58px;
}

@media (max-width: 980px) {
    .hero,
    .demo-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 28px;
    }

    .feature-grid,
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phone-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .upload-card {
        grid-row: auto;
    }

    .result-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .site-shell {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        min-height: 78px;
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0 10px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .brand-name {
        font-size: 21px;
    }

    .top-nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        justify-content: stretch;
        overflow: visible;
        border-radius: 16px;
    }

    .top-nav::-webkit-scrollbar {
        display: none;
    }

    .top-nav a {
        min-width: 0;
        padding: 0 2px;
        font-size: 12px;
    }

    .hero {
        gap: 26px;
        padding: 28px 0 56px;
    }

    .hero h1 {
        font-size: clamp(40px, 12.5vw, 58px);
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .button {
        width: 100%;
    }

    .analysis-card {
        padding: 18px;
        border-radius: 22px;
    }

    .photo-preview {
        min-height: 248px;
    }

    .analysis-flow,
    .season-row {
        align-items: stretch;
    }

    .analysis-flow span,
    .season-chip {
        font-size: 12px;
    }

    .section-heading {
        display: block;
    }

    .trust-section {
        padding-bottom: 58px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .app-preview {
        padding-bottom: 58px;
    }

    .phone-strip {
        display: flex;
        gap: 14px;
        margin-inline: -14px;
        padding-inline: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .phone-strip::-webkit-scrollbar {
        display: none;
    }

    .phone-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }

    .phone-screen {
        min-height: 402px;
        border-radius: 28px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 220px;
        padding: 22px;
    }

    .demo-section {
        padding-bottom: 72px;
    }

    .demo-card {
        padding: 20px;
    }

    .upload-zone {
        min-height: 224px;
        padding: 22px;
    }

    .result-metrics div {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}
