.block-single-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.block-single-block .block-single {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.block-single-block .block-single picture {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: fit-content;
    display: block;
}
.block-single-block .block-single img,
.block-single-block .block-single source {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1000 / 500;
}

.block-single-block .block-single [class*="title-"] {
    font-size: clamp(14px, 1.15vw, 1.15vw);
    position: absolute;
    z-index: 2;
    bottom: 2rem;
    left: 2rem;
    line-height: 1;
    margin: 0;
}

.block-one-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* desktop */
@media (min-width: 769px) {
    .block-single-block {
        flex-direction: row;
        flex-wrap: wrap;
        max-height: 50vh;
        overflow: hidden;
    }
    .block-single-block.reverse {
        flex-direction: row-reverse;
    }
    
    .block-single-block .block-single picture img,
    .block-single-block .block-single picture source {
        width: 100%;
        max-height: 50vh;
        object-fit: cover;
    }
}