#lanList {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

@media (min-width: 750px) {
    #lanList {
        grid-template-columns: repeat(2, 1fr);
    }
}

#lanList .selection {
    width: 100%;
    padding: 16px 20px;
    font-size: 16.5px;
    font-weight: 500;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-sm);
    color: var(--color-text-primary);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.45s var(--motion-ease-out), transform 0.45s var(--motion-ease-out), background 0.3s, color 0.3s, outline 0s;
}

#lanList .selection:hover,
#lanList .selection:focus-visible {
    border-color: var(--color-brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

#lanList .selection[data-active=true] {
    border-color: var(--color-brand);
    background: var(--color-brand-subtle);
    color: var(--color-text-accent);
    font-weight: 700;
}

.page-section #lanList + p {
    max-width: 860px;
    margin: 18px auto 0 auto;
    font-size: 14.5px;
    color: var(--color-text-muted);
    text-align: center;
}
