/* ==========================================================================
   Goldwyn Partners Group AG — Brand Stylesheet
   Kommunikationstraining
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --gp-navy: #030c4b;
    --gp-navy-light: #16205e;
    --gp-white: #ffffff;
    --gp-gold: #bda006;
    --gp-bg: #f6f7fb;
    --gp-text: #1c2033;
    --gp-text-muted: #5b6072;
    --gp-border: #e2e4ee;
    --gp-success: #1a7f4e;
    --gp-success-bg: #e8f7ef;
    --gp-error: #b3261e;
    --gp-error-bg: #fdecea;
    --gp-info-bg: #eef1fd;
    --font-brand: 'Libre Baskerville', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --shadow: 0 2px 10px rgba(3,12,75,0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    background: var(--gp-bg);
    color: var(--gp-text);
    line-height: 1.55;
}
h1, h2, h3, h4 { font-family: var(--font-brand); color: var(--gp-navy); margin: 0 0 .5em; }
a { color: var(--gp-navy); }
p { margin: 0 0 1em; }

.gp-gold-bar { height: 4px; background: var(--gp-gold); }

.gp-header {
    background: var(--gp-white);
    color: var(--gp-navy);
    border-bottom: 1px solid var(--gp-border);
}
.gp-header__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gp-header a { color: var(--gp-navy); text-decoration: none; }
.gp-header__brand { font-family: var(--font-brand); font-size: 1.3rem; font-weight: 700; color: var(--gp-navy); }
.gp-header__brand-wrap { display: flex; flex-direction: column; gap: 2px; }
.gp-header__back-link { font-size: .75rem; color: var(--gp-text-muted); opacity: .9; }
.gp-header__back-link:hover { opacity: 1; color: var(--gp-gold); text-decoration: underline; }
.gp-header__nav { display: flex; gap: 20px; align-items: center; font-size: .95rem; }
.gp-header__nav a:hover { color: var(--gp-gold); }
.gp-credits-pill {
    background: var(--gp-bg);
    border: 1px solid var(--gp-border);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 500;
}

.gp-container { max-width: 1080px; margin: 0 auto; padding: 40px 24px; }
.gp-container--narrow { max-width: 620px; margin: 0 auto; padding: 40px 24px; }

.gp-card {
    background: var(--gp-white);
    border: 1px solid var(--gp-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    margin-bottom: 24px;
}
.gp-card--accent { border-top: 4px solid var(--gp-gold); }
.gp-card--clickable { cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.gp-card--clickable:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(3,12,75,0.12); }

.gp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease, opacity .15s ease;
}
.gp-btn--primary { background: var(--gp-navy); color: var(--gp-white); }
.gp-btn--primary:hover { background: var(--gp-navy-light); }
.gp-btn--gold { background: var(--gp-gold); color: var(--gp-navy); }
.gp-btn--outline { background: transparent; color: var(--gp-navy); border-color: var(--gp-navy); }
.gp-btn--outline:hover { background: var(--gp-info-bg); }
.gp-btn--ghost { background: transparent; color: var(--gp-text-muted); }
.gp-btn--sm { padding: 6px 14px; font-size: .85rem; }
.gp-btn--lg { padding: 16px 32px; font-size: 1.1rem; }
.gp-btn:disabled { opacity: .5; cursor: not-allowed; }
.gp-btn--danger { background: var(--gp-error); color: #fff; }

.gp-field { margin-bottom: 18px; }
.gp-label { display: block; font-weight: 500; margin-bottom: 6px; font-size: .9rem; color: var(--gp-text); }
.gp-input, .gp-select, textarea.gp-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--gp-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: .95rem;
    background: var(--gp-white);
}
.gp-input:focus, .gp-select:focus { outline: none; border-color: var(--gp-navy); }
textarea.gp-input { resize: vertical; min-height: 140px; }

.gp-table-wrap { overflow-x: auto; }
.gp-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.gp-table th, .gp-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--gp-border); }
.gp-table th { color: var(--gp-text-muted); font-weight: 500; }

.gp-alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 18px; font-size: .92rem; }
.gp-alert--success { background: var(--gp-success-bg); color: var(--gp-success); }
.gp-alert--error { background: var(--gp-error-bg); color: var(--gp-error); }
.gp-alert--info { background: var(--gp-info-bg); color: var(--gp-navy); }

.gp-badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .78rem; font-weight: 600; }
.gp-badge--navy { background: var(--gp-navy); color: #fff; }
.gp-badge--success { background: var(--gp-success-bg); color: var(--gp-success); }
.gp-badge--neutral { background: var(--gp-bg); color: var(--gp-text-muted); border: 1px solid var(--gp-border); }
.gp-badge--error { background: var(--gp-error-bg); color: var(--gp-error); }
.gp-badge--gold { background: var(--gp-gold); color: var(--gp-navy); }

.gp-avatar { display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 700; }
.gp-avatar--md { width: 40px; height: 40px; font-size: .9rem; }
.gp-avatar--navy { background: var(--gp-navy); color: #fff; }

.gp-progress { background: var(--gp-border); border-radius: 999px; height: 10px; overflow: hidden; }
.gp-progress__bar { background: var(--gp-gold); height: 100%; transition: width .4s ease; }

.gp-divider { border: none; border-top: 1px solid var(--gp-border); margin: 24px 0; }
.gp-footer { text-align: center; padding: 32px 24px; color: var(--gp-text-muted); font-size: .85rem; }
.gp-animate-up { animation: gpUp .3s ease; }
@keyframes gpUp { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }

/* ---- Homepage / Marketing ---- */
.gp-hero {
    position: relative;
    overflow: hidden;
    background: var(--gp-bg);
    border-bottom: 1px solid var(--gp-border);
    color: var(--gp-text);
    padding: 88px 24px 96px;
}
.gp-hero__inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.gp-hero__text { flex: 1 1 420px; }
.gp-hero h1 { color: var(--gp-navy); font-size: 2.6rem; letter-spacing: -.01em; }
.gp-hero p { color: var(--gp-text-muted); font-size: 1.12rem; }
.gp-hero__graphic {
    flex: 0 0 auto;
    width: 260px; height: 260px;
    position: relative;
    z-index: 1;
}
.gp-stat-row { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.gp-stat { }
.gp-stat__num { font-family: var(--font-brand); font-size: 2.1rem; color: var(--gp-gold); font-weight: 700; }
.gp-stat__label { font-size: .85rem; color: var(--gp-text-muted); max-width: 220px; }
.gp-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }

