/* ===== Topic Blocks (Bild + Text nebeneinander) ===== */
.topic-block {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(139, 92, 42, 0.07);
    margin-bottom: 2.5rem;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.topic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 260px;
}

.topic-text {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.topic-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.topic-headline {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.topic-block.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .topic-block,
    .topic-block.reverse {
        flex-direction: column;
    }

    .topic-text {
        padding: 1.5rem 1rem;
    }
}
