.section--light {
    background: #efefef;
    padding: 60px 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

#sonstiges h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.info-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    column-gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.info-title h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.info-content {
    min-width: 0;
}

.info-content a {
    color: #ed6b21;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .info-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    h2 {
        font-size: 2.2rem;
    }
}