/* ============================================================================
   Bern Clubwinkel — CTA block + iframe wrapper

   Visual language aligned with the Bernardus design system used in
   archive-sponsor.php, simpele-pagina templates and the homepage:

     · Off-white section bg (#f8f5f0) — calm, not a loud advertising band
     · Charlly Sans uppercase headline with a 48px orange divider
     · Inter / Roboto body in muted #555550
     · 50px pill CTAs: solid orange (primary) + orange outline (secondary)
     · Brand orange #E87722 only — NO green (per CLAUDE.md brand rule)
   ============================================================================ */

.bern-clubwinkel {
    --bcw-orange:        #E87722;
    --bcw-orange-hover:  #D66A1A;
    --bcw-dark:          #1a1a1a;
    --bcw-muted:         #555550;
    --bcw-bg:            #f8f5f0;
    --bcw-border:        #ede9e2;
    --bcw-white:         #ffffff;

    background: var(--bcw-bg);
    border-top: 1px solid var(--bcw-border);
    border-bottom: 1px solid var(--bcw-border);
    padding: 64px 24px 72px;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: var(--bcw-dark);
    width: 100%;
}

.bern-clubwinkel__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 56px;
}

/* ---- Left column: copy + CTAs ----------------------------------------- */
.bern-clubwinkel__content {
    flex: 1 1 55%;
    min-width: 0;
}

.bern-clubwinkel__headline {
    font-family: 'Charlly Sans', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bcw-dark);
    margin: 0 0 18px;
}

/* Section divider — same as .sp-section-header pattern across the site */
.bern-clubwinkel__headline::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--bcw-orange);
    border-radius: 2px;
    margin-top: 18px;
}

.bern-clubwinkel__intro {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--bcw-muted);
    margin: 0 0 28px;
    max-width: 560px;
}
.bern-clubwinkel__intro p { margin: 0 0 .8em; }
.bern-clubwinkel__intro p:last-child { margin: 0; }

/* ---- CTAs -------------------------------------------------------------- */
.bern-clubwinkel__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.bern-clubwinkel__cta {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease,
                color .2s ease, border-color .2s ease;
    cursor: pointer;
}

.bern-clubwinkel__cta--primary {
    background: var(--bcw-orange);
    color: var(--bcw-white) !important;
    border: 2px solid var(--bcw-orange);
    box-shadow: 0 3px 10px rgba(232, 119, 34, 0.30);
}
.bern-clubwinkel__cta--primary:hover,
.bern-clubwinkel__cta--primary:focus-visible {
    background: var(--bcw-orange-hover);
    border-color: var(--bcw-orange-hover);
    box-shadow: 0 5px 16px rgba(232, 119, 34, 0.45);
    color: var(--bcw-white) !important;
    transform: translateY(-1px);
}

.bern-clubwinkel__cta--secondary {
    background: transparent;
    color: var(--bcw-orange) !important;
    border: 2px solid var(--bcw-orange);
}
.bern-clubwinkel__cta--secondary:hover,
.bern-clubwinkel__cta--secondary:focus-visible {
    background: var(--bcw-orange);
    color: var(--bcw-white) !important;
    box-shadow: 0 3px 10px rgba(232, 119, 34, 0.30);
    transform: translateY(-1px);
}

.bern-clubwinkel__cta-arrow {
    display: inline-block;
    transition: transform .15s ease;
}
.bern-clubwinkel__cta:hover .bern-clubwinkel__cta-arrow,
.bern-clubwinkel__cta:focus-visible .bern-clubwinkel__cta-arrow {
    transform: translateX(3px);
}

/* ---- Right column: visual --------------------------------------------- */
.bern-clubwinkel__visual {
    flex: 0 0 38%;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bern-clubwinkel__visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================================
   Iframe wrapper — same calm container, fits below the CTA block on
   /onzeclubwinkel/.
   ============================================================================ */
.bern-clubwinkel-iframe {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 56px;
    font-family: 'Inter', 'Roboto', sans-serif;
}
.bern-clubwinkel-iframe iframe {
    background: var(--bcw-white, #fff);
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.bern-clubwinkel-iframe__note {
    margin: 16px 0 0;
    font-size: 14px;
    color: #6e6156;
    text-align: center;
}
.bern-clubwinkel-iframe__note a {
    color: #E87722;
    text-decoration: underline;
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 921px) {
    .bern-clubwinkel { padding: 52px 20px 60px; }
    .bern-clubwinkel__inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .bern-clubwinkel__headline { font-size: 28px; letter-spacing: 1.2px; }
    .bern-clubwinkel__headline::after { margin-left: auto; margin-right: auto; }
    .bern-clubwinkel__intro { max-width: 100%; margin-left: auto; margin-right: auto; }
    .bern-clubwinkel__ctas { justify-content: center; }
    .bern-clubwinkel__visual { flex: none; width: 100%; max-width: 360px; }
    .bern-clubwinkel-iframe { padding: 28px 20px 40px; }
}

@media (max-width: 544px) {
    .bern-clubwinkel { padding: 40px 16px 48px; }
    .bern-clubwinkel__inner { gap: 24px; }
    .bern-clubwinkel__headline { font-size: 22px; }
    .bern-clubwinkel__intro { font-size: 15px; }
    .bern-clubwinkel__ctas {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .bern-clubwinkel__cta { justify-content: center; }
    .bern-clubwinkel__visual { max-width: 280px; }
    .bern-clubwinkel-iframe { padding: 20px 12px 32px; }
}
