/* Component: Menu (Figma 154:218) */
.menu {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background-color: transparent;
    width: 100%;
    height: 60px;
    margin: 0 auto;
    box-sizing: border-box;
    border-top: none;
    border-bottom: none;
}

/* Ensure MenuItems collapse borders nicely */
.menu .menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 100%;
    border: none;
    border-left: none;
    border-right: none;
    margin-right: -1px;
    /* Collapse adjacent borders */
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-neutral-1100);
    background-color: transparent;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, font-size 0.2s ease;
}

.menu .menu-item:hover {
    background-color: transparent;
    color: var(--color-primary-400-main);
}

.menu .menu-item.active {
    background-color: transparent;
    color: var(--color-primary-400-main);
    font-size: 32px;
}

.menu .menu-spacer {
    flex: 1;
    height: 100%;
    box-sizing: border-box;
}

.menu .menu-spacer:first-child {
    margin-right: -1px;
}

.menu .menu-spacer:last-child {
    margin-left: -1px;
}
