/* ============================================================
   apoBank Clone - Design System
   Tokens based on apobank.de inspection
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
    /* Colors - apoBank corporate palette (exact values from real site) */
    --apo-dark-blue:      #012169;  /* real apo dark blue rgb(1, 33, 105) */
    --apo-primary:        #1e325f;  /* swiper-theme-color from real site */
    --apo-primary-dark:   #15243b;
    --apo-primary-light:  #2c4870;
    --apo-blue:           #003d8f;  /* accent blue (legacy primary) */
    --apo-accent:         #0093d6;
    --apo-navy:           #0A1F3F;  /* footer navy */
    --apo-dark:           #0A1F3F;
    --apo-darker:         #07172B;
    --link-blue:          #0066cc;
    --link-blue-hover:    #004999;

    /* Neutrals */
    --white:              #ffffff;
    --gray-50:            #f8fafc;
    --gray-100:           #f5f5f5;
    --gray-200:           #e9ecef;
    --gray-300:           #dee2e6;
    --gray-400:           #adb5bd;
    --gray-500:           #6c757d;
    --gray-600:           #495057;
    --gray-700:           #333333;
    --gray-800:           #212529;
    --text-dark:          #333333;
    --text-muted:         #6c757d;
    --text-on-dark:       #d8e2f0;

    /* Typography - Source Sans 3 (real apobank font) */
    --font-base: 'Source Sans 3', 'SourceSans3', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans:  'Source Sans 3', 'SourceSans3', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing scale (8px base) */
    --space-1:  0.5rem;   /* 8px */
    --space-2:  1rem;     /* 16px */
    --space-3:  1.5rem;   /* 24px */
    --space-4:  2rem;     /* 32px */
    --space-5:  2.5rem;   /* 40px */
    --space-6:  3rem;     /* 48px */
    --space-7:  4rem;     /* 64px */
    --space-8:  5rem;     /* 80px */

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg:  0 8px 24px rgba(0,0,0,0.12);

    /* Transitions */
    --transition: 200ms ease;

    /* Layout */
    --container-max: 100%;
    --header-h: 120px;
}

/* === RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-base);
    font-size: 17px;
    font-weight: 400;
    line-height: 24.48px;
    letter-spacing: normal;
    color: var(--text-dark);
    background: var(--white);
    margin: 0;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-family: var(--font-base);
    font-size: 39px;
    font-weight: 400;
    line-height: 42.9px;
    letter-spacing: normal;
}

h2 {
    font-family: var(--font-base);
    font-size: 25.5px;
    font-weight: 700;
    line-height: 36.72px;
    letter-spacing: normal;
}

h3 {
    font-family: var(--font-base);
    font-size: 21px;
    font-weight: 700;
    line-height: 30.23px;
    letter-spacing: normal;
}

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

a {
    font-family: var(--font-base);
    font-weight: 700;
    color: var(--link-blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--link-blue-hover);
    text-decoration: underline;
}

ul {
    list-style: none;
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-2);
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 32px;
}

.header-logo {
    flex-shrink: 0;
    display: block;
}

.header-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-1) 12px;
    color: var(--apo-primary);
    font-family: inherit;
}

.menu-toggle__bars {
    display: block;
    width: 28px;
    height: 4px;
    background: var(--apo-primary);
    position: relative;
    border-radius: 1px;
}

.menu-toggle__bars::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 28px;
    height: 4px;
    background: var(--apo-primary);
    border-radius: 1px;
}

.menu-toggle__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.menu-toggle:hover {
    color: var(--apo-primary-dark);
}

.menu-toggle:hover .menu-toggle__bars,
.menu-toggle:hover .menu-toggle__bars::before {
    background: var(--apo-primary-dark);
}

.header-utility {
    list-style: none;
    display: flex;
    gap: var(--space-3);
    margin-left: auto;
    align-items: center;
}

.header-utility a {
    color: var(--apo-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: var(--space-1) 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.header-utility a:hover {
    color: var(--apo-primary-dark);
    border-bottom-color: var(--apo-primary);
    text-decoration: none;
}

/* === PAGE ROW (drawer sidebar + main content) === */
.page-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding: 0 32px;
    box-sizing: border-box;
}

/* === DRAWER OVERLAY (backdrop for mobile) === */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.drawer-overlay.is-visible {
    display: block;
    opacity: 1;
}

/* === DRAWER (permanent left sidebar) === */
.drawer {
    position: sticky;
    top: 100px;
    width: 320px;
    flex-shrink: 0;
    height: calc(100vh - 100px);
    background: var(--white);
    transform: translateX(-100%);
    margin-left: -320px;
    transition: transform 0.3s ease, margin-left 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e0e0e0;
    box-shadow: 1px 0 8px rgba(0, 0, 0, 0.04);
}

.drawer.is-open {
    transform: translateX(0);
    margin-left: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--apo-primary);
    color: var(--white);
}

