/* ============================================================
   FeaturedCards1 — Kiemelt kártyák
   ============================================================ */

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

.fc1-card {
    grid-column: span var(--fc1-col-desktop, 2);
    height: 420px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.fc1-card:hover {
    transform: scale(1.01);
    text-decoration: none;
}

.fc1-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 55%);
    z-index: 0;
}

.fc1-card__label {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 1.6vw, 1.575rem);
    text-transform: uppercase;
    padding: 16px;
    line-height: 1.2;
    margin: 0;
}

.fc1-card__label p{
    margin: 0;
}

.fc1-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 44px;
    height: 44px;
}

/* ============================================================
   Reszponzív — 2 oszlopos mobil grid
   ============================================================ */

@media (max-width: 768px) {
    .fc1-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc1-card {
        grid-column: span var(--fc1-col-mobile, 2);
        height: 280px;
    }

    .fc1-card__label {
        font-size: 1rem;
    }
}
