/* TSK SMS PRO — Prominent auto slider — FULL image visible (no side crop) */
.tsk-banner-slider {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.tsk-banner-viewport {
    width: 100%;
    min-height: 160px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #0c1428 0%, #050816 100%);
    border: 1px solid rgba(34, 211, 238, 0.25);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    contain: layout style;
}

.tsk-banner-img {
    width: 100%;
    height: auto;
    max-height: min(420px, 52vh);
    display: block;
    object-fit: contain;
    object-position: center center;
    transition: opacity 0.28s ease-out;
    opacity: 1;
    will-change: opacity;
}

.tsk-banner-img.is-fading {
    opacity: 0;
}

.tsk-banner-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 0;
}

.tsk-banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.35);
    transition: width 0.25s ease, background 0.25s ease;
}

.tsk-banner-dot.active {
    width: 26px;
    border-radius: 6px;
    background: linear-gradient(90deg, #22d3ee, #6366f1, #a855f7);
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.45);
}

.landing-wrap .tsk-banner-viewport {
    min-height: 180px;
}

.page-home .tsk-banner-slider {
    margin-bottom: 16px;
}

.page-home .tsk-banner-viewport {
    min-height: 170px;
    border-radius: 16px;
}

@media (min-width: 480px) {
    .landing-wrap .tsk-banner-viewport {
        min-height: 220px;
        border-radius: 20px;
    }
    .page-home .tsk-banner-viewport {
        min-height: 200px;
    }
    .tsk-banner-img {
        max-height: min(460px, 48vh);
    }
}

@media (min-width: 768px) {
    .landing-wrap {
        max-width: 580px;
    }
    .landing-wrap .tsk-banner-viewport {
        min-height: 260px;
        padding: 8px;
    }
    .page-home .tsk-banner-viewport {
        min-height: 240px;
    }
    .tsk-banner-img {
        max-height: min(500px, 45vh);
    }
}

@media (max-width: 360px) {
    .tsk-banner-viewport {
        min-height: 150px;
        border-radius: 14px;
    }
}
