/* Shared slider navigation arrows — used by related_slider (product card) and home_news_slider (homepage news). */

.swiper-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

/* Specificity .swiper-nav .swiper-nav__btn (0,2,0) beats the Swiper bundle .swiper-button-prev/next (0,1,0) */
.swiper-nav .swiper-nav__btn {
    /* Reset Swiper bundle absolute positioning */
    position: static;
    top: auto;
    margin-top: 0;
    left: auto;
    right: auto;
    transform: none;
    z-index: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    transition: color 0.2s;
}

/* Kill Swiper bundle default glyph */
.swiper-nav .swiper-nav__btn::after {
    content: none;
}

.swiper-nav .swiper-nav__btn svg {
    display: block;
}

.swiper-nav .swiper-nav__btn:hover {
    color: var(--currentDarkBlueHover, #2F7499);
}

.swiper-nav .swiper-nav__btn:focus,
.swiper-nav .swiper-nav__btn:focus-visible {
    outline: none;
}

.swiper-nav .swiper-nav__btn.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}
