/* ============================================================
   Goldberg Blog – Haupt-Stylesheet
   iOS-Clean, Hell/Dunkel, Giftgrün-Akzent
   ============================================================ */

/* ── CSS Custom Properties (Design-Tokens) ─────────────────── */
:root {
    /* Akzentfarben (Giftgrün) */
    --accent:          #7fff00;   /* Chartreuse / Giftgrün */
    --accent-soft:     #a3ff3d;
    --accent-dim:      #5cbf00;
    --accent-bg:       rgba(127,255,0,.10);

    /* Helles Theme */
    --bg:              #f5f5f7;
    --bg-card:         #ffffff;
    --bg-nav:          rgba(255,255,255,.82);
    --bg-sidebar:      #ffffff;
    --bg-input:        #f0f0f2;
    --bg-hover:        #f0f0f2;
    --bg-code:         #f0f0f2;

    --text:            #1d1d1f;
    --text-2:          #424245;
    --text-3:          #86868b;
    --text-inv:        #ffffff;

    --border:          rgba(0,0,0,.08);
    --border-strong:   rgba(0,0,0,.18);
    --shadow-sm:       0 1px 4px rgba(0,0,0,.06);
    --shadow-md:       0 4px 20px rgba(0,0,0,.09);
    --shadow-lg:       0 12px 40px rgba(0,0,0,.12);

    --radius-sm:       8px;
    --radius-md:       14px;
    --radius-lg:       20px;
    --radius-xl:       28px;

    --nav-h:           58px;
    --sidebar-w:       280px;
    --font:            'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition:      .22s cubic-bezier(.4,0,.2,1);
}

/* Dunkles Theme */
[data-theme="dark"] {
    --bg:              #000000;
    --bg-card:         #1c1c1e;
    --bg-nav:          rgba(28,28,30,.88);
    --bg-sidebar:      #1c1c1e;
    --bg-input:        #2c2c2e;
    --bg-hover:        #2c2c2e;
    --bg-code:         #2c2c2e;

    --text:            #f5f5f7;
    --text-2:          #aeaeb2;
    --text-3:          #636366;
    --text-inv:        #000000;

    --border:          rgba(255,255,255,.08);
    --border-strong:   rgba(255,255,255,.18);
    --shadow-sm:       0 1px 4px rgba(0,0,0,.3);
    --shadow-md:       0 4px 20px rgba(0,0,0,.4);
    --shadow-lg:       0 12px 40px rgba(0,0,0,.5);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background var(--transition), color var(--transition);
    padding-top: var(--nav-h);
}

a { color: var(--accent-dim); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

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

/* ── Typografie ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
    color: var(--text);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p  { line-height: 1.7; color: var(--text-2); }

/* ── Navigation ─────────────────────────────────────────────── */
.gb-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: var(--bg-nav);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background var(--transition);
}

.gb-nav__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    padding: 0 20px;
}

.gb-nav__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
}

.gb-nav__dot {
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}

.gb-nav__name { color: var(--text); }

.gb-nav__links {
    display: flex;
    list-style: none;
    gap: 2px;
    margin: 0 12px;
    flex: 1;
    flex-wrap: nowrap;
    overflow: hidden; /* verhindert Überlauf bei vielen Kategorien */
}

/* Auf Mobile Nav-Links ausblenden – nur Burger */
@media (max-width: 767px) {
    .gb-nav__links {
        display: none !important;
    }
}

.gb-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-2);
    font-weight: 500;
    font-size: .9rem;
    line-height: 1;
    transition: background var(--transition), color var(--transition);
}
.gb-nav__link:hover, .gb-nav__link.active {
    background: var(--bg-hover);
    color: var(--text);
}

/* Kategorien-Dropdown */
.gb-nav__dropdown-wrap { position: relative; }

.gb-nav__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 6px;
    z-index: 200;
}

.gb-nav__dropdown-wrap:hover .gb-nav__dropdown { display: block; }

