/* ========== Шапка страницы ========== */
header {
    background-color: #333;
    padding: 1px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img.logo {
    height: 85px;
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

header .top-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

header .top-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
}

header .top-menu a:hover {
    text-decoration: underline;
}