@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,500;6..72,700&display=swap");

/* AloxBook Website - Style Sheet
    Brand direction: light, calm, welcoming
    Design: readable, warm, responsive */

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2f7d73;
    --color-primary-dark: #235e58;
    --color-primary-soft: #e4f3ee;
    --color-secondary: #c77a57;
    --color-bg: #fbf7ef;
    --color-bg-alt: #eef5ef;
    --color-bg-card: rgba(255, 255, 255, 0.78);
    --color-bg-card-hover: rgba(255, 255, 255, 0.95);
    --color-text: #32433f;
    --color-text-muted: #667874;
    --color-text-heading: #1f2d2a;
    --color-border: rgba(67, 98, 92, 0.16);
    --color-border-strong: rgba(67, 98, 92, 0.28);
    --color-accent: var(--color-primary);
    --gradient: linear-gradient(135deg, var(--color-primary-dark), var(--color-secondary));
    --font: 'Manrope', 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Newsreader', Georgia, serif;
    --font-mono: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
    --max-width: 1100px;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 18px 45px rgba(58, 72, 66, 0.10);
    --shadow-lg: 0 28px 65px rgba(58, 72, 66, 0.14);
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 88px;
}

body {
    font-family: var(--font);
    background:
        radial-gradient(circle at top left, rgba(210, 232, 222, 0.45), transparent 36%),
        radial-gradient(circle at top right, rgba(246, 221, 203, 0.5), transparent 34%),
        linear-gradient(180deg, #fffdf8 0%, var(--color-bg) 48%, #f7fbf8 100%);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: rgba(47, 125, 115, 0.18);
    color: var(--color-text-heading);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* === Layout === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

/* === Navigation === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 243, 0.84);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-heading);
    text-decoration: none;
}

.nav-brand img {
    width: 100px;
    height: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition);
}
.nav-links a:hover {
    color: var(--color-primary-dark);
}

/* === Language Switcher === */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--color-border);
}

.lang-link {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all var(--transition);
    text-decoration: none;
}

.lang-link:hover {
    color: var(--color-text-heading);
    background: rgba(47, 125, 115, 0.09);
}

.lang-link.active {
    color: var(--color-text-heading);
    background: rgba(47, 125, 115, 0.14);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    transition: var(--transition);
}

/* === Hero Section === */
.hero {
    padding: 9.5rem 0 5.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(226, 242, 235, 0.95) 0%, rgba(226, 242, 235, 0) 36%),
        radial-gradient(circle at 82% 16%, rgba(249, 228, 214, 0.88) 0%, rgba(249, 228, 214, 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.34) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 1rem;
    width: min(920px, 92vw);
    height: 250px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 125, 115, 0.08) 0%, rgba(47, 125, 115, 0) 70%);
    pointer-events: none;
}

.hero > * {
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-border-strong);
    box-shadow: 0 10px 24px rgba(67, 98, 92, 0.08);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.8rem);
    font-weight: 700;
    color: var(--color-text-heading);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-showcase,
.hero-screenshot {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    padding: 0.65rem;
}

.hero-showcase {
    margin-top: 1rem;
}

.hero-showcase img,
.hero-screenshot img {
    display: block;
    width: 100%;
    border-radius: calc(var(--radius) - 8px);
}

/* Placeholder for screenshot */
.screenshot-placeholder {
    background: var(--color-bg-card);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius);
    padding: 4rem 2rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 900px;
    margin: 0 auto;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary-dark);
    color: white;
    box-shadow: 0 14px 30px rgba(35, 94, 88, 0.18);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(35, 94, 88, 0.24);
    color: white;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-text-heading);
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 22px rgba(58, 72, 66, 0.06);
}
.btn-outline:hover {
    border-color: var(--color-border-strong);
    color: var(--color-text-heading);
    background: rgba(255, 255, 255, 0.94);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-heading);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 660px;
    margin: 0 auto;
}

/* === Features Grid === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.85rem;
    transition: all var(--transition);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}
.feature-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-strong);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.95rem;
    display: inline-block;
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    background: rgba(47, 125, 115, 0.1);
    border-radius: var(--radius-sm);
}

.feature-card:nth-child(2) .feature-icon,
.download-card:nth-child(2) .download-card-icon {
    background: rgba(199, 122, 87, 0.14);
    color: var(--color-secondary);
}

.feature-card:nth-child(3) .feature-icon,
.download-card:nth-child(3) .download-card-icon {
    background: rgba(113, 143, 210, 0.14);
    color: #5976b6;
}

.feature-card:nth-child(4) .feature-icon {
    background: rgba(210, 164, 91, 0.14);
    color: #9f6e1d;
}

.feature-card:nth-child(5) .feature-icon {
    background: rgba(111, 178, 157, 0.16);
    color: #2f7d73;
}

.feature-card:nth-child(6) .feature-icon {
    background: rgba(151, 120, 176, 0.13);
    color: #7e5897;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 0.65rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(232, 243, 238, 0.9));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* === Download Section === */
