/* ============================================================
   Elonyok — Előnyök szekció
   ============================================================ */

.elonyok-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: clamp(60px, 12vw, 192px) 0;
}

.elonyok-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.elonyok-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.elonyok-header {
    text-align: center;
    color: #fff;
    width: 100%;
}

.elonyok-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.elonyok-subtitle {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 1.6vw, 1.4rem);
    color: #fff;
    margin: 0;
}

.elonyok-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
    width: 100%;
}

.elonyok-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    min-width: 200px;
    max-width: 220px;
}

.elonyok-icon-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.elonyok-icon-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.elonyok-item-label {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
}

/* Tablet */
@media (max-width: 992px) {
    .elonyok-item {
        min-width: 160px;
    }
}

/* Mobil */
@media (max-width: 576px) {
    .elonyok-inner {
        gap: 32px;
    }

    .elonyok-grid {
        gap: 24px 16px;
        justify-content: center;
    }

    .elonyok-item {
        min-width: calc(50% - 16px);
        max-width: calc(50% - 16px);
    }

    .elonyok-icon-wrap {
        width: 100px;
        height: 100px;
    }

    .elonyok-icon-img {
        width: 110px;
        height: 110px;
    }

    .elonyok-item-label {
        font-size: 0.875rem;
    }

    .elonyok-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
}