.gb-nav__dropdown li { position: relative; }
.gb-nav__dropdown a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-2);
    font-size: .875rem;
    transition: background var(--transition), color var(--transition);
}
.gb-nav__dropdown a:hover { background: var(--bg-hover); color: var(--text); }

/* Unter-Dropdown */
.gb-nav__subdropdown {
    display: none;
    position: absolute;
    left: 100%; top: 0;
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 6px;
    z-index: 210;
}
.gb-nav__dropdown li:hover .gb-nav__subdropdown { display: block; }

/* Aktions-Icons rechts */
.gb-nav__actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

/* ── Icon-Button ─────────────────────────────────────────────── */
.gb-icon-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: background var(--transition), color var(--transition);
}
.gb-icon-btn:hover { background: var(--bg-hover); color: var(--text); }

/* ── Buttons ─────────────────────────────────────────────────── */
.gb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.gb-btn--primary {
    background: var(--accent);
    color: #000;
}
.gb-btn--primary:hover {
    background: var(--accent-soft);
    color: #000;
    box-shadow: 0 0 18px rgba(127,255,0,.4);
    transform: translateY(-1px);
}

.gb-btn--ghost {
    background: transparent;
    color: var(--text-2);
    border: 1.5px solid var(--border-strong);
}
.gb-btn--ghost:hover {
    background: var(--bg-hover);
    color: var(--text);
    border-color: var(--accent);
}

.gb-btn--danger { background: #ff453a; color: #fff; }
.gb-btn--danger:hover { background: #ff6961; color: #fff; }

.gb-btn--sm { padding: 6px 14px; font-size: .8rem; border-radius: var(--radius-sm); }
.gb-btn--lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius-lg); }
.gb-btn--full { width: 100%; }

.gb-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ── Suchleiste ─────────────────────────────────────────────── */
.gb-search-bar {
    border-top: 1px solid var(--border);
    background: var(--bg-nav);
    padding: 10px 0;
    display: none;
    backdrop-filter: blur(20px);
}
.gb-search-bar.open { display: block; }

.gb-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-input);
    border-radius: var(--radius-md);
    padding: 8px 14px;
}
.gb-search-form__icon { color: var(--text-3); flex-shrink: 0; }
.gb-search-form__input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: .95rem;
    color: var(--text);
    outline: none;
}
.gb-search-form__input::placeholder { color: var(--text-3); }

/* ── User-Menü ──────────────────────────────────────────────── */
.gb-user-menu { position: relative; }

.gb-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text);
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}
.gb-user-btn:hover { border-color: var(--accent); background: var(--accent-bg); }

.gb-user-avatar {
    width: 26px; height: 26px;
    border-radius: 50%;
    object-fit: cover;
}
.gb-user-initials {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gb-user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 190px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 6px;
    z-index: 200;
}
.gb-user-dropdown.open { display: block; }

.gb-user-dropdown a {
    display: flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-2);
    font-size: .875rem;
    transition: background var(--transition), color var(--transition);
}
.gb-user-dropdown a:hover { background: var(--bg-hover); color: var(--text); }

.gb-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 8px;
}

/* ── Burger-Menü ─────────────────────────────────────────────── */
.gb-burger {
    display: none; /* Standardmäßig versteckt – nur auf Mobile sichtbar */
    flex-direction: column;
    gap: 5px;
    width: 38px; height: 38px;
    padding: 8px;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    cursor: pointer;
    justify-content: center;
}

/* Burger nur auf Mobile einblenden */
@media (max-width: 767px) {
    .gb-burger { display: flex !important; }
}
.gb-burger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}
.gb-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gb-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.gb-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Sidebar ─────────────────────────────────────────── */
.gb-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1050;
    backdrop-filter: blur(4px);
}
.gb-sidebar-overlay.open { display: block; }

.gb-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: var(--sidebar-w);
    background: var(--bg-sidebar);
    z-index: 1060;
    transform: translateX(-100%);
    transition: transform var(--transition);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.gb-sidebar.open { transform: translateX(0); }

.gb-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    flex-shrink: 0;
}

