.post-content-body .slider-carousel {
    margin: 2rem 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: linear-gradient(160deg, #0d1b3a 0%, #0a1330 100%);
    box-shadow: 0 18px 40px rgba(11, 23, 44, 0.28);
}

.post-content-body .slider-container {
    position: relative;
    padding: 1.1rem 1.1rem 1.4rem;
}

.post-content-body .slider-slides {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #060b1a;
    min-height: 280px;
}

.post-content-body .slider-slide {
    display: none;
    width: 100%;
}

.post-content-body .slider-slide.active {
    display: block;
}

.post-content-body .slider-slide img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    display: block;
}

.post-content-body .article-gallery-block .slider-slides {
    background: radial-gradient(circle at center, #101d35 0%, #060b1a 72%);
}

.post-content-body .article-gallery-block .slider-slide img {
    height: min(64vw, 560px);
    max-height: 560px;
    object-fit: contain;
    background: #060b1a;
}

.post-content-body .slider-slide-caption {
    margin: 0;
    padding: 0.8rem 1rem 0.95rem;
    color: rgba(226, 232, 240, 0.92);
    background: rgba(6, 11, 26, 0.92);
    font-size: 0.92rem;
    line-height: 1.5;
}

.post-content-body .slider-nav,
.post-content-body .slider-fullscreen {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(9, 18, 38, 0.58);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, transform 0.25s ease;
    z-index: 5;
}

.post-content-body .slider-nav:hover,
.post-content-body .slider-fullscreen:hover {
    background: rgba(22, 39, 74, 0.86);
    transform: translateY(-50%) scale(1.04);
}

.post-content-body .slider-prev {
    left: 1.75rem;
}

.post-content-body .slider-next {
    right: 1.75rem;
}

.post-content-body .slider-fullscreen {
    top: 2.2rem;
    right: 2rem;
    transform: none;
}

.post-content-body .slider-fullscreen:hover {
    transform: scale(1.04);
}

.post-content-body .slider-counter {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.92);
    background: rgba(9, 18, 38, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.post-content-body .slider-indicators {
    margin-top: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 0.45rem;
}

.post-content-body .slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.5);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.post-content-body .slider-dot.active {
    background: #f8fafc;
    transform: scale(1.2);
}

.post-content-body .article-podcast {
    margin: 2rem 0;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.06);
}

.post-content-body .article-podcast figcaption {
    margin-bottom: 0.65rem;
    font-weight: 700;
}

.post-content-body .article-podcast audio {
    width: 100%;
    max-width: 720px;
}

[data-theme="dark"] .post-content-body .article-podcast,
.dark-mode .post-content-body .article-podcast {
    background: rgba(11, 23, 44, 0.82);
    border-color: rgba(58, 117, 190, 0.35);
}

@media (max-width: 768px) {
    .post-content-body .slider-carousel {
        margin: 1.35rem 0;
        border-radius: 16px;
    }

    .post-content-body .slider-container {
        padding: 0.8rem 0.8rem 1.1rem;
    }

    .post-content-body .slider-slides {
        min-height: auto;
        aspect-ratio: 16 / 10;
    }

    .post-content-body .slider-slide,
    .post-content-body .slider-slide.active {
        height: 100%;
    }

    .post-content-body .slider-slide img {
        height: 100%;
        max-height: none;
        object-fit: cover;
    }

    .post-content-body .article-gallery-block .slider-slide img {
        height: 100%;
        object-fit: contain;
    }

    .post-content-body .slider-prev {
        left: 0.85rem;
    }

    .post-content-body .slider-next {
        right: 0.85rem;
    }

    .post-content-body .slider-fullscreen {
        right: 1rem;
    }

    .post-content-body .slider-nav,
    .post-content-body .slider-fullscreen {
        width: 36px;
        height: 36px;
    }

    .post-content-body .slider-counter {
        bottom: 1rem;
        font-size: 0.68rem;
    }
}

@media (max-width: 420px) {
    .post-content-body .slider-container {
        padding: 0.55rem 0.55rem 0.85rem;
    }

    .post-content-body .slider-nav,
    .post-content-body .slider-fullscreen {
        width: 32px;
        height: 32px;
    }

    .post-content-body .slider-prev {
        left: 0.55rem;
    }

    .post-content-body .slider-next {
        right: 0.55rem;
    }

    .post-content-body .slider-fullscreen {
        top: 1rem;
        right: 0.7rem;
    }
}
