/* ============================================================
   Rolunk — Rólunk szekció
   ============================================================ */

.rolunk-section {
    padding: clamp(48px, 6vw, 96px) 0;
}

.rolunk-inner {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.rolunk-photos,
.rolunk-content {
    flex: 1 0 0;
    min-width: min(100%, 460px);
}

/* Fotókollázs */
.rolunk-photos-inner {
    display: flex;
    gap: 25px;
    height: clamp(380px, 48vw, 674px);
}

.rolunk-photo-left {
    flex: 1;
    overflow: hidden;
}

.rolunk-photos-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.rolunk-photo-right-item {
    flex: 1;
    overflow: hidden;
}

.rolunk-photo-left img,
.rolunk-photo-right-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Szöveg tartalom */
.rolunk-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
}

.rolunk-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1.2;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

.rolunk-body {
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.875rem, 1.1vw, 1.05rem);
    line-height: 1.5;
    color: #000;
}

.rolunk-body p {
    margin-bottom: 0;
}

.rolunk-body p + p {
    margin-top: 1em;
}

.rolunk-trust-badge {
    max-width: 220px;
    height: auto;
    display: block;
}

/* CTA gomb */
.rolunk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #000;
    padding: 8px 24px;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1.6vw, 1.575rem);
    color: #000;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}

.rolunk-btn:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

/* Tablet */
@media (max-width: 992px) {
    .rolunk-photos-inner {
        height: 520px;
    }
}

/* Kisebb tablet / nagy mobil */
@media (max-width: 768px) {
    .rolunk-inner {
        flex-direction: column;
    }

    .rolunk-photos {
        width: 100%;
    }

    .rolunk-photos-inner {
        height: 420px;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .rolunk-photos-inner {
        height: 300px;
        gap: 12px;
    }

    .rolunk-photos-right {
        gap: 12px;
    }
}
