/* ============================================
   FEATURED CARDS SECTION
   ============================================ */

.featured {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.featured-cards {
    display: flex;
    gap: 2.2vw;
    padding: 0 7vw;
}

.featured-card {
    position: relative;
    width: 26vw;
    height: 56vh;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover img {
    transform: scale(1.08);
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent, transparent);
}

.card-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.card-content p {
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
}

.card-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    color: #ffffff;
}

.featured-card:hover .card-arrow {
    background: var(--text-white);
    color: #000;
}

/* ============================================
   FEATURED RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .featured-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .featured-card {
        width: 80vw;
        height: 45vh;
    }
}

@media (max-width: 768px) {
    .featured {
        min-height: auto;
        padding: 4rem 0 3rem;
    }
    
    .featured-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .featured-card {
        width: 90vw;
        height: 35vh;
    }
}
