.fn-reels-section {
    padding: 2rem clamp(0.75rem, 2.5vw, 1.5rem) 2.5rem;
    max-width: 100%;
    overflow: hidden;
}

.fn-reels-header {
    padding: 0 0.5rem 1rem;
}

.fn-reels-title {
    font-size: 1.35rem;
    margin: 0;
    color: #fff;
}

.fn-reels-swiper {
    overflow: hidden;
    padding-bottom: 0.5rem;
}

.fn-reels-slide {
    width: auto;
    height: auto;
}

.fn-reel-card {
    position: relative;
    display: block;
    width: 170px;
    flex-shrink: 0;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--fn-bg-elevated);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    text-decoration: none;
    color: inherit;
}

.fn-reel-media-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.fn-reel-poster,
.fn-reel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fn-reel-video {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.fn-reel-card.is-playing .fn-reel-video {
    opacity: 1;
}

.fn-reel-card.is-playing .fn-reel-poster {
    opacity: 0;
}

.fn-reel-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.85rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 45%, transparent 70%);
    pointer-events: none;
}

.fn-reel-card-title {
    margin: 0 0 0.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-align: right;
    line-height: 1.35;
}

.fn-reel-card-genre,
.fn-reel-card-year {
    margin: 0;
    font-size: 0.72rem;
    text-align: right;
}

@media (max-width: 575.98px) {
    .fn-reel-card {
        width: min(160px, 58vw);
    }
}
