/* ── DKBS Campaign Hero ─────────────────────────────────────── */

.dkbs-hero {
    width: 100%;
    padding: 64px 24px 72px;
    box-sizing: border-box;
    text-align: center;
    color: #ffffff;
    font-family: 'Figtree', sans-serif;
}

.dkbs-hero__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Venue name */
.dkbs-hero__venue {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

/* Main title — Heading Display: Semibold 72px / 110% / -2% */
.dkbs-hero__title {
    margin: 0;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff !important;
}

/* Subtitle — Heading XS: Semibold 20px / 120% / -2% */
.dkbs-hero__subtitle {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Description — Text regular: Normal 16px / 150% / +1% */
.dkbs-hero__description {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #ffffff;
    max-width: 600px;
}

.dkbs-hero__description p {
    margin: 0 0 8px;
    color: #ffffff;
}

.dkbs-hero__description p:last-child {
    margin-bottom: 0;
}

/* Facts bar */
.dkbs-hero__facts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 16px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 640px;
}

.dkbs-hero__fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    padding: 0 12px;
    min-width: 0;
}

.dkbs-hero__facts-sep {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.dkbs-hero__fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.85;
}

.dkbs-hero__fact-icon svg {
    width: 22px;
    height: 22px;
}

/* Fact text — Text small: Normal 14px / 150% / +1% */
.dkbs-hero__fact-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #ffffff;
}

/* CTA button */
.dkbs-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 14px 28px;
    background: #BCD3B2;
    color: #425447;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s;
}

.dkbs-hero__cta:hover {
    background: #E7F1E2;
    transform: translateY(1px);
    color: #425447;
    text-decoration: none;
}

.dkbs-hero__cta svg {
    flex-shrink: 0;
}

/* Full-width image below hero */
.dkbs-hero__fullwidth-image {
    width: 100%;
    line-height: 0;
}

.dkbs-hero__fullwidth-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 560px;
    object-fit: cover;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 767px) {
    .dkbs-hero {
        padding: 48px 20px 56px;
    }

    .dkbs-hero__facts {
        flex-direction: column;
        gap: 16px;
    }

    .dkbs-hero__facts-sep {
        width: 48px;
        height: 1px;
    }

    .dkbs-hero__fact {
        padding: 0;
    }

    .dkbs-hero__fullwidth-image img {
        max-height: 280px;
    }
}
