/* ===== SHARED HERO SPLIT SLIDER ===== */
.hero-split {
    max-height: 500px;
    overflow: hidden;
}

.hero-split .hero-inner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.hero-split .hero-bg-cover {
    position: absolute;
    inset: 0;
}

.hero-split .hero-bg-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-split .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 45%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px 24px;
}

.hero-split .hero-overlay .hero-style1 {
    padding: 0;
    max-width: 100%;
}

.hero-split .hero-overlay h1 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 2px;
    line-height: 1.3;
}

.hero-split .hero-overlay h1 a {
    color: #fff;
    text-decoration: none;
}

.hero-split .hero-overlay p {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    max-width: 350px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.hero-split .hero-overlay .btn-group,
.hero-split .hero-overlay .hero-btn {
    margin-top: 2px;
}

.hero-split .hero-overlay .btn-group a,
.hero-split .hero-overlay a.nir-btn {
    font-size: 12px;
    padding: 5px 16px;
}

.hero-split .swiper-slide {
    height: auto;
}

/* Thumbnail slider */
.hero-thumb-slider {
    height: 500px;
}

.hero-thumb-slider .thumb-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.hero-thumb-slider .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-thumb-slider .thumb-item:hover img {
    transform: scale(1.05);
}

.hero-thumb-slider .thumb-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.hero-thumb-slider .swiper-slide-thumb-active .thumb-item {
    box-shadow: 0 0 0 3px var(--theme-color, #ff6b6b);
    border-radius: 8px;
}

/* TABLET */
@media (max-width: 991px) {
    .hero-split { max-height: 400px; }
    .hero-split .hero-inner { height: 400px; }
    .hero-thumb-slider { height: 400px; }
    .hero-split .hero-overlay { padding: 16px 20px; }
    .hero-split .hero-overlay h1 { font-size: 14px; }
    .hero-split .hero-overlay p { font-size: 11px; }
}

/* MOBİL */
@media (max-width: 767px) {
    .hero-split {
        max-height: none;
        flex-direction: column;
    }
    .hero-split .hero-inner { height: 280px; }
    .hero-thumb-slider { height: 100px; }
    .hero-split .hero-overlay { padding: 12px 16px; }
    .hero-split .hero-overlay h1 { font-size: 13px; }
    .hero-split .hero-overlay p { font-size: 10px; }
}

/* KÜÇÜK MOBİL */
@media (max-width: 480px) {
    .hero-split .hero-inner { height: 220px; }
    .hero-thumb-slider { height: 80px; }
    .hero-split .hero-overlay { padding: 10px 12px; }
    .hero-split .hero-overlay h1 { font-size: 12px; }
    .hero-split .hero-overlay p { display: none; }
}