.gb-sidebar__nav { padding: 12px 12px 32px; }

.gb-sidebar__link {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    color: var(--text-2);
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: 2px;
    transition: background var(--transition), color var(--transition);
}
.gb-sidebar__link:hover, .gb-sidebar__link.active {
    background: var(--accent-bg);
    color: var(--text);
}
.gb-sidebar__link.active { color: var(--accent-dim); font-weight: 600; }
.gb-sidebar__link--danger:hover { background: rgba(255,69,58,.1); color: #ff453a; }

.gb-sidebar__section {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-3);
    padding: 14px 14px 4px;
}
.gb-sidebar__divider {
    height: 1px;
    background: var(--border);
    margin: 8px 14px;
}

/* ── Hauptbereich ────────────────────────────────────────────── */
.gb-main {
    flex: 1;
    width: 100%;
}

/* ── Karten ─────────────────────────────────────────────────── */
.gb-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.gb-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.gb-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Artikel-Karte ohne Bild */
.gb-card__no-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-bg) 0%, var(--bg-hover) 100%);
    font-size: 2.5rem;
    color: var(--accent-dim);
}

.gb-card__body { padding: 20px 24px; }
.gb-card__category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--accent-dim);
    margin-bottom: 10px;
}
.gb-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gb-card__title a { color: inherit; }
.gb-card__title a:hover { color: var(--accent-dim); }

.gb-card__excerpt {
    font-size: .875rem;
    color: var(--text-3);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.gb-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: .78rem;
    color: var(--text-3);
}
.gb-card__meta i { color: var(--accent-dim); }

/* Featured Badge */
.gb-badge-featured {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--accent);
    color: #000;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ── Hero-Bereich (Startseite Featured-Artikel) ──────────────── */
.gb-hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    margin: 24px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}
.gb-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6;
}
.gb-hero__content {
    position: relative;
    z-index: 1;
    padding: 40px 48px;
    background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 100%);
    width: 100%;
}
.gb-hero__badge {
    display: inline-block;
    background: var(--accent);
    color: #000;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px;
}
.gb-hero__title {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.gb-hero__meta { color: rgba(255,255,255,.7); font-size: .875rem; }

/* ── Artikel-Grid ────────────────────────────────────────────── */
.gb-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ── Abschnitt-Header ────────────────────────────────────────── */
.gb-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.gb-section-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}
.gb-section-header h2::before {
    content: '';
    display: inline-block;
    width: 4px; height: 24px;
    background: var(--accent);
    border-radius: 2px;
}

/* ── Artikel-Detailseite ─────────────────────────────────────── */
.gb-article { max-width: 800px; margin: 0 auto; }
.gb-article__header { margin-bottom: 32px; }
.gb-article__img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
}

/* Artikel ohne Bild – stilvoller farbiger Block */
.gb-article__no-img {
    width: 100%;
    height: 240px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--accent-bg), var(--bg-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 32px;
    border: 1px solid var(--border);
}

