/* =============================================
   Nav Arrows - Reusable navigation arrows component
   ============================================= */

.nav-arrows {
    display: flex;
}

.nav-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 0;
    color: var(--color-blue-600, #10228D);
    transition: background-color 0.2s ease;
}

.nav-arrow:hover {
    background-color: #0505051A;
}

.nav-arrow svg {
    width: 32px;
    height: 32px;
    /* Fix: force own compositing layer so SVG strokes render
       correctly inside parent backdrop-filter containers */
    transform: translateZ(0);
}

.nav-arrow--next svg {
    transform: translateX(2px);
}

