/*
 * Hilfebox (rechte Spalte / Mobile: unterhalb). Wird von verleih-page.tpl
 * in die .bbf-verleih-hilfebox-column gelegt, nur die aktive Step-Box
 * wird per JS eingeblendet (hidden attribute toggle).
 */

.bbf-verleih-hilfebox-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.bbf-hilfebox {
    background: transparent;
    margin: 0;
    padding: 0;
}

.bbf-hilfebox[hidden] {
    display: none;
}

.bbf-hilfebox__header {
    display: block;
    padding: 10px 16px;
    background: #111111;
    color: #FFFFFF;
    font-family: "Bebas Neue", "Oswald", "Roboto Condensed", "Arial Narrow", Impact, Helvetica, Arial, sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 3px 3px 0 0;
}

.bbf-hilfebox__card {
    background: #FFFFFF;
    padding: 18px 20px;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.bbf-hilfebox__body {
    font-family: inherit;
    font-size: 15px;
    line-height: 1.55;
    color: #111111;
}

.bbf-hilfebox__body p { margin: 0 0 12px 0; }
.bbf-hilfebox__body p:last-child { margin-bottom: 0; }
.bbf-hilfebox__body h1,
.bbf-hilfebox__body h2,
.bbf-hilfebox__body h3,
.bbf-hilfebox__body h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: #111111;
}
.bbf-hilfebox__body ul,
.bbf-hilfebox__body ol {
    margin: 0 0 12px 0;
    padding-left: 20px;
}
.bbf-hilfebox__body li { margin: 0 0 4px 0; }
.bbf-hilfebox__body a {
    color: #111;
    text-decoration: underline;
    text-decoration-color: #F5E400;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.bbf-hilfebox__body a:hover { color: #000; }
.bbf-hilfebox__body strong { font-weight: 700; }
.bbf-hilfebox__body blockquote {
    margin: 0 0 12px 0;
    padding: 8px 12px;
    border-left: 3px solid #D9D9D9;
    background: #F9FAFB;
    color: #4B5563;
}

.bbf-hilfebox__divider {
    border: 0;
    border-top: 1px solid #E5E7EB;
    margin: 16px 0;
}

.bbf-hilfebox__hint {
    display: block;
    padding: 12px 14px;
    border: 2px solid #B3261E;
    border-radius: 3px;
    background: #FFFFFF;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    color: #111111;
}

.bbf-hilfebox__hint-label {
    display: inline;
    margin-right: 6px;
    font-weight: 700;
    color: #B3261E;
    text-transform: none;
}

.bbf-hilfebox__hint-text {
    display: inline;
}

.bbf-hilfebox__hint p { display: inline; margin: 0; }
.bbf-hilfebox__hint p + p {
    display: block;
    margin-top: 8px;
}

/* ── Sticky-Verhalten auf Desktop ── */

@media (min-width: 1200px) {
    .bbf-verleih-hilfebox-column {
        position: sticky;
        top: 96px;
        align-self: flex-start;
        max-height: calc(100vh - 120px);
        overflow: visible;
    }
}

/* ── Mobile: volle Breite unter Wizard ── */

@media (max-width: 767px) {
    .bbf-verleih-hilfebox-column {
        gap: 12px;
    }
    .bbf-hilfebox__card { padding: 14px 16px; }
    .bbf-hilfebox__body { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .bbf-hilfebox { transition: none !important; }
}