/* ---- Tool / Situation / Level selection ---- */
.gp-choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.gp-level-badge-einstieg { background: var(--gp-info-bg); color: var(--gp-navy); }
.gp-level-badge-professional { background: #fff4e0; color: #8a5a00; }
.gp-level-badge-topcrack { background: #fde8e8; color: #a3231e; }

/* ---- Theory ---- */
.gp-theory__source { font-size: .8rem; color: var(--gp-text-muted); margin-top: -8px; }
.gp-theory__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; margin: 18px 0; }
.gp-theory__item { border-left: 4px solid var(--gp-navy); padding: 8px 14px; background: var(--gp-bg); border-radius: 0 8px 8px 0; }
.gp-theory__item p { margin: 4px 0 0; font-size: .88rem; color: var(--gp-text-muted); }

/* ---- Training flow ---- */
.gp-timer { font-family: var(--font-brand); font-size: 1.6rem; font-weight: 700; color: var(--gp-navy); }
.gp-timer--warning { color: var(--gp-error); }
.gp-situation-box { background: var(--gp-info-bg); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; white-space: pre-wrap; }
.gp-question-box { background: #fff8e6; border: 1px solid #f1e2a8; border-radius: var(--radius); padding: 24px; margin-bottom: 20px; font-weight: 500; }
.gp-record-btn { width: 84px; height: 84px; border-radius: 50%; background: var(--gp-error); color: #fff; border: none; font-size: 1.6rem; cursor: pointer; }
.gp-record-btn.is-recording { animation: gpPulse 1.2s infinite; }
@keyframes gpPulse { 0% { box-shadow: 0 0 0 0 rgba(179,38,30,.5);} 70% { box-shadow: 0 0 0 18px rgba(179,38,30,0);} 100% { box-shadow: 0 0 0 0 rgba(179,38,30,0);} }

.gp-score-ring { width: 140px; height: 140px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-brand); font-size: 2.2rem; font-weight: 700; color: var(--gp-navy); background: conic-gradient(var(--gp-gold) calc(var(--score,0)*1%), var(--gp-border) 0); position: relative; }
.gp-score-ring::before { content: ""; position: absolute; inset: 10px; background: #fff; border-radius: 50%; }
.gp-score-ring span { position: relative; }

@media (max-width: 640px) {
    .gp-header__nav { gap: 12px; font-size: .85rem; }
    .gp-hero h1 { font-size: 1.8rem; }
}

/* ==========================================================================
   Goldwyn Academy — Marketing-Website-Erweiterungen
   ========================================================================== */

/* ---- Header / Nav (mehr Einträge + mobiler Umschalter) ---- */
.gp-header__nav a.gp-nav-cta {
    background: var(--gp-gold);
    color: var(--gp-navy) !important;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 700;
}
.gp-header__nav a.gp-nav-cta:hover { background: #d4b41a; color: var(--gp-navy) !important; }
.gp-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--gp-border);
    color: var(--gp-navy);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 1.1rem;
    cursor: pointer;
}
@media (max-width: 900px) {
    .gp-nav-toggle { display: inline-flex; }
    .gp-header__nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--gp-white);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 24px 20px;
        gap: 4px;
        border-top: 1px solid var(--gp-border);
        box-shadow: 0 12px 24px rgba(3,12,75,.08);
    }
    .gp-header__nav.is-open { display: flex; }
    .gp-header__nav a { padding: 10px 4px; }
    .gp-header__inner { position: relative; }
    .gp-header__nav a.gp-nav-cta { text-align: center; margin-top: 8px; }
}

