/* =========================================================
   Base
   ========================================================= */

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #0f1115;
    color: #e5e7eb;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 24px;
}

.hidden {
    display: none;
}

.empty {
    opacity: .7;
}

button:disabled,
button:disabled:hover {
    position: relative;
    opacity: 1;
    /* Text bleibt gut lesbar */
    cursor: not-allowed;
    color: #9ca3af;
    /* leicht ausgegraut */
    border-color: rgba(255, 255, 255, .08);
}


/* Grauer Schleier */

button:disabled::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    /* <<< Stärke hier einstellen */
    border-radius: inherit;
    pointer-events: none;
}


/* =========================================================
   Topbar / Layout / Navigation
   ========================================================= */

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px;
    /* leicht heller als Body (#0f1115) */
    background: #141820;
    /* dezente Trennung */
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    /* leichter Blur für hochwertiges Gefühl */
    backdrop-filter: blur(6px);
    transition: transform .18s ease, background .18s ease;
    will-change: transform;
}

.topbar.is-hidden {
    transform: translateY(-110%);
}

.topbar.is-hidden .topnav {
    display: none !important;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* fuer Mobile-Dropdown */
}

.topbar-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.topbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}


/* Logo link + logo image */

.topbar-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}


/* =========================================================
   LOGO-GROESSE HIER ANPASSEN
   =========================================================
   Beispiel:
   .topbar-logo{ height:40px; }
   Optional responsive unten im @media Block.
*/

.topbar-logo {
    height: 70px;
    /* <- LOGO-HOEHE */
    width: auto;
    display: block;
}

.sync-status {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
    text-align: right;
    margin-right: 12px;
    margin-top: 4px;
}


/* Navigation (Desktop inline) */

.topnav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.topnav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    opacity: .9;
}

.topnav-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, .08);
}


/* Hamburger */

.nav-toggle {
    display: none;
    /* Desktop: aus */
    border: 0;
    background: transparent;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    line-height: 0;
    color: #fff;
    /* hell auf dunklem Header */
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, .08);
}

.nav-toggle-icon {
    width: 22px;
    height: 22px;
    display: block;
    stroke: currentColor;
}


/* Mobile: Hamburger sichtbar, Nav als Dropdown */

@media (max-width: 720px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    /* Optional: Logo etwas kleiner auf Mobile */
    /* .topbar-logo{ height:28px; } */
    .topnav {
        display: none;
        position: absolute;
        left: 12px;
        right: 12px;
        top: 60px;
        /* ggf. anpassen, falls Topbar hoeher/niedriger */
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px;
        border-radius: 14px;
        background: #0b0f14;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
        z-index: 50;
    }
    .topnav.is-open {
        display: flex;
    }
    .topnav-link {
        padding: 10px 12px;
        border-radius: 12px;
        color: #fff;
    }
    .topnav-link:hover {
        background: rgba(255, 255, 255, .08);
    }

    /* Konzertliste auf Mobile: Filter etwas kompakter, Glow leicht reduziert */
    .section-title {
        font-size: 22px;
        margin-top: 32px;
    }

    .filter-bar {
        margin: 12px -4px 6px;
        padding: 8px 4px;
    }

    .filter-chip {
        padding: 7px 12px;
        font-size: 13px;
    }

    .history-summary {
        font-size: 18px;
    }
}


/* =========================================================
   Sections
   ========================================================= */

.section-title {
    margin: 48px 0 8px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.3px;
}

.section-line {
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin-bottom: 18px;
}


/* =========================================================
   Cards / Grid (Events)
   ========================================================= */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: #161a20;
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform .15s ease, box-shadow .15s ease;
    /* Karten als Flex-Column: Aktionen fluchten unten, unabhängig von Titel-Länge */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Status: Ticket gekauft = grüner Glow (nur bei Hover, im Ruhezustand neutral) */
