/* ── SCH Ähnliche Beiträge – Karussell ── */

.sch-related {
    margin-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.sch-related__title {
    font-family: "Anton", sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    color: #0d1b5e;
}

.sch-related__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.sch-related__track::-webkit-scrollbar {
    display: none;
}

.sch-related__card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    display: block;
    background: #1a1a2e;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sch-related__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.sch-related__img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sch-related__img--placeholder {
    background: #1a1a2e;
}

.sch-related__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 14px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,0.78));
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
}
