 #featured-collections {
    background: #f5f4f0; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    
}

.fc-wrap {
    width: 100%;
    max-width: 1320px;
}

/* ── HEADING ── */
.fc-heading {
    font-size: clamp(1.4rem, 3vw, 6rem);
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 32px;
}

/* ── GRID ── */
.fc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ── CARD ── */
.fc-card {
    position: relative; 
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    display: block;
}

/* Background image */
.fc-card .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover; 
    transition: transform 0.5s ease;
    z-index: 0;
}

.fc-card:hover .card-bg {
    transform: scale(1.06);
}
 

/* ── ARROW BUTTON top-right ── */
.card-arrow {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 70px;
    height: 70px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.2s;
}

.fc-card:hover .card-arrow {
    background: #333;
}

.card-arrow svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── BOTTOM LABEL ── */
.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #22232340;
    right: 0;
    padding: 16px 16px 18px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.card-title {
    font-size: 2.9rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.card-title strong {
    font-weight: 800;
}

/* ── AVATAR STACK (card 2) ── */
.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
    flex-shrink: 0;
}

.avatar:first-child {
    margin-left: 0;
}

.av-green {
    background: #3dbe6c;
}

.av-orange {
    background: #e07b3a;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .fc-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .fc-card:first-child {
        grid-column: 1 / 3;
        aspect-ratio: 16/9;
    }
}

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

    .fc-card:first-child {
        grid-column: 1;
        aspect-ratio: 4/3;
    }

    .fc-card {
        aspect-ratio: 4/3;
    }
}

 