/* Centralized Blog Slider Styles */
.blog__slider {
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
}
.blog__slider:active,
.blog__slider.swiper-pointer-events:active {
    cursor: grabbing !important;
}
.blog__slider .swiper-wrapper {
    cursor: grab !important;
}
.blog__slider .swiper-wrapper:active {
    cursor: grabbing !important;
}
.blog__slider .swiper-slide,
.blog__slider .blog__item,
.blog__slider img,
.blog__slider a {
    -webkit-user-drag: none !important;
    user-drag: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}
.blog__slider-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 24px;
    margin-top: 28px;
}
.blog__slider-pagination .swiper-pagination-bullet {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: width .25s ease, background-color .25s ease, transform .25s ease;
}
.blog__slider-pagination .swiper-pagination-bullet:hover,
.blog__slider-pagination .swiper-pagination-bullet:focus-visible {
    background: rgba(255, 255, 255, 0.8);
    outline: none;
    transform: scale(1.15);
}
.blog__slider-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--primary);
}