/* ---- Hero: Eyebrow-Label + CTA-Reihe ---- */
.gp-eyebrow {
    display: inline-block;
    background: rgba(189,160,6,.12);
    color: #8a7204;
    border: 1px solid rgba(189,160,6,.35);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.gp-hero__cta-row { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.gp-hero--light { background: var(--gp-bg); color: var(--gp-text); }

/* ---- Abstrakte Deko-Grafiken (statt Fotos) ---- */
.gp-blob-field { position: relative; }
.gp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}
.gp-node-graphic circle { fill: var(--gp-gold); }
.gp-node-graphic line { stroke: var(--gp-navy); stroke-width: 1; opacity: .25; }
.gp-node-graphic circle.n-navy { fill: var(--gp-navy); opacity: .7; }

/* ---- Sektionen ---- */
.gp-section { padding: 80px 24px; position: relative; }
.gp-section--alt { background: var(--gp-bg); }
.gp-section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.gp-section__head h2 { font-size: 2rem; }
.gp-section__head p { color: var(--gp-text-muted); font-size: 1.08rem; }
.gp-section__inner { max-width: 1120px; margin: 0 auto; }

/* ---- Icon-Medaillons (ersetzen Fotos durch dezente Grafik-Akzente) ---- */
.gp-icon-badge {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--gp-bg);
    border: 1px solid var(--gp-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

/* ---- Vorteile / Feature-Liste mit Checkmarks ---- */
.gp-check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.gp-check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.gp-check-list li::before {
    content: "✓";
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--gp-gold);
    color: var(--gp-navy);
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
}

/* ---- Karten in Feature-/Auswahl-Grids: luftiger, weicher ---- */
.gp-feature-grid, .gp-choice-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 28px;
}
.gp-feature-grid .gp-card,
.gp-choice-grid .gp-card,
.gp-testimonial-grid .gp-card,
.gp-split-grid .gp-card {
    border: 1px solid var(--gp-border);
    box-shadow: 0 4px 16px rgba(3,12,75,.045);
    border-radius: 18px;
    padding: 32px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.gp-feature-grid .gp-card:hover,
.gp-choice-grid .gp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(3,12,75,.09);
}
.gp-feature-grid .gp-card--accent,
.gp-choice-grid .gp-card--accent { border-top: 1px solid var(--gp-border); }

