/* SCROLL MENU */
.scroll-menu {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    display: block;
    text-align: center;
    border-bottom: 1px solid var(--border);
    /* Centers the wrapper */
}

.scroll-menu::-webkit-scrollbar {
    display: none;
}

/* Inner flex wrapper to auto-size correctly */
.scroll-menu .inner {
    display: inline-flex;
    /* Allows real centering */
    width: max-content;
    /* Critical: enables correct overflow scroll */
}

.scroll-menu a {
    padding: 0.55rem 1.2rem;
    text-decoration: none;
    flex-shrink: 0;
    color: inherit;
}

.scroll-menu a:hover {
    text-decoration: underline;
}