.download-section {
    background: linear-gradient(180deg, rgba(240, 247, 242, 0.86), rgba(252, 247, 239, 0.9));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.download-version {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.download-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    width: 54px;
    height: 54px;
    line-height: 54px;
    border-radius: 14px;
    display: inline-block;
    background: rgba(47, 125, 115, 0.12);
    color: var(--color-primary-dark);
}

.download-card h3 {
    font-size: 1.15rem;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
}

.download-card .requirements {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    margin-top: 1rem;
}

.download-card .requirements code {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    background: rgba(47, 125, 115, 0.08);
    padding: 0.15em 0.4em;
    border-radius: 4px;
}

.download-link-placeholder {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.download-card details {
    margin-top: 1rem;
    text-align: left;
}

.download-card summary {
    cursor: pointer;
    color: var(--color-primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    list-style: none;
}

.download-card summary::-webkit-details-marker {
    display: none;
}

.download-card summary::before {
    content: "\25B8\00a0";
}

.download-card details[open] > summary::before {
    content: "\25BE\00a0";
}

.download-card details[open] > summary {
    margin-bottom: 0.75rem;
}

.download-card details ol {
    color: var(--color-text);
    font-size: 0.82rem;
    line-height: 1.7;
    padding-left: 1.2rem;
    margin: 0;
}

.download-card details .install-note {
    font-size: 0.78rem;
    color: var(--color-text);
    background: rgba(47, 125, 115, 0.08);
    border-left: 2px solid var(--color-primary-dark);
    padding: 0.4rem 0.6rem;
    margin-top: 0.6rem;
    border-radius: 0 4px 4px 0;
}

.download-card details a {
    color: var(--color-primary-dark);
}

/* === Screenshots Section === */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.screenshot-card {
    background: rgba(255, 255, 255, 0.76);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.screenshot-card:hover {
    border-color: var(--color-border-strong);
    transform: translateY(-3px);
}

.screenshot-card img {
    display: block;
    width: 100%;
}

.screenshot-card .caption {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.9rem 1rem 1rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

/* === Footer === */
.footer {
    padding: 3.5rem 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--color-primary-dark);
}

.footer-copy {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* === Documentation Page === */
.docs-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    padding-top: 6.5rem;
    min-height: 100vh;
}

.docs-sidebar {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1rem 0.75rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.docs-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.docs-sidebar a {
    display: block;
    padding: 0.4rem 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all var(--transition);
}
.docs-sidebar a:hover,
.docs-sidebar a.active {
    color: var(--color-text-heading);
    background: rgba(47, 125, 115, 0.08);
}

.docs-sidebar .sidebar-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    padding: 0.5rem 0.75rem 0.25rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.docs-content {
    padding: 2rem 2.25rem 4rem;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--color-border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.docs-content h1 {
    font-family: var(--font-display);
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.docs-content h2 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.docs-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.docs-content p {
    margin-bottom: 1rem;
}

.docs-content ul, .docs-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.docs-content li {
    margin-bottom: 0.4rem;
}

.docs-content code {
    background: rgba(47, 125, 115, 0.08);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.9em;
}

.docs-content pre {
    background: rgba(248, 251, 249, 0.95);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.docs-content pre code {
    background: none;
    padding: 0;
    font-size: 0.85rem;
    line-height: 1.7;
}

.info-box {
    background: rgba(47, 125, 115, 0.07);
    border: 1px solid rgba(47, 125, 115, 0.18);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.info-box strong {
    color: var(--color-accent);
}

/* === Imprint Page === */
.page-simple {
    padding-top: 7.5rem;
    padding-bottom: 4rem;
    min-height: 100vh;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--color-border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.page-simple h1 {
    font-family: var(--font-display);
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.page-simple h2 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-simple p {
    margin-bottom: 1rem;
    max-width: 700px;
}

@media (max-width: 960px) {
    .nav-links {
        gap: 1.25rem;
    }

    .docs-layout {
        gap: 1.5rem;
        grid-template-columns: 220px 1fr;
    }
}

/* === Responsive === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 251, 243, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.5rem;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.5rem 0;
    }

    .nav-toggle {
        display: block;
    }

    .lang-switcher {
        margin-left: 0.75rem;
        padding-left: 0.75rem;
    }

    .hero {
        padding: 7.5rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .download-grid {
        grid-template-columns: 1fr;
        max-width: 430px;
    }

    .docs-layout {
        grid-template-columns: 1fr;
        padding-top: 5rem;
    }

    .docs-sidebar {
        position: static;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 1rem;
        margin-bottom: 2rem;
    }

    .docs-content {
        padding: 1.5rem 1.5rem 3rem;
    }

    .page-simple {
        padding: 6.5rem 1.5rem 3rem;
    }
}

/* --- Changelog page --- */

.changelog-page {
    padding: 6.5rem 0 4rem;
    max-width: 780px;
    margin: 0 auto;
}

.changelog-page h1 {
    font-family: var(--font-display);
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.changelog-intro {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.changelog-version {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    padding: 2rem 2.25rem;
    margin-bottom: 2rem;
}

.changelog-version-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.changelog-version-header h2 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin: 0;
    border: none;
    padding: 0;
}

.changelog-date {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.changelog-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
}

.changelog-latest {
    background: var(--color-primary);
    color: #fff;
}

.changelog-version h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.changelog-version ul {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.changelog-version li {
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

.changelog-version code {
    background: rgba(47, 125, 115, 0.08);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.9em;
}

.changelog-back {
    margin-top: 2rem;
    font-size: 0.95rem;
}

.changelog-back a {
    color: var(--color-primary);
}

.changelog-back a:hover {
    color: var(--color-primary-dark);
}

@media (max-width: 768px) {
    .changelog-page {
        padding-top: 5rem;
    }

    .changelog-version {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}