.gb-article__content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-2);
}
.gb-article__content h2,
.gb-article__content h3,
.gb-article__content h4 { color: var(--text); margin: 28px 0 12px; }
.gb-article__content p { margin-bottom: 18px; }
.gb-article__content ul, .gb-article__content ol {
    margin: 0 0 18px 24px;
    color: var(--text-2);
}
.gb-article__content blockquote {
    border-left: 4px solid var(--accent);
    padding: 12px 20px;
    margin: 24px 0;
    background: var(--accent-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}
.gb-article__content code {
    background: var(--bg-code);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .9em;
}
.gb-article__content pre {
    background: var(--bg-code);
    border-radius: var(--radius-md);
    padding: 18px;
    overflow-x: auto;
    margin: 18px 0;
}
.gb-article__content a { color: var(--accent-dim); text-decoration: underline; }
.gb-article__content img { border-radius: var(--radius-md); }

/* ── Kommentare ──────────────────────────────────────────────── */
.gb-comment {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.gb-comment:last-child { border-bottom: none; }

.gb-comment__avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.gb-comment__initial {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gb-comment__author { font-weight: 600; font-size: .9rem; color: var(--text); }
.gb-comment__date { font-size: .78rem; color: var(--text-3); margin-left: 8px; }
.gb-comment__text { font-size: .9rem; color: var(--text-2); margin-top: 4px; line-height: 1.6; }

/* ── Formular ────────────────────────────────────────────────── */
.gb-form-group { margin-bottom: 18px; }
.gb-label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 6px;
}
.gb-input, .gb-textarea, .gb-select {
    width: 100%;
    background: var(--bg-input);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 11px 14px;
    font-family: var(--font);
    font-size: .9rem;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.gb-input:focus, .gb-textarea:focus, .gb-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(127,255,0,.15);
}
.gb-textarea { min-height: 120px; resize: vertical; }
.gb-select { appearance: none; cursor: pointer; }
.gb-input::placeholder, .gb-textarea::placeholder { color: var(--text-3); }

/* File-Input */
.gb-file-input { cursor: pointer; }

/* Form-Hinweis */
.gb-hint { font-size: .78rem; color: var(--text-3); margin-top: 4px; }
.gb-error { font-size: .78rem; color: #ff453a; margin-top: 4px; }

/* ── Auth-Seiten (Login/Register) ────────────────────────────── */

.gb-auth {
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.gb-auth__box {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
}
.gb-auth__logo { text-align: center; margin-bottom: 28px; }
.gb-auth__title { font-size: 1.6rem; text-align: center; margin-bottom: 6px; }
.gb-auth__sub { font-size: .875rem; color: var(--text-3); text-align: center; margin-bottom: 28px; }
.gb-auth__divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
    color: var(--text-3);
    font-size: .8rem;
}
.gb-auth__divider::before, .gb-auth__divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}
.gb-auth__divider::before { left: 0; }
.gb-auth__divider::after  { right: 0; }

/* ── Flash-Nachricht ─────────────────────────────────────────── */
.gb-flash-container { min-height: 0; }
.gb-flash {
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--border) !important;
    font-size: .9rem;
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.gb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--text-3);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.gb-breadcrumb a { color: var(--text-3); }
.gb-breadcrumb a:hover { color: var(--accent-dim); }
.gb-breadcrumb__sep { color: var(--border-strong); }

/* ── Tags ────────────────────────────────────────────────────── */
.gb-tag {
    display: inline-block;
    background: var(--bg-input);
    color: var(--text-2);
    font-size: .75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-decoration: none;
}
.gb-tag:hover {
    background: var(--accent-bg);
    border-color: var(--accent);
    color: var(--accent-dim);
}
.gb-tag--active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* ── Paginierung ─────────────────────────────────────────────── */
.gb-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.gb-page-btn {
    min-width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--text-2);
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    padding: 0 10px;
}
.gb-page-btn:hover { border-color: var(--accent); color: var(--accent-dim); }
.gb-page-btn--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    font-weight: 700;
}
.gb-page-btn:disabled, .gb-page-btn--disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }

/* ── Sidebar (Artikel-Detailseite) ───────────────────────────── */
.gb-aside-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 20px 24px;
    margin-bottom: 20px;
}
.gb-aside-card__title {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-3);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gb-aside-card__title::before {
    content: '';
    width: 3px; height: 14px;
    background: var(--accent);
    border-radius: 2px;
}

/* ── Admin-Panel ─────────────────────────────────────────────── */
.gb-admin-wrap { display: flex; min-height: calc(100vh - var(--nav-h)); }

.gb-admin-nav {
    width: 240px;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    padding: 24px 12px;
    flex-shrink: 0;
    position: sticky;
    top: var(--nav-h);
    height: calc(100vh - var(--nav-h));
    overflow-y: auto;
}
.gb-admin-nav__label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-3);
    padding: 10px 12px 4px;
}
.gb-admin-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    color: var(--text-2);
    font-size: .9rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
    margin-bottom: 2px;
}
.gb-admin-nav__link:hover, .gb-admin-nav__link.active {
    background: var(--accent-bg);
    color: var(--text);
}
.gb-admin-nav__link.active { color: var(--accent-dim); font-weight: 600; }

