.fps-slider-wrap {
    position: relative;
    overflow: hidden;
    line-height: 1;
    min-height: 120px;
}

.elementor-editor-active .fps-slide {
    min-height: 200px;
}

.fps-slide {
    display: flex !important;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.fps-img-side {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.fps-img-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, transparent 0%, transparent 40%, rgba(15, 15, 15, 0.4) 58%, rgba(15, 15, 15, 0.85) 72%, rgba(15, 15, 15, 0.97) 82%, rgb(15, 15, 15) 100%);
    pointer-events: none;
}

.fps-text-panel {
    position: relative;
    z-index: 1;
    margin-left: auto;
    width: 32%;
    flex-shrink: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    padding: 0 44px 0 20px;
    overflow: hidden;
    background-color: transparent;
    background-image: linear-gradient(90deg, #FFFFFF00 26%, #222222 65%);
    mix-blend-mode: inherit;
}

.fps-text-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

@keyframes fps-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fps-cat-label,
.fps-slide-title,
.fps-slide-date,
.fps-slide-excerpt,
.fps-read-btn {
    opacity: 0;
}

.fps-text-inner.fps-in .fps-cat-label {
    animation: fps-rise 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s both;
}

.fps-text-inner.fps-in .fps-slide-title {
    animation: fps-rise 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}

.fps-text-inner.fps-in .fps-slide-date {
    animation: fps-rise 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}

.fps-text-inner.fps-in .fps-slide-excerpt {
    animation: fps-rise 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.32s both;
}

.fps-text-inner.fps-in .fps-read-btn {
    animation: fps-rise 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.fps-cat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
}

.fps-slide-title {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.fps-slide-title a {
    color: #fff;
    text-decoration: none;
}

.fps-slide-title a:hover {
    opacity: 0.75;
}

.fps-slide-date {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.05em;
}

.fps-slide-excerpt {
    font-size: 13px;
    line-height: 1.65;
    color: #aaa;
    margin: 0;
}

.fps-read-btn {
    display: inline-block;
    margin-top: 4px;
    padding: 9px 20px;
    background: #fff;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
}

.fps-read-btn:hover {
    background: #ddd;
    color: #111;
}

.fps-prev,
.fps-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s, border-color 0.2s;
}

.fps-prev {
    left: 14px;
}

.fps-next {
    right: 14px;
}

.fps-slider-wrap:hover .fps-prev,
.fps-slider-wrap:hover .fps-next {
    opacity: 1;
}

.fps-prev:hover,
.fps-next:hover {
    background: rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 255, 255, 0.8);
}

.fps-prev svg,
.fps-next svg {
    width: 17px;
    height: 17px;
    display: block;
}

.fps-slider-wrap .slick-prev,
.fps-slider-wrap .slick-next {
    display: none !important;
}

.fps-slider-wrap .slick-cloned .fps-text-panel {
    visibility: hidden;
}

@media (max-width: 768px) {
    .fps-slide {
        flex-direction: column;
        height: auto !important;
    }
    .fps-img-side {
        width: 100%;
        height: 220px;
    }
    .fps-img-side::after {
        background: linear-gradient(to bottom, transparent 40%, rgba(17, 17, 17, 0.7) 75%, #111 100%);
    }
    .fps-text-panel {
        width: 100%;
        padding: 24px 24px 32px;
    }
    .fps-slide-title {
        font-size: 18px;
    }
    .fps-prev {
        left: 8px;
    }
    .fps-next {
        right: 8px;
    }
}

.fps-prev:focus,
.fps-next:focus,
.fps-prev:hover,
.fps-next:hover {
    background-color: #877552;
}