/* ---- Modul-Karten ---- */
.gp-module-card { display: flex; flex-direction: column; height: 100%; }
.gp-module-card__badge { align-self: flex-start; margin-bottom: 10px; margin-top: auto; }
.gp-module-card--placeholder { opacity: .55; }
.gp-group-heading { font-size: 1.05rem; color: var(--gp-text-muted); margin: 40px 0 16px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.gp-group-heading:first-of-type { margin-top: 0; }

/* ---- Referenz-/Partner-Logo-Leiste ---- */
.gp-logo-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.gp-logo-pill {
    background: var(--gp-white);
    border: 1px solid var(--gp-border);
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 700;
    color: var(--gp-navy);
    font-size: .92rem;
}

/* ---- Testimonials ---- */
.gp-testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 28px; }
.gp-testimonial-card { display: flex; flex-direction: column; height: 100%; position: relative; padding-top: 40px !important; }
.gp-testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 6px; left: 24px;
    font-family: var(--font-brand);
    font-size: 3.2rem;
    color: var(--gp-gold);
    opacity: .35;
    line-height: 1;
}
.gp-testimonial-card__quote { font-style: italic; flex-grow: 1; }
.gp-testimonial-card__author { margin-top: 16px; font-size: .85rem; color: var(--gp-text-muted); font-weight: 600; }

/* ---- Split-Panel (Privat / Firma) ---- */
.gp-split-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 28px; }
.gp-split-panel { display: flex; flex-direction: column; }
.gp-split-panel h3 { font-size: 1.4rem; }

/* ---- Stat-Blöcke ausserhalb des Hero (heller Hintergrund) ---- */
.gp-stat--dark .gp-stat__num { color: var(--gp-navy); }
.gp-stat--dark .gp-stat__label { color: var(--gp-text-muted); }

/* ---- CTA-Banner: heller Akzent-Rahmen statt Vollton-Navy ---- */
.gp-cta-banner {
    position: relative;
    overflow: hidden;
    background: var(--gp-bg);
    border: 1px solid var(--gp-border);
    border-top: 3px solid var(--gp-gold);
    color: var(--gp-text);
    border-radius: 20px;
    padding: 56px 48px;
    text-align: center;
}
.gp-cta-banner > * { position: relative; z-index: 1; }
.gp-cta-banner h2 { color: var(--gp-navy); }
.gp-cta-banner p { color: var(--gp-text-muted); }

/* ---- Footer (mehrspaltig, hell) ---- */
.gp-footer-main { background: var(--gp-white); color: var(--gp-text-muted); padding: 56px 24px 24px; border-top: 1px solid var(--gp-border); }
.gp-footer-main__grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 32px; }
.gp-footer-main h4 { color: var(--gp-navy); font-size: 1rem; margin-bottom: 14px; }
.gp-footer-main a { color: var(--gp-text-muted); text-decoration: none; display: block; margin-bottom: 8px; font-size: .92rem; }
.gp-footer-main a:hover { color: var(--gp-gold); }
.gp-footer-main__bottom {
    max-width: 1080px; margin: 32px auto 0; padding-top: 20px;
    border-top: 1px solid var(--gp-border);
    font-size: .82rem; color: var(--gp-text-muted);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---- Formular-Feedback (Kontaktformular) ---- */
.gp-form-note { font-size: .82rem; color: var(--gp-text-muted); margin-top: -8px; }

@media (max-width: 640px) {
    .gp-section { padding: 48px 20px; }
    .gp-cta-banner { padding: 36px 24px; }
    .gp-footer-main__bottom { flex-direction: column; text-align: center; }
    .gp-hero__graphic { display: none; }
}

/* ---- Weiterempfehlen / Social-Share-Buttons ---- */
.gp-share__text { color: var(--gp-text-muted); margin-bottom: 16px; }
.gp-share__row { display: flex; flex-wrap: wrap; gap: 10px; }
.gp-share__btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px 8px 8px; border-radius: 999px;
    border: 1px solid var(--gp-border); background: var(--gp-white);
    color: var(--gp-navy); font-weight: 600; font-size: .88rem;
    text-decoration: none; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.gp-share__btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(3,12,75,.10); border-color: var(--gp-gold); color: var(--gp-navy); }