.card--bought:hover {
    box-shadow:
        0 0 0 1px rgba(0, 192, 48, .6),
        0 0 28px rgba(0, 192, 48, .45),
        0 12px 30px rgba(0, 0, 0, .6);
}

/* Status: Gemerkt / Watchlist = amber Glow (nur bei Hover, im Ruhezustand neutral) */
.card--fav:hover {
    box-shadow:
        0 0 0 1px rgba(245, 158, 11, .6),
        0 0 26px rgba(245, 158, 11, .38),
        0 12px 30px rgba(0, 0, 0, .6);
}

/* Status-Badge oben rechts am Poster = zugleich Rückweg (Klick entfernt Status) */
.badge-form {
    margin: 0;
    display: contents;
}
/* Positionierung am Badge selbst, damit Form-Variante (button) und
   statische Variante (div, ausgeloggt) exakt gleich sitzen */
.badge-status {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border: none;
    border-bottom-left-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
    color: #ffffff;
    letter-spacing: .2px;
    cursor: pointer;
    font-family: inherit;
    transition: filter .15s ease, box-shadow .15s ease;
}
.badge-status--static {
    cursor: default;
}
.badge-status:not(.badge-status--static):hover {
    filter: brightness(1.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .55);
}
.badge-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}
/* × erscheint nur bei Hover als Rückweg-Hint; Status-Icon weicht */
.badge-icon--undo {
    width: 0;
    opacity: 0;
    transition: width .15s ease, opacity .15s ease;
}
.badge-status:not(.badge-status--static):hover .badge-icon--state {
    width: 0;
    opacity: 0;
    transition: width .15s ease, opacity .15s ease;
}
.badge-status:not(.badge-status--static):hover .badge-icon--undo {
    width: 14px;
    opacity: 1;
}
.badge-status--bought {
    background: #00c030;
    color: #062a10;
}
.badge-status--fav {
    background: #f59e0b;
    color: #1a1207;
}

/* =========================================================
   Filter-Bar
   ========================================================= */

.filter-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    gap: 8px;
    margin: 24px 0 8px;
    padding: 10px 4px;
    background: linear-gradient(180deg, #0f1115 70%, rgba(15, 17, 21, 0));
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.filter-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .03);
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .15s ease, background .15s ease;
}

.filter-chip:hover {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(125, 211, 252, .08);
}

.filter-chip.is-active {
    border-color: rgba(125, 211, 252, .65);
    background: rgba(125, 211, 252, .18);
    color: #ffffff;
}

.filter-count {
    display: inline-block;
    min-width: 18px;
    padding: 1px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.filter-chip.is-active .filter-count {
    background: rgba(255, 255, 255, .22);
}

/* Filter-Logik: passende Karten ausblenden */
.grid[data-active-filter="fav"]    .card[data-status="bought"],
.grid[data-active-filter="fav"]    .card[data-status="none"],
.grid[data-active-filter="bought"] .card[data-status="fav"],
.grid[data-active-filter="bought"] .card[data-status="none"] {
    display: none;
}

.filter-empty {
    margin: 32px 0;
    padding: 16px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    border: 1px dashed rgba(255, 255, 255, .12);
    border-radius: 12px;
}

/* =========================================================
   History (Vergangene Konzerte)
   ========================================================= */

.history-details {
    margin-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 8px;
}

.history-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 4px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.3px;
    color: #e5e7eb;
    user-select: none;
}

.history-summary::-webkit-details-marker { display: none; }

.history-summary::before {
    content: "▸";
    display: inline-block;
    font-size: 16px;
    color: #9ca3af;
    transition: transform .15s ease;
}

.history-details[open] .history-summary::before {
    transform: rotate(90deg);
}

.history-summary-count {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
}

.history-details[open] .grid {
    margin-top: 12px;
}

.poster {
    position: relative;
    height: 220px;
    background: #222;
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333, #111);
}

.badge-new {
    position: absolute;
    top: 0;
    left: 0;
    background: #00c030;
    color: #062a10;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
}

