/* ============================================================
   Kapcsolat1 — Kapcsolat info kártyák (Figma 664:15363)
   ============================================================ */

.kap1-section {
    padding: clamp(32px, 3vw, 48px) 0;
    background: #fff;
}

/* ---- Szekció cím ---- */

.kap1-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 3.9375vw, 3.9375rem);
    line-height: 1.2;
    color: #000;
    margin-bottom: 24px;
}

/* ---- Kártya rács ---- */

.kap1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

/* ---- Kártya ---- */

.kap1-card {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kap1-card__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(1.375rem, 2.1875vw, 2.1875rem);
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.kap1-card__body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18.9px;
    line-height: 1.5;
    color: #000;
}

.kap1-card__body p {
    margin-bottom: 0;
}

.kap1-card__body a {
    text-decoration: none !important;
    color: black;
}

.kap1-card__body a:hover {
    color: var(--primary);
}

.kap1-card__body strong,
.kap1-card__body b {
    font-weight: 700;
}

/* ---- Tablet ---- */

@media (max-width: 991px) {
    .kap1-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Mobil ---- */

@media (max-width: 575px) {
    .kap1-section {
        padding: 32px 0;
    }

    .kap1-card__body {
        font-size: 1rem;
    }
}