.gb-admin-content { flex: 1; padding: 32px; overflow: hidden; }
.gb-admin-content h1 { font-size: 1.6rem; margin-bottom: 6px; }
.gb-admin-sub { font-size: .9rem; color: var(--text-3); margin-bottom: 28px; }

/* Stat-Karten */
.gb-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.gb-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gb-stat__icon { font-size: 1.4rem; color: var(--accent); }
.gb-stat__value { font-size: 2rem; font-weight: 700; color: var(--text); }
.gb-stat__label { font-size: .8rem; color: var(--text-3); }

/* Tabellen im Admin */
.gb-table { width: 100%; border-collapse: collapse; }
.gb-table th {
    text-align: left;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-3);
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
}
.gb-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    font-size: .875rem;
    color: var(--text-2);
    vertical-align: middle;
}
.gb-table tr:hover td { background: var(--bg-hover); }
.gb-table tr:last-child td { border-bottom: none; }

/* Status-Badges */
.gb-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}
.gb-badge--success { background: rgba(48,209,88,.15); color: #30d158; }
.gb-badge--danger  { background: rgba(255,69,58,.15);  color: #ff453a; }
.gb-badge--warning { background: rgba(255,159,10,.15); color: #ff9f0a; }
.gb-badge--accent  { background: var(--accent-bg); color: var(--accent-dim); }

/* ── Kategorie-Chips ─────────────────────────────────────────── */
.gb-cat-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-decoration: none;
}
.gb-cat-chip:hover {
    border-color: var(--accent);
    background: var(--accent-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.gb-cat-chip__icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent-dim);
    flex-shrink: 0;
}
.gb-cat-chip__name { font-weight: 600; font-size: .9rem; color: var(--text); }
.gb-cat-chip__count { font-size: .78rem; color: var(--text-3); }

/* ── Leerer Zustand ──────────────────────────────────────────── */
.gb-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-3);
}
.gb-empty__icon { font-size: 3rem; margin-bottom: 16px; opacity: .4; }
.gb-empty__title { font-size: 1.2rem; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.gb-empty__text { font-size: .9rem; }

/* ── Divider ─────────────────────────────────────────────────── */
.gb-hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* ── Skeletons (Ladezustand) ─────────────────────────────────── */
@keyframes shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position: 600px 0; }
}
.gb-skeleton {
    background: linear-gradient(90deg, var(--bg-hover) 25%, var(--bg-input) 50%, var(--bg-hover) 75%);
    background-size: 600px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ── Akzent-Highlight ────────────────────────────────────────── */
.text-accent { color: var(--accent-dim); }
.bg-accent    { background: var(--accent); color: #000; }

/* ── Container ───────────────────────────────────────────────── */
.gb-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.gb-section { padding: 40px 0; }

.container,
.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container {
    max-width: 1200px;
}

.container-fluid {
    max-width: 1400px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.gb-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    margin-top: auto;
}
.gb-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}
.gb-footer__heading {
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-3);
    margin-bottom: 14px;
}
.gb-footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gb-footer__list a {
    font-size: .875rem;
    color: var(--text-3);
    transition: color var(--transition);
}
.gb-footer__list a:hover { color: var(--accent-dim); }
.gb-footer__text { font-size: .875rem; color: var(--text-3); line-height: 1.6; }
.gb-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: .8rem;
    color: var(--text-3);
    gap: 12px;
    flex-wrap: wrap;
}

.gb-footer__bottom > span {
    min-width: 0;
}

.gb-footer__heart {
    white-space: nowrap;
}

