/* =====================================================================
 * BSH Termine Overview – ohne Filter
 * ===================================================================== */

.bsh-terms {
    --terms-blue: #4283c4;
    --terms-hover: #1b3a61;
    --terms-text: #000;
    --terms-muted: rgba(0, 0, 0, .78);
    --terms-border: rgba(15, 23, 42, .14);

    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 32px;
    color: var(--terms-text);
    background: #f4f7fb;
}

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

.bsh-terms__head {
    margin-bottom: 16px;
}

.bsh-terms__title {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.3vw, 36px);
    line-height: 1.14;
    font-weight: 500;
}

.bsh-terms__intro {
    margin: 0;
    max-width: 72ch;
    line-height: 1.55;
    color: var(--terms-muted);
}

.bsh-terms__feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border: 0;
    margin: 0 0 14px;
    background: #fff;
}

.bsh-terms__feature-media {
    min-height: 260px;
}

.bsh-terms__feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bsh-terms__feature-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bsh-terms__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.bsh-terms__pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(66, 131, 196, .10);
    color: var(--terms-blue);
    border: 1px solid rgba(66, 131, 196, .24);
    font-size: 12px;
}

.bsh-terms__feature-title {
    margin: 0 0 10px;
    font-size: clamp(20px, 1.7vw, 28px);
    line-height: 1.2;
    font-weight: 500;
}

.bsh-terms__feature-text {
    margin: 0 0 12px;
    line-height: 1.55;
    color: var(--terms-muted);
}

.bsh-terms__details {
    margin: 0 0 14px;
}

.bsh-terms__details-row {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, .14);
}

.bsh-terms__details-row:last-child {
    border-bottom: 0;
}

.bsh-terms__details dt {
    font-size: 13px;
    color: var(--terms-muted);
}

.bsh-terms__details dd {
    margin: 0;
    font-size: 13px;
}

.bsh-terms__cta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bsh-terms__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.bsh-terms__btn--primary {
    background: var(--terms-blue);
    color: #fff;
}

.bsh-terms__btn--ghost {
    background: #fff;
    border-color: rgba(66, 131, 196, .35);
    color: var(--terms-blue);
}

.bsh-terms__btn--primary:hover,
.bsh-terms__btn--primary:focus-visible {
    background: var(--terms-hover);
    color: #fff;
}

.bsh-terms__btn--ghost:hover,
.bsh-terms__btn--ghost:focus-visible {
    background: #fff;
    border-color: var(--terms-hover);
    color: var(--terms-hover);
}

.bsh-terms__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.bsh-terms__all {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.bsh-terms__all-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: #eb6a05;
    color: #fff;
    border-radius: 50px 0 50px 0;
    font-family: inherit;
    transition: border-radius .35s ease, background .25s ease;
}

.bsh-terms__all-btn:hover,
.bsh-terms__all-btn:focus-visible {
    border-radius: 0 50px 0 50px;
    background: #1b3a61;
    color: #fff;
}

.bsh-terms__card {
    border: 0;
    background: #fff;
}

.bsh-terms__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.bsh-terms__card-link--static {
    cursor: default;
}

.bsh-terms__card-link:hover .bsh-terms__card-title,
.bsh-terms__card-link:focus-visible .bsh-terms__card-title {
    color: var(--terms-hover);
}

.bsh-terms__card-link:hover .bsh-terms__badge,
.bsh-terms__card-link:focus-visible .bsh-terms__badge {
    background: var(--terms-hover);
}

.bsh-terms a:hover,
.bsh-terms a:focus-visible {
    color: var(--terms-hover);
}

.bsh-terms__card-media {
    position: relative;
    height: 180px;
    background: #111;
}

.bsh-terms__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bsh-terms__badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, .62);
    color: #fff;
    padding: 7px 10px;
    font-size: 12px;
    letter-spacing: .03em;
}

.bsh-terms__card-body {
    padding: 12px;
}

.bsh-terms__card-title {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 500;
}

.bsh-terms__card-text {
    margin: 0 0 10px;
    color: var(--terms-muted);
    font-size: 14px;
    line-height: 1.5;
}

.bsh-terms__card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--terms-muted);
}

.bsh-terms__card-cta {
    margin-top: 12px;
}

.bsh-terms__card-cta .bsh-terms__btn {
    min-height: 0;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    border: 0;
    border-radius: 50px 0 50px 0;
    background: #eb6a05;
    color: #fff;
    transition: border-radius .35s ease, background .25s ease;
}

.bsh-terms__card-cta .bsh-terms__btn:hover,
.bsh-terms__card-cta .bsh-terms__btn:focus-visible {
    border-radius: 0 50px 0 50px;
    background: #1b3a61;
    color: #fff;
}

@media (max-width: 980px) {
    .bsh-terms__feature {
        grid-template-columns: 1fr;
    }

    .bsh-terms__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .bsh-terms {
        padding: 32px 18px;
    }

    .bsh-terms__grid {
        grid-template-columns: 1fr;
    }

    .bsh-terms__feature-media {
        min-height: 210px;
    }
}
