.sf-page {
    padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 6vw, 6rem);
    background: #fff;
}

.sf-shell {
    width: min(100%, 78rem);
    margin-inline: auto;
}

.sf-head {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: start;
}

.sf-head-icon {
    color: var(--zino-text);
    font-size: 1.5rem;
    line-height: 1;
    padding-top: 0.125rem;
}

.sf-title {
    margin: 0 0 0.25rem;
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem);
    font-weight: 700;
    color: #575756;
    line-height: 1.4;
}

.sf-subtitle {
    font-size: 0.75rem;
    color: var(--zino-text-sub);
    line-height: 1.7;
}

.sf-group-title {
    margin: 0 0 var(--space-5);
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.25rem);
    font-weight: 700;
    color: #575756;
    line-height: 1.4;
}

.sf-group--spaced {
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

.sf-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--zino-border-strong);
    background: #fff;
}

.sf-media {
    position: relative;
    aspect-ratio: 317 / 197;
    background: #f3f3f3;
    overflow: hidden;
}

.sf-video-preview,
.sf-image-only {
    position: absolute;
    inset: 0;
}

.sf-video-preview {
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.sf-video-preview::before,
.sf-image-only::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.sf-image-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-card-title {
    position: absolute;
    inset-inline: 1rem;
    bottom: 0.75rem;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.sf-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    z-index: 1;
}

.sf-play i {
    font-size: 1.1rem;
    margin-right: 0.125rem;
}

.sf-card-body {
    padding: 0.75rem 1rem 0.875rem;
}

.sf-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: #5b5b5b;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.sf-card-date {
    color: var(--zino-text-sub);
    white-space: nowrap;
    flex: 0 0 auto;
}

.sf-card-brand {
    min-width: 0;
    color: #575756;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sf-video-player,
.sf-video-player.video-js {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sf-empty {
    border: 1px solid var(--zino-border);
    padding: 2rem 1rem;
    color: var(--zino-text-sub);
}

@media (max-width: 991.98px) {
    .sf-shell {
        width: min(100%, 60rem);
    }

    .sf-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .sf-page {
        padding-top: 2.5rem;
    }

    .sf-head {
        margin-bottom: 1.5rem;
    }

    .sf-card-title {
        inset-inline: 0.75rem;
        font-size: 1.125rem;
        bottom: 0.625rem;
    }

    .sf-card-body {
        padding-inline: 0.75rem;
    }

    .sf-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
