/* ============================================================
   RolunkInfo — Rólunk info szekció
   Figma: node 374-2231
   ============================================================ */

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

.rolunk-info-inner {
    display: flex;
    gap: 34px;
    align-items: stretch;
}

/* --- Bal fotó --- */
.rolunk-info-image {
    flex: 0 0 49%;
    overflow: hidden;
}

.rolunk-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Jobb tartalom --- */
.rolunk-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 26px;
    justify-content: center;
}

.rolunk-info-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* --- Főcím --- */
.rolunk-info-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4.95rem);
    line-height: 1.2;
    color: #000;
    margin: 0;
}

/* --- Leíró szöveg --- */
.rolunk-info-body {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #000;
}

.rolunk-info-body p {
    margin-bottom: 0.75em;
}

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

/* --- Kártyák sor --- */
.rolunk-info-cards {
    display: flex;
    gap: 16px;
}

/* --- Egyedi kártya --- */
.rolunk-info-card {
    flex: 1;
    min-width: 0;
    background: #000;
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.rolunk-info-card-texts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rolunk-info-card-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1.6vw, 1.575rem);
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

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

.rolunk-info-card-body p {
    margin: 0;
}

/* --- Gomb a kártyán --- */
.rolunk-info-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #fff;
    padding: 8px 24px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1.6vw, 1.575rem);
    line-height: 1;
    align-self: flex-start;
    transition: background 0.2s, color 0.2s;
}

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

.rolunk-info-card-btn:hover i{
    color: #000 !important;
}

.rolunk-info-btn-arrow {
    flex-shrink: 0;
    display: block;
}

/* --- Tablet --- */
@media (max-width: 992px) {
    .rolunk-info-inner {
        flex-wrap: wrap;
    }

    .rolunk-info-image {
        flex: 1 0 100%;
        height: 420px;
    }
}

/* --- Mobil --- */
@media (max-width: 575px) {
    .rolunk-info-cards {
        flex-direction: column;
    }

    .rolunk-info-image {
        height: 280px;
    }
}