.gb-footer__heart i { color: #ff453a; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
    .gb-admin-nav { display: none; }
    .gb-admin-wrap { flex-direction: column; }
    .gb-admin-content { padding: 20px 16px; }
    .gb-footer__grid { grid-template-columns: 1fr 1fr; }
    /* Nav-Links auf Tablet etwas kompakter */
    .gb-nav__link { padding: 5px 8px; font-size: .82rem; }
    .gb-nav__links { margin: 0 6px; gap: 0; }
}

@media (max-width: 767px) {
    body { padding-top: var(--nav-h); }
    /* Nav-Links komplett weg – Burger übernimmt */
    .gb-nav__links { display: none !important; }
    .gb-hero { min-height: 320px; }
    .gb-hero__content { padding: 24px 24px; }
    .gb-grid { grid-template-columns: 1fr; }
    .gb-footer__grid { grid-template-columns: 1fr; gap: 24px; }
    .gb-auth__box { padding: 28px 22px; }
    .gb-stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .gb-article__img, .gb-article__no-img { border-radius: var(--radius-lg); }
    .gb-hero { border-radius: var(--radius-lg); }
    .gb-stat-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Goldberg – Mini Grid & Utility-Klassen
   (ersetzt Bootstrap – kein externes Framework nötig)
   ============================================================ */

/* ── Simples 12-Spalten Grid ──────────────────────────────── */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}
.row > * {
    padding: 0 12px;
    min-width: 0;
}
.g-4 > * { padding: 12px; }

.col-lg-4  { flex: 0 0 100%; max-width: 100%; }
.col-lg-6  { flex: 0 0 100%; max-width: 100%; }
.col-lg-8  { flex: 0 0 100%; max-width: 100%; }
.col-lg-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 992px) {
    .col-lg-4  { flex: 0 0 33.3333%; max-width: 33.3333%; }
    .col-lg-6  { flex: 0 0 50%;      max-width: 50%; }
    .col-lg-8  { flex: 0 0 66.6666%; max-width: 66.6666%; }
    .col-lg-12 { flex: 0 0 100%;     max-width: 100%; }
    .mt-lg-0   { margin-top: 0 !important; }
}

@media (max-width: 991px) {
    .gb-admin-nav { display: none; }
    /* Zwei-Spalten-Layout auf Tablet einspaltig */
    .col-lg-4, .col-lg-8 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
    .col-md-6  { flex: 0 0 50%;  max-width: 50%; }
    .d-md-inline       { display: inline !important; }
    .d-md-inline-flex  { display: inline-flex !important; }
}
@media (max-width: 767px) {
    .d-md-inline      { display: none !important; }
    .d-md-inline-flex { display: none !important; }
    /* Login-Button auf Mobile kleiner */
    .gb-nav__actions .gb-btn--ghost { display: none; }
    /* Registrieren auf Mobile auch weg (im Burger) */
    .gb-nav__actions .gb-btn--primary { display: none !important; }
}

/* ── Spacing-Utilities ────────────────────────────────────── */
.me-1 { margin-right: 4px;  }
.me-2 { margin-right: 8px;  }
.me-3 { margin-right: 12px; }
.ms-1 { margin-left: 4px;   }
.ms-2 { margin-left: 8px;   }
.ms-3 { margin-left: 12px;  }
.mt-2 { margin-top: 8px;    }
.mt-3 { margin-top: 12px;   }
.mt-4 { margin-top: 16px;   }
.mt-5 { margin-top: 24px;   }
.mb-0 { margin-bottom: 0;   }
.mb-3 { margin-bottom: 12px;}
.mb-4 { margin-bottom: 16px;}
.ps-3 { padding-left: 16px; }
.py-5 { padding-top: 32px; padding-bottom: 32px; }

/* ── Display Utilities ────────────────────────────────────── */
.d-none   { display: none !important; }
.d-block  { display: block !important; }
.d-flex   { display: flex !important; }
.d-inline { display: inline !important; }

