﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 * BSH Ehrenamt â€“ Styles
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.bsh-ea {
    --orange:    #eb6a05;
    --blue:      #4283c4;
    --blue-dark: #1b3a61;
    --dark:      #0f1720;
    --light-bg:  #f4f7fb;
    --radius-a:  50px 0 50px 0;
    --radius-b:  0 50px 0 50px;
    font-family: inherit;
    color: var(--dark);
}

.bsh-ea *, .bsh-ea *::before, .bsh-ea *::after { box-sizing: border-box; }

.bsh-ea a:focus-visible,
.bsh-ea button:focus-visible,
.bsh-ea input:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
    .bsh-ea, .bsh-ea * { transition-duration: .01ms !important; }
}

.bsh-ea__container { max-width: 1600px; margin: 0 auto; padding: 0 32px; }

.bsh-ea__kicker {
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--orange); margin-bottom: 10px;
}

.bsh-ea__heading {
    font-size: clamp(28px,4vw,42px); font-weight: 700; line-height: 1.15;
    margin: 0 0 10px; color: var(--dark);
}

.bsh-ea__subtitle {
    font-size: clamp(16px,2vw,20px); font-weight: 400; line-height: 1.5;
    margin: 0 0 24px; color: #555;
}

.bsh-ea__text { font-size: 16px; line-height: 1.65; color: #444; margin: 0 0 24px; }

.bsh-ea__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 36px; font-size: 15px; font-weight: 600;
    border: none; cursor: pointer; text-decoration: none;
    background: var(--orange); color: #fff; border-radius: var(--radius-a);
    font-family: inherit; transition: border-radius .35s ease, background .25s ease;
}
.bsh-ea__btn:hover, .bsh-ea__btn:focus-visible {
    border-radius: var(--radius-b); background: var(--blue-dark); color: #fff;
}

.bsh-ea__consent {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 14px; line-height: 1.5; color: #555; cursor: pointer;
}
.bsh-ea__consent input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; accent-color: var(--orange); }
.bsh-ea__consent a { color: var(--orange); text-decoration: underline; }

/* â”€â”€ S1 â€“ Intro â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.bsh-ea-s1 { background: #f4f7fb; padding: 100px 0 60px; position: relative; overflow: hidden; min-height: 50vh; }
.bsh-ea-s1__bg { position: absolute; inset: 0; z-index: 0; background-size: 20%; background-repeat: no-repeat; background-position: right -60px bottom -60px; opacity: .04; pointer-events: none; }
.bsh-ea-s1 .bsh-ea__container { position: relative; z-index: 2; }

.bsh-ea-s1__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.bsh-ea-s1__text { display: flex; flex-direction: column; }

.bsh-ea-s1__body { font-size: 17px; line-height: 1.7; color: #444; }
.bsh-ea-s1__body p { margin: 0 0 16px; }

.bsh-ea-s1__image {
    border-top-left-radius: 50%; border-bottom-right-radius: 50%; overflow: hidden; height: 450px; }
.bsh-ea-s1__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* â”€â”€ S2 â€“ Engagement-MÃ¶glichkeiten â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.bsh-ea-s2 {
    background: #1b3a61; padding: 100px 0; position: relative; overflow: hidden;
}

.bsh-ea-s2__dots {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 320px;
    height: 320px;
    background-image: inherit; /* set via style attr in PHP */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    opacity: .1;
    pointer-events: none;
    z-index: 0;
}

.bsh-ea-s2 .bsh-ea__container { position: relative; z-index: 2; }

.bsh-ea-s2 .bsh-ea__heading { color: #fff; }
.bsh-ea-s2 .bsh-ea__kicker { color: var(--orange); }

.bsh-ea-s2__grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px;
}

.bsh-ea-s2__card {
    background: #fff; border-radius: 50px 0 50px 0; padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(15,27,45,.06);
    display: flex; flex-direction: column; gap: 12px;
    text-decoration: none; color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
}
.bsh-ea-s2__card:hover {
    transform: translateY(-4px); box-shadow: 0 8px 32px rgba(15,27,45,.1);
}

.bsh-ea-s2__icon {
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(235,106,5,.1); color: var(--orange); flex-shrink: 0;
}

