/* units.css - Дополнительные стили для страницы aktualnosci */

.units-frame {
    max-width: 1600px;
    padding: 160px 150px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.units-main-title {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #000;
    text-align: right;
}

.overlay-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay-blur.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 60px 20px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.side-menu.open {
    left: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn.rotate {
    transform: rotate(90deg);
}

.side-menu h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu li {
    margin-bottom: 10px;
}

.side-menu a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.side-menu a:hover {
    color: #0d4269;
}

.main-nav a.active {
    color: #0d4269;
    font-weight: 500;
}