.sph2-collage {
--sph2-vh: 50svh;
--sph2-ink: #000;
--sph2-gap: 18px;
width: 100%;
background: #fff;
padding: var(--sph2-gap);
overflow-x: clip;
}
.sph2-collage,
.sph2-collage *,
.sph2-collage *::before,
.sph2-collage *::after { box-sizing: border-box; }
.sph2-slider {
position: relative;
width: 100%;
height: calc(var(--sph2-vh) - (var(--sph2-gap) * 2));
}
.sph2-slide {
position: absolute;
inset: 0;
opacity: 0;
visibility: hidden;
transition: opacity 520ms ease, visibility 520ms ease;
}
.sph2-slide.is-active {
opacity: 1;
visibility: visible;
z-index: 2;
}
.sph2-wrap {
width: 100%;
height: 100%;
margin: 0;
display: grid;
gap: var(--sph2-gap);
grid-template-columns: 1.05fr 1.9fr 1.05fr;
grid-template-rows: 1fr 1fr;
grid-template-areas:
"lt hero rt"
"lb hero rb";
align-items: stretch;
}
.sph2-tile {
border-radius: 0;
overflow: hidden;
background: #f3f6fb;
position: relative;
background-size: cover;
background-position: center;
}
.sph2-tile::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.06));
pointer-events: none;
z-index: 2;
}
.sph2-tile__btn {
position: absolute;
left: 16px;
bottom: 16px;
z-index: 3;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 38px;
padding: 0 16px;
border: 1px solid rgba(255,255,255,.4);
background: rgba(255,255,255,.82);
color: var(--sph2-ink);
text-decoration: none;
font-size: 13px;
font-weight: 650;
backdrop-filter: blur(8px);
transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.sph2-tile__btn:hover {
transform: translateY(-1px);
background: rgba(255,255,255,.92);
box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.sph2-lt { grid-area: lt; }
.sph2-lb { grid-area: lb; }
.sph2-rt { grid-area: rt; }
.sph2-rb { grid-area: rb; }
.sph2-hero {
grid-area: hero;
border-radius: 0;
overflow: hidden;
position: relative;
background: #f3f6fb;
min-height: 100%;
}
.sph2-hero__bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
}
.sph2-hero__bg::after,
.sph2-hero__gradient {
content: "";
position: absolute;
inset: 0;
z-index: 2;
background:
radial-gradient(900px 600px at 35% 55%, rgba(255,255,255,.88), rgba(255,255,255,.35) 55%, rgba(255,255,255,.10) 100%),
linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.55) 42%, rgba(255,255,255,.08) 75%);
pointer-events: none;
}
.sph2-hero__content {
position: relative;
z-index: 3;
height: 100%;
padding: clamp(20px, 3vw, 48px);
display: flex;
flex-direction: column;
justify-content: center;
max-width: 680px;
}
.sph2-hero__title {
margin: 0 0 12px;
font-size: clamp(24px, 3vw, 44px);
line-height: 1.08;
letter-spacing: -0.02em;
color: var(--sph2-ink);
font-weight: 750;
text-wrap: balance;
}
.sph2-hero__sub {
margin: 0 0 18px;
font-size: 15px;
line-height: 1.6;
color: rgba(0,0,0,.62);
max-width: 50ch;
}
.sph2-hero__cta-row {
display: flex;
gap: 12px;
flex-wrap: wrap;
margin-top: 4px;
}
.sph2-btn {
display: inline-flex;
align-items: center;
justify-content: center;
height: 42px;
padding: 0 20px;
border-radius: 0;
text-decoration: none;
font-size: 14px;
font-weight: 650;
border: 1px solid rgba(15,27,45,.14);
transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.sph2-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.sph2-btn--primary {
background: var(--sph2-ink);
border-color: rgba(15,27,45,.18);
color: #fff;
}
.sph2-btn--primary:hover { background: #0b1626; color: #fff; }
.sph2-btn--ghost {
background: rgba(255,255,255,.72);
color: var(--sph2-ink);
}
.sph2-btn--ghost:hover { background: rgba(255,255,255,.88); }
.sph2-nav {
position: absolute;
left: 50%;
bottom: 18px;
transform: translateX(-50%);
z-index: 5;
display: inline-flex;
align-items: center;
gap: 12px;
padding: 8px 12px;
background: rgba(255,255,255,.78);
backdrop-filter: blur(10px);
}
.sph2-arrow,
.sph2-dot {
border: 0;
background: transparent;
cursor: pointer;
}
.sph2-arrow {
width: 36px;
height: 36px;
font-size: 24px;
line-height: 1;
color: var(--sph2-ink);
}
.sph2-dots {
display: inline-flex;
align-items: center;
gap: 8px;
}
.sph2-dot {
width: 10px;
height: 10px;
border-radius: 999px;
background: rgba(15,27,45,.22);
}
.sph2-dot.is-active {
background: #eb6a05;
}
@media (max-width: 1180px) {
.sph2-wrap { grid-template-columns: 1fr 1.5fr 1fr; }
}
@media (max-width: 980px) {
.sph2-collage { padding: 10px; }
.sph2-slider {
height: auto;
min-height: 0;
}
.sph2-slide {
position: absolute;
}
.sph2-slide.is-active {
position: relative;
}
.sph2-wrap {
height: auto !important;
min-height: auto !important;
grid-template-columns: 1fr 1fr 1fr 1fr !important;
grid-template-rows: auto auto !important;
grid-template-areas:
"hero hero hero hero"
"lt lb rt rb" !important;
gap: 10px !important;
}
.sph2-hero { min-height: 340px; }
.sph2-tile { min-height: 120px; }
.sph2-tile__btn {
left: 10px;
right: 10px;
bottom: 10px;
justify-content: center;
}
.sph2-hero__content { padding: clamp(20px, 5vw, 36px); }
.sph2-hero__bg::after,
.sph2-hero__gradient {
background: linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.45) 60%, rgba(255,255,255,.46) 100%);
}
.sph2-hero__sub { color: #000; }
.sph2-nav { bottom: 12px; }
}
@media (max-width: 600px) {
.sph2-collage { padding: 8px; }
.sph2-wrap { gap: 8px !important; }
.sph2-hero { min-height: 280px; }
.sph2-tile { min-height: 90px; }
.sph2-tile__btn {
min-height: 34px;
font-size: 12px;
padding: 0 12px;
}
.sph2-hero__title { font-size: clamp(22px, 6vw, 32px); }
.sph2-hero__sub { font-size: 14px; }
.sph2-btn { height: 38px; padding: 0 16px; font-size: 13px; }
.sph2-nav { width: calc(100% - 16px); justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
.sph2-slide,
.sph2-btn { transition: none !important; }
}  .bsh-spenden {
--orange:    #eb6a05;
--blue:      #4283c4;
--blue-dark: #1b3a61;
--dark:      #0f1720;
--light-bg:  #f4f7fb;
--gray-bg:   #ececec;
--radius-a:  50px 0 50px 0;
--radius-b:  0 50px 0 50px;
font-family: inherit;
color: var(--dark);
}
.bsh-spenden *,
.bsh-spenden *::before,
.bsh-spenden *::after { box-sizing: border-box; }
.bsh-spenden a:focus-visible,
.bsh-spenden button:focus-visible,
.bsh-spenden input:focus-visible {
outline: 2px solid var(--orange);
outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
.bsh-spenden, .bsh-spenden * { transition-duration: 0.01ms !important; }
}
.bsh-spenden__container {
max-width: 1600px;
margin: 0 auto;
padding: 0 32px;
}
.bsh-spenden__kicker {
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--orange);
margin-bottom: 10px;
}
.bsh-spenden__heading {
font-size: clamp(28px, 4vw, 42px);
font-weight: 700;
line-height: 1.15;
margin: 0 0 18px;
color: var(--dark);
}
.bsh-spenden__text {
font-size: 16px;
line-height: 1.65;
color: #444;
margin: 0 0 24px;
} .bsh-spenden__btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 36px;
font-size: 15px;
font-weight: 600;
border: none;
cursor: pointer;
transition: border-radius .35s ease, background .25s ease, color .25s ease;
text-decoration: none;
text-align: center;
background: var(--orange);
color: #fff;
border-radius: var(--radius-a);
font-family: inherit;
}
.bsh-spenden__btn:hover,
.bsh-spenden__btn:focus-visible {
border-radius: var(--radius-b);
background: var(--blue-dark);
color: #fff;
}
.bsh-spenden__btn--ghost {
background: transparent;
color: var(--orange);
border: 2px solid var(--orange);
}
.bsh-spenden__btn--ghost:hover,
.bsh-spenden__btn--ghost:focus-visible {
background: var(--orange);
color: #fff;
border-color: var(--orange);
border-radius: var(--radius-b);
}
.bsh-spenden__btn--small {
padding: 10px 24px;
font-size: 14px;
}
.bsh-spenden__consent {
display: flex;
gap: 10px;
align-items: flex-start;
font-size: 14px;
line-height: 1.5;
color: #555;
cursor: pointer;
margin-bottom: 20px;
}
.bsh-spenden__consent input[type="checkbox"] {
flex-shrink: 0;
margin-top: 3px;
accent-color: var(--orange);
}
.bsh-spenden__consent a {
color: var(--orange);
text-decoration: underline;
} .bsh-spenden-s1 {
background: #f4f7fb;
padding: 100px 0 60px;
position: relative;
overflow: hidden;
min-height: 50vh;
}
.bsh-spenden-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-spenden-s1 .bsh-spenden__container { position: relative; z-index: 2; }
.bsh-spenden-s1__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.bsh-spenden-s1__text {
display: flex;
flex-direction: column;
}
.bsh-spenden-s1__body {
font-size: 17px;
line-height: 1.7;
color: #444;
}
.bsh-spenden-s1__body p {
margin: 0 0 16px;
}
.bsh-spenden-s1__image {
border-top-left-radius: 50%;
border-bottom-right-radius: 50%;
overflow: hidden;
height: 450px;
}
.bsh-spenden-s1__image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .bsh-spenden-s2 {
background: var(--light-bg);
padding: 100px 0;
}
.bsh-spenden-s2__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
margin-top: 32px;
}
.bsh-spenden-s2__card {
background: #fff;
border-radius: 50px 0 50px 0;
padding: 48px;
box-shadow: 0 4px 24px rgba(15, 27, 45, .06);
}
.bsh-spenden-s2__icon {
margin-bottom: 24px;
display: flex;
align-items: center;
justify-content: center;
width: 72px;
height: 72px;
border-radius: 50%;
background: rgba(235, 106, 5, .08);
}
.bsh-spenden-s2__rows {
display: flex;
flex-direction: column;
gap: 0;
}
.bsh-spenden-s2__row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 0;
border-bottom: 1px solid rgba(15, 27, 45, .06);
}
.bsh-spenden-s2__row:last-child {
border-bottom: none;
}
.bsh-spenden-s2__label {
font-size: 14px;
font-weight: 600;
color: #666;
text-transform: uppercase;
letter-spacing: .04em;
}
.bsh-spenden-s2__value {
font-size: 16px;
font-weight: 700;
color: var(--dark);
}
.bsh-spenden-s2__value--mono {
font-family: 'Courier New', Courier, monospace;
letter-spacing: .06em;
font-size: 17px;
color: var(--blue-dark);
}
.bsh-spenden-s2__hint {
display: flex;
align-items: flex-start;
gap: 10px;
margin-top: 24px;
padding: 16px 20px;
background: rgba(66, 131, 196, .06);
border-radius: 0;
font-size: 14px;
color: var(--blue-dark);
line-height: 1.5;
}
.bsh-spenden-s2__hint svg {
flex-shrink: 0;
color: var(--blue);
margin-top: 2px;
}
.bsh-spenden-s2__frei {
background: #fff;
border-radius: 0;
padding: 48px;
box-shadow: 0 4px 24px rgba(15, 27, 45, .06);
display: flex;
flex-direction: column;
}
.bsh-spenden-s2__frei-icon {
margin-bottom: 24px;
display: flex;
align-items: center;
justify-content: center;
width: 72px;
height: 72px;
border-radius: 50%;
background: rgba(66, 131, 196, .08);
}
.bsh-spenden-s2__frei-title {
font-size: 20px;
font-weight: 700;
color: var(--dark);
margin: 0 0 12px;
}
.bsh-spenden-s2__frei-text {
font-size: 15px;
line-height: 1.65;
color: #555;
margin: 0 0 24px;
flex: 1;
}
.bsh-spenden-s2__frei .bsh-spenden__btn {
align-self: flex-start;
} .bsh-spenden-s3 {
background: #fff;
padding: 100px 0;
position: relative;
overflow: hidden;
}
.bsh-spenden-s3__dots {
position: absolute;
inset: 0;
background-image: radial-gradient(rgb(66 131 196 / 71%) 1px, transparent 1px);
background-size: 9px 9px;
opacity: .45;
pointer-events: none;
}
.bsh-spenden-s3__bg {
position: absolute;
right: -40px;
bottom: -40px;
width: 360px;
height: 360px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
opacity: .04;
pointer-events: none;
}
.bsh-spenden-s3 .bsh-spenden__container {
position: relative;
z-index: 2;
}
.bsh-spenden-s3__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.bsh-spenden-s3__card {
background: var(--light-bg);
border-radius: 0;
padding: 40px 32px;
display: flex;
flex-direction: column;
gap: 14px;
transition: transform .25s ease, box-shadow .25s ease;
scroll-margin-top: 100px;
}
.bsh-spenden-s3__card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 32px rgba(15, 27, 45, .08);
}
.bsh-spenden-s3__icon {
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
background: rgba(235, 106, 5, .1);
color: var(--orange);
flex-shrink: 0;
}
.bsh-spenden-s3__title {
font-size: 19px;
font-weight: 700;
color: var(--dark);
margin: 0;
}
.bsh-spenden-s3__desc {
font-size: 15px;
line-height: 1.65;
color: #555;
margin: 0;
flex: 1;
}
.bsh-spenden-s3__btn {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 14px;
font-weight: 600;
color: var(--orange);
text-decoration: none;
margin-top: auto;
transition: border-radius .35s ease, color .2s ease;
}
.bsh-spenden-s3__btn:hover {
color: var(--blue-dark);
} .bsh-spenden-s4 {
background: #1b3a61;
padding: 100px 0;
position: relative;
overflow: hidden;
}
.bsh-spenden-s4 .bsh-spenden__container { position: relative; z-index: 2; }
.bsh-spenden-s4 .bsh-spenden__heading { color: #fff; }
.bsh-spenden-s4 .bsh-spenden__kicker { color: var(--orange); }
.bsh-spenden-s4__tree {
position: absolute; right: -40px; bottom: -40px;
width: 320px; height: 320px;
background-size: contain; background-repeat: no-repeat; background-position: center;
filter: brightness(0) invert(1); opacity: .1;
pointer-events: none; z-index: 0;
}
.bsh-spenden-s4__bg-logo {
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-spenden-s4__ctas {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.bsh-spenden-s4__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.bsh-spenden-s4__content {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.bsh-spenden-s4__body {
font-size: 16px;
line-height: 1.7;
color: #444;
margin-bottom: 24px;
}
.bsh-spenden-s4__body p {
margin: 0 0 14px;
}
.bsh-spenden-s4__image {
border-top-left-radius: 50%;
border-bottom-right-radius: 50%;
overflow: hidden;
height: 450px;
}
.bsh-spenden-s4__image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .bsh-spenden-s5 {
background: var(--light-bg, #f4f7fb);
padding: 100px 0;
position: relative;
overflow: hidden;
}
.bsh-spenden-s5__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-spenden-s5__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-spenden-s5__row {
display: flex;
gap: 12px;
margin-bottom: 16px;
}
.bsh-spenden-s5__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-spenden-s5__input:focus {
outline: none;
border-color: var(--orange);
box-shadow: 0 0 0 3px rgba(235, 106, 5, .12);
}
.bsh-spenden-s5__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-spenden-s5__btn:hover,
.bsh-spenden-s5__btn:focus-visible {
border-radius: var(--radius-b);
background: var(--blue-dark);
} @media (max-width: 900px) {
.bsh-spenden-s1__grid,
.bsh-spenden-s4__grid {
grid-template-columns: 1fr;
gap: 40px;
}
.bsh-spenden-s1__image,
.bsh-spenden-s4__image {
order: -1;
}
.bsh-spenden-s5__wrap {
grid-template-columns: 1fr;
gap: 40px;
padding: 40px 32px;
}
.bsh-spenden-s1,
.bsh-spenden-s2,
.bsh-spenden-s3,
.bsh-spenden-s4,
.bsh-spenden-s5 {
padding: 64px 0;
}
.bsh-spenden-s3__grid {
grid-template-columns: 1fr 1fr;
}
.bsh-spenden-s2__grid {
grid-template-columns: 1fr;
}
.bsh-spenden-s2__card,
.bsh-spenden-s2__frei {
padding: 32px 24px;
}
.bsh-spenden-s2__row {
flex-direction: column;
align-items: flex-start;
gap: 4px;
}
}
@media (max-width: 600px) {
.bsh-spenden__container {
padding: 0 18px;
}
.bsh-spenden__heading {
font-size: clamp(22px, 5vw, 32px);
}
.bsh-spenden-s5__row {
flex-direction: column;
}
.bsh-spenden-s5__btn {
width: 100%;
}
.bsh-spenden-s2__card,
.bsh-spenden-s2__frei {
padding: 24px 18px;
}
.bsh-spenden-s3__grid {
grid-template-columns: 1fr;
}
.bsh-spenden-s3__card {
padding: 28px 24px;
}
.bsh-spenden-s1__body {
font-size: 15px;
}
} .bsh-spenden-s4 .bsh-spenden-s4__body { color: rgba(255,255,255,.85); }
.bsh-spenden-s4 .bsh-spenden-s4__body a { color: #fff; text-decoration: underline; }
.bsh-spenden-s4 .bsh-spenden-s4__body a:hover { color: var(--orange); }
.bsh-spenden-s4 .bsh-spenden__btn--ghost { color: #fff; border-color: #fff; }
.bsh-spenden-s4 .bsh-spenden__btn--ghost:hover { background: #fff; color: var(--blue-dark); }