/* ── Bootstrap-Alert Kompatibilität ───────────────────────── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-size: .9rem;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.alert-danger  { background: rgba(255,69,58,.1);  border-color: rgba(255,69,58,.3);  color: #ff453a; }
.alert-success { background: rgba(48,209,88,.1);  border-color: rgba(48,209,88,.3);  color: #30d158; }
.alert-warning { background: rgba(255,159,10,.1); border-color: rgba(255,159,10,.3); color: #ff9f0a; }
.alert-info    { background: rgba(100,210,255,.1);border-color: rgba(100,210,255,.3);color: #64d2ff; }
.alert ul      { margin: 4px 0 0 0; padding-left: 20px; }
.alert-dismissible { position: relative; }
.btn-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-size: 1.1rem;
    opacity: .6;
    padding: 0;
    flex-shrink: 0;
}
.btn-close::before { content: '×'; }
.btn-close:hover { opacity: 1; }

/* Alert fade (Bootstrap-kompatibel) */
.alert.fade  { transition: opacity .15s linear; }
.alert.show  { opacity: 1; }

/* ── Sonstige Bootstrap-Kompatibilität ───────────────────── */
.rounded-3 { border-radius: var(--radius-lg) !important; }
.fw-bold    { font-weight: 700 !important; }
.fw-600     { font-weight: 600 !important; }
.text-muted { color: var(--text-3) !important; }
.fa-xs      { font-size: .75em; }
.fa-fw      { width: 1.25em; text-align: center; }
.fa-2x      { font-size: 2em; }

/* ── Nav-Scrolled State ──────────────────────────────────── */
.gb-nav--scrolled {
    box-shadow: var(--shadow-md);
}

/* ============================================================
   Goldberg – Kategorie-Menü (Desktop Dropdown + Mobile Sidebar)
   ============================================================ */

/* ── Desktop: Caret-Icon im Nav-Link ─────────────────────── */
.gb-nav__caret {
    margin-left: 4px;
    transition: transform var(--transition);
    display: inline-block;
    opacity: .6;
}
.gb-nav__dropdown-wrap:hover .gb-nav__caret {
    transform: rotate(180deg);
}

/* ── Desktop Dropdown – neu gestaltet ────────────────────── */
.gb-nav__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 6px;
    z-index: 500;
    /* Sanfte Einblendanimation */
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.gb-nav__dropdown-wrap:hover .gb-nav__dropdown,
.gb-nav__dropdown-wrap:focus-within .gb-nav__dropdown {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Kleiner Pfeil nach oben */
.gb-nav__dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px; height: 12px;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: translateX(-50%) rotate(45deg);
}

/* Dropdown-Header "Alle aus X" */
.gb-nav__dropdown-header a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px !important;
    border-radius: var(--radius-sm) !important;
    color: var(--text) !important;
    font-weight: 600 !important;
    font-size: .875rem !important;
}
.gb-nav__dropdown-header a:hover {
    background: var(--accent-bg) !important;
    color: var(--accent-dim) !important;
}
.gb-nav__dropdown-header a i {
    opacity: .5;
    transition: opacity var(--transition), transform var(--transition);
}
.gb-nav__dropdown-header a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* Trennlinie im Dropdown */
.gb-nav__dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 8px;
}

/* Normale Dropdown-Links */
.gb-nav__dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-2);
    font-size: .875rem;
    font-weight: 400;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}
.gb-nav__dropdown li a:hover {
    background: var(--bg-hover);
    color: var(--text);
}

/* Subkategorie-Icon (kleiner Pfeil) */
.gb-nav__sub-icon {
    color: var(--accent-dim);
    font-size: .7rem;
    opacity: .7;
    flex-shrink: 0;
    transform: rotate(90deg);
}

/* ── Brücke zwischen Nav-Link und Dropdown (verhindert gap-Problem) ── */
.gb-nav__dropdown-wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: 12px; /* Überbrückt den Gap damit Maus nicht rausfährt */
}

/* ── Mobile Sidebar – Kategorie mit Toggle ───────────────── */
.gb-sidebar__cat-wrap {
    display: flex;
    align-items: center;
    border-radius: var(--radius-md);
    margin-bottom: 2px;
}
.gb-sidebar__cat-wrap .gb-sidebar__link {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    margin-bottom: 0;
    flex: 1;
}

