.ogft-featured-slider {
    display: grid;
    gap: 18px;
    padding: 0 0;
}

.ogft-featured-slider .fs-main {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #0b0b0b;
}

.ogft-featured-slider .fs-main-img {
    width: 100%;
    height: 100%;
    max-height: 648px;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.ogft-featured-slider .fs-loader {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.35) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.ogft-featured-slider .fs-loader::after {
    content: "";
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    animation: fs-spin 0.9s linear infinite;
}

.ogft-featured-slider.is-loading .fs-loader {
    opacity: 1;
}

.ogft-featured-slider.is-loading .fs-main-img {
    opacity: 0.5;
}

@keyframes fs-spin {
    to {
        transform: rotate(360deg);
    }
}
.ogft-featured-slider .fs-thumbs {
    display: flex;
    gap: 12px;
    overflow: hidden;
    padding: 4px;
    scroll-behavior: smooth;
    position: relative;
    user-select: none;
    touch-action: pan-y;
}

.ogft-featured-slider .fs-thumbs-wrap {
    position: relative;
    display: grid;
    gap: 10px;
}

.ogft-featured-slider .fs-thumbs-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.ogft-featured-slider .fs-arrow {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: #111;
    color: #f5f5f5;
    border-radius: 999px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.ogft-featured-slider .fs-arrow:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.4);
    background: #181818;
}

.ogft-featured-slider .fs-thumb {
    border: 0;
    padding: 0;
    background: #0f0f10;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
    border: 1px solid transparent;
    min-width: 240px;
    max-width: 320px;
}

.ogft-featured-slider .fs-thumb.is-active {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.ogft-featured-slider .fs-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

.ogft-featured-slider .fs-thumb img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .ogft-featured-slider .fs-thumb {
        min-width: 200px;
        max-width: 260px;
    }
}

@media (max-width: 640px) {
    .ogft-featured-slider .fs-thumb {
        min-width: 160px;
        max-width: 200px;
    }
    .ogft-featured-slider .fs-thumb img {
        width: 100%;
        height: 100px;
    }
}

.ogft-featured-slider .fs-thumbs::-webkit-scrollbar {
    display: none;
}
.ogft-featured-slider .fs-thumbs {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
