/* Amita Radio — compact transport next to the logo */

.header,
.site-header {
    justify-content: flex-start;
}

.header-radio {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 0 0 auto;
    margin-left: 10px;
}

.header-radio[hidden],
#amita-radio:empty {
    display: none;
}

.radio-eq {
    display: block;
    width: 56px;
    height: 16px;
    flex: 0 0 auto;
}

.radio-btn {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text-mid);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.radio-btn svg {
    width: 11px;
    height: 11px;
    display: block;
}

.radio-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.radio-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.radio-stop-square {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 1.5px;
    background: currentColor;
}

.logo {
    flex-shrink: 0;
}

.header-actions {
    flex-shrink: 0;
    margin-left: auto;
}

.menu-sep {
    height: 1px;
    margin: 6px 8px;
    background: var(--border-strong, rgba(255, 255, 255, 0.16));
}

.menu-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 12px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-mid);
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.menu-radio:hover,
.menu-radio[aria-pressed="true"] {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.menu-radio-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.menu-radio[aria-pressed="true"] .menu-radio-icon {
    color: #f4f7ff;
    filter: drop-shadow(0 0 6px rgba(220, 230, 255, 0.7));
}

@media (max-width: 768px) {
    .header-cta {
        display: none !important;
    }

    .header-radio {
        margin-left: 6px;
        gap: 0;
    }

    .radio-eq {
        width: 44px;
        height: 14px;
    }

    .radio-btn {
        width: 24px;
        height: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .radio-eq {
        opacity: 0.7;
    }
}
