
/* ----------------------------------------------------------
   Horizontal Row with Nav for cards view
   ---------------------------------------------------------- */
.wise-card-row-container {
    position: relative;
    width: 100%;
    padding: 0;
    margin-bottom: 56px;
}

.wise-card-row {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    padding: 20px var(--pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--bg-1);
    color: var(--ink-muted);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.wise-card-row-container:hover .nav-btn {
    opacity: 1;
}

.nav-btn:hover {
    background: var(--bg-2);
    color: var(--accent) !important;
    border-color: var(--accent) !important;
}

.nav-btn.prev { left: calc(var(--pad) - 22px); }
.nav-btn.next { right: calc(var(--pad) - 22px); }

.wise-card-item {
    flex: 0 0 160px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* What are these classes for?

.wd-section-link {
    font-family: var(--mono), monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    margin-left: auto;
    transition: opacity .15s;
}

.wd-section-link:hover {
    opacity: 0.7;
} */

/* Mobile */
@media (max-width: 880px) {
    .nav-btn { display: none; }
    .wise-card-item {
        flex: 0 0 140px;
    }
}