.drawer-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color var(--transition);
}

.drawer-close:hover {
    color: var(--gray-200);
}

.drawer-nav {
    padding: var(--space-2) 0;
    flex: 1;
}

.drawer-group {
    border-bottom: 1px solid var(--gray-100);
}

.drawer-group__toggle {
    width: 100%;
    background: none;
    border: none;
    padding: var(--space-2) var(--space-3);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--apo-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: inherit;
}

.drawer-group__toggle:hover {
    background: var(--gray-50);
}

.drawer-group__icon::after {
    content: '\2212';
    font-size: 1.25rem;
    color: var(--apo-primary);
    font-weight: 700;
}

.drawer-group.is-collapsed .drawer-group__icon::after {
    content: '+';
}

.drawer-group__items {
    list-style: none;
    padding: 0 var(--space-3) var(--space-1);
    margin: 0;
}

.drawer-group__items li {
    padding: var(--space-1) 0;
}

.drawer-group__items a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9375rem;
    display: block;
    transition: color var(--transition);
}

.drawer-group__items a:hover {
    color: var(--apo-primary);
    text-decoration: none;
}

.drawer-group.is-collapsed .drawer-group__items {
    display: none;
}

/* === DRAWER ICONS ROW === */
.drawer-icons {
    display: flex;
    justify-content: space-around;
    padding: var(--space-2) 12px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.drawer-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--apo-primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
    padding: var(--space-1) 4px;
    transition: color var(--transition);
}

.drawer-icon-link:hover {
    color: var(--apo-primary-dark);
    text-decoration: none;
}

.drawer-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--apo-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
}

.drawer-icon--location::before { content: '\2605'; }
.drawer-icon--membership::before { content: '\2726'; }
.drawer-icon--banking::before { content: '\25C8'; }

/* === DRAWER SEARCH === */
.drawer-search {
    padding: var(--space-2) var(--space-3);
    border-top: 1px solid var(--gray-200);
}

.drawer-search form {
    display: flex;
    gap: var(--space-1);
}

.drawer-search input[type="search"] {
    flex: 1;
    padding: var(--space-1) 12px;
    border: 1px solid var(--gray-400);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-family: inherit;
}

.drawer-search input[type="search"]:focus {
    outline: none;
    border-color: var(--apo-primary);
    box-shadow: 0 0 0 2px rgba(0, 61, 143, 0.15);
}

.drawer-search button {
    padding: var(--space-1) var(--space-2);
    background: var(--apo-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    font-family: inherit;
}

.drawer-search button:hover {
    background: var(--apo-primary-dark);
}

/* === HERO === */
.hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--apo-dark);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 63, 0.85) 0%, rgba(0, 61, 143, 0.55) 50%, rgba(0, 61, 143, 0.25) 100%);
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--space-7) 0;
}

.hero__content {
    max-width: 620px;
    color: var(--white);
    padding-left: 20px;
}

.hero__eyebrow {
    display: inline-block;
    background: var(--apo-accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-2);
}

.hero__title {
    font-family: var(--font-base);
    font-size: 39px;
    font-weight: 400;
    line-height: 42.9px;
    letter-spacing: normal;
    margin-bottom: var(--space-2);
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-family: var(--font-base);
    font-size: 21px;
    font-weight: 400;
    line-height: 30.23px;
    margin-bottom: var(--space-4);
    color: rgba(255,255,255,0.95);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.3;
}

.btn--primary {
    background: var(--apo-primary);
    color: var(--white);
    border-color: var(--apo-primary);
}

.btn--primary:hover {
    background: var(--apo-primary-dark);
    border-color: var(--apo-primary-dark);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* === MAIN CONTENT === */
.main,
.main-content {
    background: var(--white);
    flex: 1;
    min-width: 0;
}

.content-section {
    padding: var(--space-7) 0;
}

.content-section--alt {
    background: var(--gray-100);
}

.section-title {
    font-family: var(--font-base);
    font-size: 25.5px;
    font-weight: 700;
    line-height: 36.72px;
    color: var(--apo-primary);
    margin-bottom: var(--space-5);
    text-align: center;
}

/* === SPLIT (image + text) === */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: center;
}

.split--image-right .split__text {
    order: 1;
}

.split--image-right .split__media {
    order: 2;
}

.split--image-left .split__media {
    order: 1;
}

.split--image-left .split__text {
    order: 2;
}

.split__title {
    font-family: var(--font-base);
    font-size: 25.5px;
    font-weight: 700;
    line-height: 36.72px;
    color: var(--apo-primary);
    margin-bottom: var(--space-2);
}

.split__subtitle {
    font-family: var(--font-base);
    font-size: 21px;
    font-weight: 700;
    line-height: 30.23px;
    color: var(--gray-700);
    margin-bottom: var(--space-3);
}

