.info_more_media {
    position: relative;
    width: 345px;
    height: 570px;
    border-radius: 12px;
    overflow: hidden;
}

.video_poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
}

.poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.play-button {
    position: absolute;
    z-index: 3;
    width: 47px;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 47px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: none;
}

.video_frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1;
}
iframe {
    pointer-events: none; /* Отключает взаимодействие с iframe, пока видео не включено */
}

.video_frame.active iframe {
    pointer-events: auto; /* Включает взаимодействие, когда видео активно */
}

.info_more{
    padding-top: 120px;

}
.info_more_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.info_more_item{
    width: 60%;
}
.info_more_item h2 span{
    display: block;
}
.info_more_item h2{
    margin: 0 0 40px;
}
.info_more_item p{ 
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2; 
    color: var(--gray);
    margin: 0 0 50px;
}
.info_more_item p strong{
    color: var(--black);
}
 
@media screen and (min-width: 1520px) {
    .info_more_item p{
        font-size: 2.3rem;
    }
    .info_more_container{
        display: grid;
        grid-template-columns: 60% 30%;
    }
    .info_more_item{
        width: 100%;
    }
    .info_more_media{
        margin-left: auto;
    }
}

@media screen and (max-width: 1199px) {
    .info_more_item p{
        font-size: 1.5rem;
        margin: 0 0 30px;
    }
    .info_more_item p strong{
        display: block;
        margin: 0 0 10px;
    }
    .info_more_media{
        width: 30%;
        height: 460px;
    }
    .info_more{
        padding-top: 100px;
    }
}
@media screen and (max-width: 992px) {
    .info_more_item{
        width: 50%;
    }
    .info_more_media{
        width: 40%;
    }
}
@media screen and (max-width: 767px){
    .info_more_item p{
        font-size: 1.13rem; 
    }
    .info_more_item h2{
        margin: 0 0 30px;
    }
    .info_more{
        padding-top: 80px;
    }
}
@media screen and (max-width: 600px) {
    .info_more_item{
        width: 100%;
    }
    .info_more_media{
        width: 100%;
        max-width: 400px;
        height: 570px;
        margin: 0 auto 30px;
    }
}