.sfvv-slide.sfvv-card-slide {
    position: relative;
    border: 1px solid #268fde;
    border-top-width: 2px;
    border-bottom-width: 2px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.sfvv-card-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.sfvv-card-outer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: auto;
    z-index: 2;
}

.sfvv-card-inner {
    width: 100%;
    max-width: 420px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 18px 18px;
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
}

.sfvv-card-thumb {
    margin-bottom: 12px;
    text-align: center;
    max-height: 220px;
    overflow: hidden;
}

.sfvv-card-thumb img,
.sfvv-card-thumb-img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    display: inline-block;
    border-radius: 10px;
    object-fit: contain;
}

.sfvv-card-title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
    color: #fffaf2;
}

.sfvv-card-body {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.sfvv-card-body.sfvv-card-blog-excerpt {
    font-size: 13px;
    line-height: 1.42;
}

.sfvv-card-kicker {
    margin: 2px 0 10px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    text-align: center;
}

.sfvv-card-body p:last-child {
    margin-bottom: 0;
}

.sfvv-card-cta {
    margin-top: 14px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 22px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, #ffffff, #ffe8b5);
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
    white-space: nowrap;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    transform: translateY(0) scale(1);
    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        background 0.18s ease-out,
        opacity 0.18s ease-out;
    animation: sfvvCtaGlow 2.8s ease-in-out infinite;
}

.sfvv-card-cta:hover,
.sfvv-card-cta:focus-visible {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 12px 26px rgba(0,0,0,0.55);
    outline: none;
}

.sfvv-na-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 30;
    font-size: 12px;
    letter-spacing: 0.02em;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.sfvv-na-cta {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    background: rgba(255,255,255,0.92);
    color:#000;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    cursor:pointer;
    max-width: calc(100% - 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

@keyframes sfvvCtaGlow {
    0%, 100% { box-shadow: 0 8px 20px rgba(0,0,0,0.45); }
    50%      { box-shadow: 0 10px 26px rgba(0,0,0,0.7); }
}

.sfvv-card-landscape-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 12px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.10);
}
.sfvv-card-landscape-video video,
.sfvv-card-landscape-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0,0,0,0.55);
}
.sfvv-card-landscape-video video {
    object-fit: contain;
}

@media (max-width: 767px) {
    .sfvv-card-outer { padding: 18px; }
    .sfvv-card-inner { padding: 16px; }
}