.split__body {
    font-family: var(--font-base);
    font-size: 17px;
    font-weight: 400;
    line-height: 24.48px;
    color: var(--gray-700);
    margin-bottom: var(--space-3);
}

.split__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 3 / 2;
    background: var(--gray-200);
}

.split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms ease;
}

.split__media:hover .split__img {
    transform: scale(1.03);
}

/* === LINK ARROW === */
.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--apo-primary);
    font-weight: 600;
    padding-top: var(--space-1);
    position: relative;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.link-arrow::after {
    content: "\2192";
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform var(--transition);
}

.link-arrow:hover {
    color: var(--apo-primary-dark);
    text-decoration: none;
    border-bottom-color: var(--apo-primary-dark);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* === NEWS GRID === */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--gray-200);
}

.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms ease;
}

.news-card:hover .news-card__img {
    transform: scale(1.05);
}

.news-card__body {
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    flex: 1;
}

.news-card__title {
    font-family: var(--font-base);
    font-size: 21px;
    font-weight: 700;
    line-height: 30.23px;
    color: var(--apo-primary);
}

.news-card__text {
    font-family: var(--font-base);
    font-size: 17px;
    font-weight: 400;
    line-height: 24.48px;
    color: var(--gray-700);
    flex: 1;
}

/* === FOOTER === */
.footer {
    background: var(--apo-dark);
    color: var(--text-on-dark);
    margin-top: var(--space-7);
}

/* Contact row */
.footer__contact-row {
    background: var(--apo-darker);
    padding: var(--space-5) 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    color: var(--text-on-dark);
    transition: all var(--transition);
}

.contact-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--apo-accent);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

.contact-card__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--apo-primary);
    color: var(--white);
    border-radius: 50%;
}

.contact-card__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.contact-card__title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.3;
}

.contact-card__subtitle {
    font-size: 0.85rem;
    color: var(--text-on-dark);
    line-height: 1.4;
}

/* Quick links bar */
.footer__quick-bar {
    background: var(--apo-darker);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-2) 0;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
}

.quick-links__item {
    color: var(--text-on-dark);
    font-size: 0.875rem;
    font-weight: 500;
    padding: var(--space-1) 0;
    transition: color var(--transition);
}

.quick-links__item:hover {
    color: var(--white);
    text-decoration: none;
}

/* Schnellzugriff columns */
.footer__main {
    padding: var(--space-6) 0;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-4);
}

.footer-col__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-2);
    padding-bottom: var(--space-1);
    border-bottom: 2px solid var(--apo-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-col__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.footer-col__list a,
.footer-col__text-only {
    color: var(--text-on-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color var(--transition);
    padding: 2px 0;
    display: inline-block;
}

.footer-col__list a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-col__text-only {
    color: var(--gray-400);
    cursor: default;
}

/* Social */
.footer__social {
    background: var(--apo-darker);
    padding: var(--space-3) 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__social-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.footer__social-label {
    color: var(--text-on-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: var(--space-2);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    color: var(--text-on-dark);
    border-radius: 50%;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--apo-accent);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Legal */
.footer__legal {
    background: var(--apo-darker);
    padding: var(--space-3) 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__legal-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2) var(--space-3);
    align-items: center;
}

.legal-nav__link {
    color: var(--text-on-dark);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.legal-nav__link:hover {
    color: var(--white);
    text-decoration: none;
}

.footer__bic {
    color: var(--gray-400);
    font-size: 0.85rem;
    font-family: "Courier New", monospace;
    letter-spacing: 0.05em;
}

/* === RESPONSIVE === */
@media (max-width: 1023px) {
    .page-row {
        flex-direction: column;
    }

    .drawer {
        position: static;
        width: 100%;
        height: auto;
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: none;
    }

    .main,
    .main-content {
        width: 100%;
    }

    .header-inner {
        gap: var(--space-2);
    }

    .footer-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    .drawer.is-open {
        transform: translateX(0);
    }

    .header-utility {
        gap: 12px;
    }

    .header-utility a {
        font-size: 0.75rem;
    }

    .header-logo img {
        height: 36px;
    }

    .menu-toggle__label {
        font-size: 10px;
    }

    .menu-toggle__bars,
    .menu-toggle__bars::before {
        width: 24px;
    }

    .hero {
        min-height: 400px;
    }

    .hero__inner {
        padding: var(--space-5) 0;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: 17px;
    }

    .content-section {
        padding: var(--space-5) 0;
    }

    .split {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .split--image-right .split__text,
    .split--image-right .split__media,
    .split--image-left .split__media,
    .split--image-left .split__text {
        order: unset;
    }

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

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__legal-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-cols {
        grid-template-columns: 1fr;
    }

    .quick-links {
        flex-direction: column;
        align-items: center;
        gap: var(--space-1);
    }

    .btn--lg {
        width: 100%;
        padding: 14px 20px;
    }
}
