/* ============================================================
   SplitSection — teljes szélességű kétoszlopos szekció
   Figma: 374:2237 — Oswald Bold cím, Poppins body
   ============================================================ */

.split-section {
    background-color: #f4f4f4;
}

.split-section-wrap {
    display: flex;
    min-height: 640px;
}

/* --- Képoszlop --- */
.split-section-image {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    overflow: hidden;
}

.split-section-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Szövegoszlop --- */
.split-section-content {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 96px) clamp(32px, 6.25vw, 100px);
}

.split-section-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 4.95vw, 5rem);
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.split-section-body {
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.9rem, 1.05vw, 1.05rem);
    font-weight: 400;
    line-height: 1.5;
    color: #000;
}

/* --- Kép jobb oldalon (desktop) --- */
.split-section-wrap.image-right .split-section-image { order: 2; }
.split-section-wrap.image-right .split-section-content { order: 1; }

/* --- Tablet / Mobil --- */
@media (max-width: 991px) {
    .split-section-wrap {
        flex-direction: column;
        min-height: unset;
    }

    .split-section-image,
    .split-section-content {
        width: 100%;
        flex: none;
    }

    .split-section-image {
        height: 340px;
    }

    .split-section-img {
        position: static;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* image-right felülírása mobilon — visszaállítjuk az alapértelmezett sorrendet */
    .split-section-wrap.image-right .split-section-image { order: unset; }
    .split-section-wrap.image-right .split-section-content { order: unset; }

    /* Mobilos sorrend: szöveg elöl */
    .split-section-wrap.mobile-text-first .split-section-image { order: 2; }
    .split-section-wrap.mobile-text-first .split-section-content { order: 1; }
}

@media (max-width: 575px) {
    .split-section-image {
        height: 220px;
    }

    .split-section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
}