.date-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
}

.date-badge .date {
    font-weight: 600;
}

.content {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.artist {
    margin: 0 0 6px;
    font-size: 16px;
}

.meta {
    margin-top: 6px;
    font-size: 13px;
    color: #9ca3af;
}

.meta span {
    margin-right: 6px;
}

.found {
    margin-top: 8px;
    font-size: 12px;
    color: #6b7280;
}


/* =========================================================
   Links / Icons
   ========================================================= */

.title a {
    color: #7dd3fc;
    text-decoration: none;
}

.title a:hover {
    text-decoration: underline;
}

.spotify-link {
    margin-left: 8px;
    font-size: 14px;
    color: #1DB954;
    text-decoration: none;
    opacity: .85;
    float: right;
}

.spotify-link:hover {
    text-decoration: underline;
    opacity: 1;
}

.icon-ext {
    width: 14px;
    height: 14px;
    margin-left: 6px;
    vertical-align: -2px;
    opacity: .8;
}

.btn .icon-ext {
    opacity: 1;
    width: 14px;
    height: 14px;
}


/* =========================================================
   Buttons / Actions
   ========================================================= */

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* nach unten drücken, damit Primär-Buttons über alle Karten einer Zeile fluchten */
    margin-top: auto;
    padding-top: 12px;
}

/* Primär-Zeile: der eine CTA, volle Breite */
.actions-primary:empty {
    display: none;
}
.actions-primary .btn {
    width: 100%;
    justify-content: center;
}

/* Sekundär-Zeile: leise Aktionen nebeneinander */
.actions-secondary {
    display: flex;
    gap: 8px;
}
.actions-secondary:empty {
    display: none;
}
/* Sekundäre Text-Buttons füllen gemeinsam die volle Breite (je gleich breit) */
.actions-secondary .btn {
    flex: 1 1 0;
    min-width: 0;
}

/* Ausblenden-Icon: eigene Zeile, rechtsbündig */
.actions-tertiary {
    display: flex;
    justify-content: flex-end;
}
.actions-tertiary:empty {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-sizing: border-box;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: transparent;
    color: #e5e7eb;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease, border-color .15s ease, filter .15s ease;
}
/* im Button sitzt der Ext-Pfeil im Flex-Fluss -> kein Extra-Margin, nicht schrumpfen */
.btn .icon-ext {
    margin-left: 0;
    flex: 0 0 auto;
}
.btn .btn-icon {
    flex: 0 0 auto;
}

.btn-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

/* Primär: grün gefüllt (Designsystem --accent), dunkler Text */
.btn-primary {
    background: #00c030;
    border-color: #00c030;
    color: #062a10;
    font-weight: 600;
}
.btn-primary:hover {
    filter: brightness(1.08);
}

/* Sekundär / Ghost: leise */
.btn-ghost {
    background: rgba(255, 255, 255, .03);
    color: #9ca3af;
}
.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .06);
    color: #e5e7eb;
}

/* Reines Icon (Ausblenden): am leisesten */
.btn-icon-only {
    padding: 8px;
    background: transparent;
    color: #6b7280;
    margin-left: auto;
}
.btn-icon-only:hover {
    color: #e5e7eb;
    background: rgba(255, 255, 255, .06);
}

.btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.btn-cron {
    border-color: #60a5fa;
    background: rgba(96, 165, 250, .15);
    color: #e5e7eb;
    font-weight: 600;
}

.btn-cron:hover {
    background: rgba(96, 165, 250, .25);
}


/* =========================================================
   Chips
   ========================================================= */

.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
}

.chip-ok {
    border-color: rgba(0, 192, 48, .55);
    background: rgba(0, 192, 48, .12);
}

.ico {
    display: inline-block;
    width: 1.2em;
    text-align: center;
    margin-right: 6px;
}


