/* =========================
   Site Mode Tabs
========================= */

.site-mode-tabs {
    display: flex;
    gap: 6px;

    width: 100%;
    margin-bottom: 18px;
    padding: 4px;

    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;

    box-shadow: 0 3px 12px rgba(15, 23, 42, .04);
}

.site-mode-tab {
    flex: 1;

    border-radius: 14px;
    padding: 11px 14px;

    color: #4b5563;
    background: transparent;

    font-size: 14px;
    font-weight: 800;

    text-align: center;
    text-decoration: none;

    transition:
        background .16s ease,
        color .16s ease,
        box-shadow .16s ease,
        transform .16s ease;
}

.site-mode-tab:hover {
    color: #111827;
    background: #f9fafb;
}

.site-mode-tab.active {
    background: #111827;
    color: #ffffff;
    box-shadow: 0 5px 14px rgba(17, 24, 39, .14);
}