/* ============================================================
   LinkCards1 — link kártyák rács
   ============================================================ */

.lc1-section {
    padding: clamp(32px, 4vw, 64px) 0;
}

.lc1-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 3.94vw, 3.94rem);
    line-height: 1.2;
    color: #000;
    margin-bottom: 24px;
}

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

.lc1-card {
    display: flex;
    align-items: center;
    padding: 24px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: box-shadow 0.2s ease, opacity 0.2s ease;
}

.lc1-card:hover {
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    opacity: 0.92;
}

.lc1-card__label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18.9px;
    line-height: 1.3;
    color: #000;
}

/* Kiemelt (special) kártya — fekete háttér */
.lc1-card--special {
    background: #000;
}

.lc1-card--special .lc1-card__label {
    font-weight: 600;
    color: #fff;
}

.lc1-card--special:hover {
    opacity: 0.88;
}

/* Tablet */
@media (max-width: 991px) {
    .lc1-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil */
@media (max-width: 575px) {
    .lc1-grid {
        grid-template-columns: 1fr;
    }
}
