/* Hero slider styles */
.fc-hero-slider-wrap {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    font-family: inherit;
}
.fc-hero-main-slider {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}
.fc-slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.fc-slide-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}
.fc-slide-bg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}
.fc-slide-content-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 30px 40px;
    color: #fff;
    text-align: right; /* RTL */
}
.fc-slide-cat {
    margin-bottom: 12px;
}
.fc-slide-cat span {
    background-color: #cb171a; /* Red from image */
    color: #fff;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
}
.fc-slide-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.4;
}
.fc-slide-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.fc-slide-title a:hover {
    color: #f1f1f1;
}
.fc-slide-desc {
    font-size: 16px;
    color: #ccc;
    max-width: 800px;
    line-height: 1.6;
}

/* Thumbs */
.fc-hero-thumbs-slider {
    position: relative;
    background: #111;
    border-top: 1px solid #333;
    overflow: hidden;
}
.fc-thumb-slide {
    padding: 20px 15px;
    cursor: pointer;
    border-left: 1px solid #333; /* Separator */
    transition: all 0.3s ease;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-thumb-slide:last-child {
    border-left: none; /* right side in RTL, but flex puts them side by side, let's leave it as border-left for now. Standard swiper in RTL handles order correctly. */
}
.fc-hero-slider-wrap[dir="rtl"] .fc-thumb-slide {
    border-left: 1px solid #333;
    border-right: none;
}
.fc-hero-slider-wrap[dir="rtl"] .fc-thumb-slide:first-child {
    border-right: none;
}
.fc-thumb-title {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.5;
    text-align: right;
    font-weight: 600;
    transition: color 0.3s ease;
}
.swiper-slide-thumb-active {
    background: #000;
}
.swiper-slide-thumb-active .fc-thumb-title {
    color: #fff;
}
/* Red right border indicator for active thumb */
.swiper-slide-thumb-active {
    position: relative;
}
.swiper-slide-thumb-active::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background-color: #cb171a;
}
@media (max-width: 768px) {
    .fc-slide-title {
        font-size: 24px;
    }
    .fc-hero-main-slider {
        height: 350px;
    }
    .fc-thumb-title {
        font-size: 12px;
    }
}
