/**
 * Home Info Sections — 4 Endkunden-Botschafts-Sektionen auf der Landing.
 *
 * Brand-Akzente kommen aus dem Theme-System (Admin-UI pro Land):
 *   --theme-primary   (Badge, Icon-Farbe)
 *
 * Neutrale Farben (Headline, Body, Section-BG) sind absichtlich hardcoded
 * und gelten ueber alle Themes hinweg. Das vermeidet schlecht lesbare
 * Kombinationen wenn ein Theme-Color als Text-Farbe missbraucht wuerde.
 */
.oto-info-sections {
    padding: 34px 0 18px;
    background: #f8f9fb;
}

.oto-info-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.oto-info-row {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 42px;
    align-items: center;
    background: #ffffff;
    border-radius: 28px;
    padding: 22px;
    margin-bottom: 28px;
    box-shadow: 0 16px 40px rgba(13, 25, 48, 0.08);
    overflow: hidden;
}

.oto-info-row.reverse {
    grid-template-columns: 1fr 1.05fr;
}

.oto-info-row.reverse .oto-info-image {
    order: 2;
}

.oto-info-row.reverse .oto-info-content {
    order: 1;
}

.oto-info-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 460px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    background: #f0f2f6;
}

.oto-info-content {
    padding: 10px 4px;
}

/* Badge: Akzent aus Theme-Primary, mit 12% Opacity als Hintergrund */
.oto-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--theme-primary, #f26822) 12%, transparent);
    color: var(--theme-primary, #f26822);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.oto-info-content h2 {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.15;
    color: #24316a;
    font-weight: 800;
}

.oto-info-content p {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.7;
    color: #5d6478;
}

.oto-feature-list {
    display: grid;
    gap: 14px;
}

.oto-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #f7f8fc;
    border-radius: 18px;
}

.oto-feature-item strong {
    display: block;
    color: #24316a;
    font-size: 16px;
    margin-bottom: 4px;
}

.oto-feature-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #687086;
}

/* Icon-Container: Theme-Primary fuer das SVG-stroke="currentColor" */
.oto-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #fff;
    color: var(--theme-primary, #f26822);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.oto-icon svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 991px) {
    .oto-info-row,
    .oto-info-row.reverse {
        grid-template-columns: 1fr;
    }

    .oto-info-row.reverse .oto-info-image,
    .oto-info-row.reverse .oto-info-content {
        order: initial;
    }

    .oto-info-image img {
        min-height: 280px;
        max-height: 360px;
    }

    .oto-info-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .oto-info-sections {
        padding: 24px 0 10px;
    }

    .oto-info-row {
        padding: 14px;
        border-radius: 20px;
        gap: 18px;
    }

    .oto-info-image img {
        min-height: 220px;
        border-radius: 16px;
    }

    .oto-info-content h2 {
        font-size: 24px;
    }

    .oto-info-content p {
        font-size: 15px;
    }

    .oto-feature-item {
        padding: 12px;
    }
}
