@charset "UTF-8";
.pageBlock {
    width: 100%;
    padding: 50px var(--contentPadding) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.pageBlock:last-of-type {
    padding-bottom: 50px;
}

.imgBlock {
    display: flex;
    flex-wrap: wrap;
}

.single__photo {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.single__photo:nth-of-type(2),
.single__photo:nth-of-type(3) {
    width: 50%;
}

.singleBlockTitle {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2;
}

.page__txt {
    display: block;
    font-size: 1.6rem;
    line-height: 1.6;
}



@media screen and (min-width:1024px) {
    .pageBlock {
        max-width: 1440px;
        margin: 0 auto;
        padding: 100px var(--contentPaddingPc) 0;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 40px;
    }

    .pageBlock:last-of-type {
        padding-bottom: 100px;
    }

    .imgBlock {
        min-width: 50%;
        width: 50%;
    }

    .singleBlockTitle {
        font-size: 2.2rem;
    }

    .page__txt {
        padding: 20px 40px 0 0;
        font-size: 2rem;
    }
}