/* Toggle-Button (Chevron) rechts neben Kategoriename */
.gb-sidebar__toggle {
    width: 38px; height: 44px;
    border: none;
    background: transparent;
    color: var(--text-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: background var(--transition), color var(--transition);
    flex-shrink: 0;
}
.gb-sidebar__toggle:hover {
    background: var(--bg-hover);
    color: var(--text);
}
.gb-sidebar__toggle i {
    transition: transform var(--transition);
}
.gb-sidebar__toggle.open i {
    transform: rotate(180deg);
}
.gb-sidebar__cat-wrap:has(.gb-sidebar__link.active) .gb-sidebar__toggle {
    background: var(--accent-bg);
}

/* Unterkategorien-Container (eingeklappt) */
.gb-sidebar__subcats {
    display: none;
    padding-left: 14px;
    margin-bottom: 4px;
}
.gb-sidebar__subcats.open {
    display: block;
}

/* Unterkategorie-Link (eingerückt) */
.gb-sidebar__link--sub {
    font-size: .875rem;
    color: var(--text-3) !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
}
.gb-sidebar__link--sub:hover,
.gb-sidebar__link--sub.active {
    color: var(--text) !important;
}

/* ── Nav-Position für absolute Dropdown ──────────────────── */
.gb-nav__links > li {
    position: relative;
}

/* ── Logo-Klassen ─────────────────────────────────────────── */
.gb-logo {
    display: inline-flex;
    align-items: center;
}
.gb-logo--center {
    justify-content: center;
    display: flex;
}
.gb-logo__img {
    display: block;
    /* Im Dark-Mode: helles Logo etwas aufhellen falls nötig */
    filter: none;
}
/* Dark-Mode: falls Logo dunkle Teile hat, leicht aufhellen */
[data-theme="dark"] .gb-logo__img {
    filter: brightness(1.05);
}

/* ── Legal / Impressum ───────────────────────────────────── */
.gb-legal-page {
    padding-top: 56px;
    padding-bottom: 72px;
}

.gb-legal-shell {
    max-width: 1100px;
    margin: 0 auto;
}

.gb-legal-breadcrumb {
    max-width: 820px;
    margin: 0 auto 18px;
}

.gb-legal-hero {
    margin: 0 auto 38px;
    max-width: 820px;
}

.gb-legal-hero--center {
    text-align: center;
}

.gb-legal-hero--center .gb-tag {
    display: inline-flex;
    margin-bottom: 14px;
}

.gb-legal-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.gb-legal-hero p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-3);
}

.gb-legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.gb-legal-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 26px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.gb-legal-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}

.gb-legal-card--highlight {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--accent-bg) 140%);
}

.gb-legal-card--full {
    grid-column: 1 / -1;
}

.gb-legal-card h2 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.gb-legal-card p {
    font-size: .97rem;
    line-height: 1.85;
    color: var(--text-2);
}

.gb-legal-info-list {
    display: grid;
    gap: 12px;
}

.gb-legal-info-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.gb-legal-info-row__label {
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-3);
}

.gb-legal-info-row__value {
    font-size: .96rem;
    color: var(--text);
    line-height: 1.6;
    word-break: break-word;
}

@media (max-width: 991px) {
    .gb-legal-shell {
        max-width: 820px;
    }

    .gb-legal-grid {
        grid-template-columns: 1fr;
    }

    .gb-legal-card--full {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .gb-legal-page {
        padding-top: 34px;
        padding-bottom: 50px;
    }

    .gb-legal-hero {
        margin-bottom: 28px;
    }

    .gb-legal-hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.1rem);
    }

    .gb-legal-hero p {
        font-size: .95rem;
    }

    .gb-legal-card {
        padding: 20px 18px;
        border-radius: var(--radius-lg);
    }

    .gb-legal-card h2 {
        font-size: 1.05rem;
    }

    .gb-legal-card p {
        font-size: .94rem;
        line-height: 1.75;
    }
}