.menu_item_active {
    color: #afafbe;
    pointer-events: none
}

.menu_list_item.active {
    opacity: 1;
}

.menu_list .menu_dropdown__toggle.active {
    color: #afafbe;
}

.title {
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 40px auto;
    max-width: 900px;
}

.subtitle {
    text-align: center;
    color: white;
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* --- Сетка ОБЖ --- */
.obzh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.obzh-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.obzh-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.obzh-card-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    border-bottom: 1px solid #edf2f7;
}

.obzh-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.obzh-card-icon i {
    font-size: 20px;
    color: #2b3e8a;
}

.obzh-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
}

.obzh-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.obzh-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.obzh-card:hover .obzh-card-image img {
    transform: scale(1.1);
}

.obzh-card-footer {
    padding: 15px 20px;
    font-size: 14px;
    color: #4a5568;
    background: white;
    line-height: 1.5;
}

/* --- Кнопки действий внизу --- */
.obzh-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.obzh-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.obzh-btn--teal {
    background: #3e4e68;
}

.obzh-btn--orange {
    background: #919c5a;
}

.obzh-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.obzh-btn i {
    font-size: 24px;
}

/* --- Оверлей (Лайтбокс) --- */
.obzh-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.obzh-overlay.active {
    display: flex;
}

.obzh-overlay-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.obzh-overlay-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.obzh-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.obzh-close:hover {
    transform: rotate(90deg);
}

/* --- Адаптивность --- */
@media (max-width: 1024px) {
    .obzh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .obzh-grid {
        grid-template-columns: 1fr;
    }

    .obzh-actions {
        flex-direction: column;
    }

    .title {
        font-size: 24px;
    }

    .obzh-btn {
        font-size: 16px;
    }
}