.site-topbar {
    position: relative;
    z-index: 30;
    background: linear-gradient(90deg, #0f766e 0%, #0891b2 55%, #0ea5e9 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(8, 145, 178, 0.10);
}

.site-topbar__row {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-inline: 0;
}

.site-topbar__left,
.site-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.site-topbar__email,
.site-topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.site-topbar__email:hover,
.site-topbar__link:hover {
    color: #ffffff;
    opacity: 0.92;
    transform: translateY(-1px);
}

.site-topbar__email svg {
    width: 24px;
    height: 24px;
    flex: 0 0 20px;
}

.site-topbar__divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.35);
}

.site-topbar__link {
    font-weight: 500;
}

.site-topbar__link--strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .site-topbar__row {
        min-height: 44px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .site-topbar__left,
    .site-topbar__right {
        width: auto;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .site-topbar__email,
    .site-topbar__link {
        font-size: 13px;
        white-space: nowrap;
    }

    .site-topbar__email span {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .site-topbar__row {
        gap: 8px;
    }

    .site-topbar__left,
    .site-topbar__right {
        gap: 8px;
    }

    .site-topbar__email,
    .site-topbar__link {
        font-size: 12px;
    }

    .site-topbar__divider {
        height: 14px;
    }
}