.sidebar {
    width: 292px;
    background: var(--dark);
    color: white;
    display: flex;
    flex-direction: column;
}

.logo-box {
    min-height: 104px;
    background: white;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
}

.logo-box strong {
    font-size: 24px;
    letter-spacing: .04em;
}

.logo-box span {
    color: var(--red);
    font-weight: 700;
    margin-top: 4px;
}

.menu {
    padding: 18px 14px;
    flex: 1;
}

.menu-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #cbd5e1;
    text-decoration: none;
    padding: 13px 16px;
    margin-bottom: 8px;
    border-radius: 14px;
    cursor: pointer;
}

.menu-link span {
    font-size: 15px;
    font-weight: 700;
}

.menu-link small {
    font-size: 11px;
    color: #94a3b8;
}

.menu-link:hover {
    background: rgba(255,255,255,0.08);
    color: white;
}

.menu-link.active {
    background: var(--red);
    color: white;
    box-shadow: 0 10px 24px rgba(176, 24, 52, 0.35);
}

.menu-link.active small {
    color: rgba(255,255,255,0.78);
}

.sidebar-footer {
    padding: 18px;
    font-size: 12px;
    color: #94a3b8;
    border-top: 1px solid rgba(255,255,255,0.08);
    line-height: 1.45;
}

@media (max-width: 760px) {
    .sidebar {
        width: 100%;
    }
}

.logo-box {
    padding: 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.logo-box img {
    width: 120%;
    height: auto;
    display: block;

}