/* =========================================================
   Cron Modal (Sync)
   ========================================================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.modal-box {
    position: relative;
    max-width: 700px;
    margin: 8vh auto;
    background: #111418;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .7);
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.modal-body {
    padding: 16px;
    max-height: 60vh;
    overflow: auto;
    font-family: monospace;
    font-size: 13px;
    white-space: pre-wrap;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.progress {
    height: 8px;
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
    margin: 12px 16px 0;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: rgba(96, 165, 250, .9);
}

.indeterminate {
    width: 35%;
    animation: slide 1.2s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(320%);
    }
}

.bar.done {
    width: 100%;
    animation: none;
    background: rgba(0, 192, 48, .9);
}

.bar.error {
    width: 100%;
    animation: none;
    background: rgba(239, 68, 68, .9);
}


/* =========================================================
   App Modal (für Login + Sync)
   ========================================================= */

.app-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.app-modal.hidden {
    display: none;
}

.app-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
}

.app-modal-box {
    position: relative;
    width: min(500px, calc(100% - 32px));
    margin: 8vh auto;
    background: #141820;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .7);
}

.app-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.app-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.app-modal-content {
    padding: 16px;
}

.app-modal-body {
    max-height: 60vh;
    overflow: auto;
    font-family: monospace;
    font-size: 13px;
    white-space: pre-wrap;
}


/* =========================================================
   Artists Page
   ========================================================= */

.artists-page {
    padding-top: 16px;
    padding-bottom: 24px;
}

.artists-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.artists-head h1 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
}

.artists-count {
    opacity: .75;
    font-size: 14px;
    white-space: nowrap;
}

.artists-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 980px) {
    .artists-grid {
        grid-template-columns: repeat(10, minmax(0, 1fr));
        gap: 12px;
    }
}

.artist-tile {
    display: block;
    text-decoration: none;
    color: inherit;
}

.artist-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, .06);
    position: relative;
}

.artist-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .12));
}

.artist-name {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 980px) {
    .artist-name {
        font-size: 13px;
    }
}


/* =========================================================
   Login Form Layout
   ========================================================= */

.login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}


/* Label + Input exakt ausgerichtet */

.form-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    /* <<< Labelbreite hier anpassen */
    align-items: center;
    gap: 12px;
}

.form-row label {
    font-size: 13px;
    opacity: .8;
}

.form-row input {
    width: 80%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: inherit;
    font-size: 14px;
}


/* Buttons rechts auf einer Linie */

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 6px;
}


/* Mobile: Labels über Inputs */

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

.event-actions a {
    text-decoration: none;
}


/* =========================================================
   Past-Actions: Sterne + Rezension
   ========================================================= */

.past-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
}

/* Static star display (non-admin) — muss exakt so breit/hoch sein wie .star-picker */
.stars-static {
    display: inline-flex;
    gap: 2px;
    font-size: 22px;
    line-height: 1;
}

.star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1em;
    height: 1.1em;
}

.star--full {
    color: #fbbf24;
}

.star--empty {
    color: #374151;
}

.star--half {
    background: linear-gradient(90deg, #fbbf24 50%, #374151 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Admin star picker */
.star-picker {
    display: inline-flex;
    gap: 2px;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    user-select: none;
}

.sp-item {
    position: relative;
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    color: #374151;
    transition: color .1s ease;
}

.sp-item.sp-full {
    color: #fbbf24;
}

.sp-item.sp-half {
    background: linear-gradient(90deg, #fbbf24 50%, #374151 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-left,
.sp-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
}

.sp-left  { left: 0; }
.sp-right { right: 0; }

/* Stars in review modal */
.review-modal-stars {
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    line-height: 1;
}

/* Review textarea */
.review-text {
    font-size: 14px;
    line-height: 1.65;
    color: #d1d5db;
    min-height: 40px;
}

.review-textarea {
    width: 100%;
    box-sizing: border-box;
    background: #0f1115;
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.65;
    font-family: system-ui, sans-serif;
    resize: vertical;
}