/* БЛОК ОСОБЕННОСТИ */
.secondary-bg {
    color: #ffffff !important;
    background-color: #282e6a;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.abs-block {
    position: relative;
    display: flex;
    flex-direction: column;
}

.abs-block__title {
    color: #ffffff !important;
    text-align: left !important;
    width: 60%;
    margin-bottom: 25px;
    margin-top: 0;
    line-height: 1.1;
}

.abs-block__img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 35%;
    max-width: 450px; /* Ограничение на всех экранах */
    max-height: 100%;
    object-fit: contain;
    cursor: pointer;
    z-index: 10;
    /* Плавность для трансформации и тени по контуру */
    transition: transform 0.3s ease, filter 0.3s ease; 
}

/* Тень по контуру JPG/PNG (drop-shadow) и зум */
.abs-block__img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}

.abs-block__text, .abs-block__text p, .abs-block__text b, .abs-block__text strong {
    color: #ffffff !important;
}

.abs-block__text {
    width: 60%;
    padding-right: 30px;
}

.ul-clean {
    list-style: none;
    padding: 0 !important;
    margin: 0;
}

.ul-clean li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1em;
    color: #ffffff !important;
}

.ul-clean li:before {
    position: absolute;
    left: 0; top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    content: "";
}

/* МОДАЛЬНОЕ ОКНО */
.abs-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    z-index: 19999999 !important; 
}

.abs-modal--active {
    display: flex !important;
}

.abs-modal__overlay {
    position: absolute;
    width: 100%; height: 100%;
}

.abs-modal__content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    z-index: 3001;
}

.abs-modal__close {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    line-height: 0.8;
    z-index: 3002;
}

@media (max-width: 1023px) {
    .abs-block__title { text-align: center !important; width: 100%; }
    .abs-block__img { 
        position: static; 
        width: 100%;
        max-width: 350px; /* Ограничение сохраняется */
        margin: 20px auto;
        display: block;
    }
    .abs-block__text { width: 100%; padding-right: 0; }
}
