/* Основной информационный блок, его можно целиком добавлять в html столько, сколько необходимо (слева - текст, справа - фото) */
.infoblock-right-left {
    font-family: 'MuseoSansCyrl-100';
    background-color: #ebf9ff;
    height: 610px;
    width: 100%;
    margin: 50px 0px;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    box-sizing: border-box;
    gap: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-clip: border-box;
}

.photo-item-right-left {
    height: 100%;
    aspect-ratio: 1/1;
    flex: 0 0 auto;
    /*background-color: #ffffff;
    background-image: url('../images/sample.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
    border-radius: 30px;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 10px 20px rgba(0, 0, 0, 0.06),
        0 15px 40px rgba(0, 0, 0, 0.10);
    transition: transform 0.5s ease;
}

.photo-item-right-left img {
  width: 100%;
  border-radius: 30px;
}

.photo-item-right-left:hover {
    transform: translateY(-20px);
}

.information-right-left {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    text-align: left;
    color: #000000;
    overflow-y: auto;
    align-items: flex-start;
}

.information-right-left-hr {
    height: 5px;
    width: 100%;
    max-width: 580px;
    margin: 30px 0;
    border-radius: 5px;
    background-color: #808080;
    margin-right: auto;
    display: block;
}

@media (max-width: 1440px) {
    .infoblock-right-left {
        height: 560px;
        padding-left: 70px;
        padding-right: 70px;
        gap: 40px;
    }
    
    .information-right-left-hr {
        max-width: 500px;
        margin: 25px 0;
    }
}

@media (max-width: 1280px) {
    .infoblock-right-left {
        height: 500px;
        padding-left: 50px;
        padding-right: 50px;
        gap: 30px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .photo-item-right-left {
        border-radius: 25px;
    }
    
    .information-right-left {
        padding: 30px 0;
    }
    
    .information-right-left-hr {
        max-width: 450px;
        margin: 20px 0;
        height: 4px;
    }
}

@media (max-width: 1100px) {
    .infoblock-right-left {
        height: 450px;
        padding-left: 50px;
        padding-right: 50px;
        gap: 30px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .photo-item-right-left:hover {
        transform: translateY(-10px);
    }
    
    .information-right-left {
        padding: 20px 0;
    }
    
    .information-right-left-hr {
        max-width: 350px;
        margin: 20px 0;
        height: 4px;
    }
}

@media (max-width: 900px) {
    .infoblock-right-left {
        flex-direction: column;
        height: auto;
        padding: 25px 40px;
        margin: 0px;
        gap: 40px;
        align-items: center;
    }
    
    .photo-item-right-left {
        width: 100%;
        max-width: 450px;
        height: 450px;
        aspect-ratio: unset;
        margin: 0 auto;
        order: 1;
    }
    
    .information-right-left {
        width: 100%;
        max-width: 600px;
        text-align: center;
        align-items: center;
        padding: 0;
        order: 2;
    }
    
    .information-right-left-hr {
        margin: 20px auto;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .infoblock-right-left {
        padding: 40px 30px;
        gap: 30px;
    }
    
    .photo-item-right-left {
        max-width: 400px;
        height: 400px;
        border-radius: 25px;
    }
    
    .information-right-left-hr {
        max-width: 350px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .infoblock-right-left {
        padding: 30px 20px;
        gap: 25px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .photo-item-right-left {
        max-width: 100%;
        height: 300px;
        border-radius: 20px;
    }
    
    .photo-item-right-left:hover {
        transform: translateY(-8px);
    }
    
    .information-right-left-hr {
        max-width: 280px;
        margin: 15px auto;
        height: 2px;
    }
}