.bsh-ea-s2__card-title { font-size: 18px; font-weight: 700; color: var(--dark); margin: 0; }
.bsh-ea-s2__card-text { font-size: 15px; line-height: 1.65; color: #555; margin: 0; }
.bsh-ea-s2__link { font-size: 14px; font-weight: 600; color: var(--orange); margin-top: auto; }

/* â”€â”€ S3 â€“ CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.bsh-ea-s3 {
    background: #fff; padding: 100px 0; position: relative; overflow: hidden;
}

.bsh-ea-s3__bg {
    position: absolute; left: -40px; bottom: -40px; width: 360px; height: 360px;
    background-size: contain; background-repeat: no-repeat; background-position: center;
    opacity: .04; pointer-events: none;
}

.bsh-ea-s3 .bsh-ea__container { position: relative; z-index: 2; }

.bsh-ea-s3__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.bsh-ea-s3__content {
    display: flex; flex-direction: column; align-items: flex-start;
}

.bsh-ea-s3__body { font-size: 16px; line-height: 1.7; color: #444; margin-bottom: 24px; }
.bsh-ea-s3__body p { margin: 0 0 14px; }

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

.bsh-ea-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 32, .55);
}

.bsh-ea-modal__dialog {
    position: relative;
    width: min(560px, calc(100vw - 32px));
    margin: 5vh auto;
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-a);
    box-shadow: 0 24px 80px rgba(15,27,45,.2);
}

.bsh-ea-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--dark);
}

.bsh-ea-modal__title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
    color: var(--dark);
}

.bsh-ea-modal__text {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.bsh-ea-modal__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bsh-ea-modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.bsh-ea-modal__field input,
.bsh-ea-modal__field select,
.bsh-ea-modal__field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #d0d5dd;
    border-radius: 0;
    font: inherit;
    color: var(--dark);
    background: #fff;
}

.bsh-ea-modal__field textarea {
    resize: vertical;
}

body.bsh-ea-modal-open {
    overflow: hidden;
}

.bsh-ea-s3__image {
    border-top-left-radius: 50%; border-bottom-right-radius: 50%; overflow: hidden; height: 450px; }
.bsh-ea-s3__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* â”€â”€ S4 â€“ Newsletter â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.bsh-ea-s4 {
    background: var(--light-bg, #f4f7fb); padding: 100px 0; position: relative; overflow: hidden;
}

.bsh-ea-s4__bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: contain; background-repeat: no-repeat; background-position: right -60px bottom -60px;
    opacity: .04; pointer-events: none;
}

.bsh-ea-s4__wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    background: #fff; border-radius: 0; padding: 48px; align-items: center;
    position: relative; z-index: 1;
}

.bsh-ea-s4__row { display: flex; gap: 12px; margin-bottom: 16px; }

.bsh-ea-s4__input {
    flex: 1; padding: 13px 16px; font-size: 15px; font-family: inherit;
    border: 1.5px solid #d0d5dd; border-radius: 0; background: #fff;
    color: var(--dark); transition: border-color .2s ease, box-shadow .2s ease;
}
.bsh-ea-s4__input:focus {
    outline: none; border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(235,106,5,.12);
}

.bsh-ea-s4__btn {
    padding: 13px 32px; font-size: 15px; font-weight: 600; border: none; cursor: pointer;
    background: var(--orange); color: #fff; border-radius: var(--radius-a);
    transition: border-radius .35s ease, background .25s ease; white-space: nowrap;
    font-family: inherit;
}
.bsh-ea-s4__btn:hover, .bsh-ea-s4__btn:focus-visible {
    border-radius: var(--radius-b); background: var(--blue-dark);
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 900px) {
    .bsh-ea-s1__grid, .bsh-ea-s3__grid { grid-template-columns: 1fr; gap: 40px; }
    .bsh-ea-s1__image, .bsh-ea-s3__image { order: -1; }
    .bsh-ea-s2__grid { grid-template-columns: 1fr; }
    .bsh-ea-s4__wrap { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
    .bsh-ea-s1, .bsh-ea-s2, .bsh-ea-s3, .bsh-ea-s4 { padding: 64px 0; }
}

@media (max-width: 600px) {
    .bsh-ea__container { padding: 0 18px; }
    .bsh-ea__heading { font-size: clamp(22px,5vw,32px); }
    .bsh-ea-s4__row { flex-direction: column; }
    .bsh-ea-s4__btn { width: 100%; }
    .bsh-ea-s2__card { padding: 28px 24px;
    border-radius: 50px 0 50px 0;
}
    .bsh-ea-modal__dialog { padding: 24px 18px; }
}