.gp-share__icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.gp-share__icon svg { width: 16px; height: 16px; }
.gp-share__icon--linkedin { background: #0A66C2; }
.gp-share__icon--x { background: #000; }
.gp-share__icon--facebook { background: #1877F2; }
.gp-share__icon--whatsapp { background: #25D366; }
.gp-share__icon--telegram { background: #26A5E4; }
.gp-share__icon--email { background: var(--gp-navy); }
.gp-share__icon--copy { background: var(--gp-gold); color: var(--gp-navy); }

/* ==========================================================================
   Cookie-Consent-Banner (DSGVO / TTDSG)
   ========================================================================== */
.gp-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: var(--gp-navy);
    color: var(--gp-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,.18);
    padding: 16px 20px;
}
.gp-cookie-banner[hidden] { display: none; }
.gp-cookie-banner__inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}
.gp-cookie-banner__text {
    flex: 1 1 420px;
    font-size: .87rem;
    line-height: 1.55;
    color: rgba(255,255,255,.92);
    margin: 0;
}
.gp-cookie-banner__text a { color: var(--gp-gold); text-decoration: underline; }
.gp-cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    flex: 0 0 auto;
}
.gp-cookie-banner__actions .gp-btn--outline { color: var(--gp-white); border-color: rgba(255,255,255,.55); }
.gp-cookie-banner__actions .gp-btn--outline:hover { background: rgba(255,255,255,.12); }
.gp-cookie-banner__link-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,.85);
    text-decoration: underline;
    font-size: .85rem;
    font-family: var(--font-body);
    cursor: pointer;
    padding: 6px 4px;
}

.gp-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(3,12,75,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.gp-cookie-modal[hidden] { display: none; }
.gp-cookie-modal__card {
    background: var(--gp-white);
    border-radius: var(--radius);
    max-width: 520px;
    width: 100%;
    padding: 26px 26px 22px;
    box-shadow: var(--shadow);
    max-height: 88vh;
    overflow-y: auto;
}
.gp-cookie-modal__card h3 { margin-top: 0; }
.gp-cookie-modal__intro { font-size: .87rem; color: var(--gp-text-muted); }
.gp-cookie-category {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-top: 1px solid var(--gp-border);
}
.gp-cookie-category:first-of-type { border-top: none; padding-top: 6px; }
.gp-cookie-category__label { font-weight: 700; color: var(--gp-navy); margin: 0 0 4px; }
.gp-cookie-category__desc { font-size: .84rem; color: var(--gp-text-muted); margin: 0; }
.gp-cookie-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex: 0 0 auto; margin-top: 2px; }
.gp-cookie-switch input { opacity: 0; width: 0; height: 0; }
.gp-cookie-switch__track { position: absolute; inset: 0; background: var(--gp-border); border-radius: 999px; transition: background .15s; cursor: pointer; }
.gp-cookie-switch__track::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .15s;
    box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.gp-cookie-switch input:checked + .gp-cookie-switch__track { background: var(--gp-gold); }
.gp-cookie-switch input:checked + .gp-cookie-switch__track::before { transform: translateX(18px); }
.gp-cookie-switch input:disabled + .gp-cookie-switch__track { opacity: .55; cursor: not-allowed; }
.gp-cookie-modal__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

@media (max-width: 560px) {
    .gp-cookie-banner__inner { flex-direction: column; align-items: stretch; }
    .gp-cookie-banner__actions { justify-content: flex-start; }
}
