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

.block-double-launch-block .block-one [class*="title-"],
.block-double-launch-block .block-two [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-double-launch-block .block-one-content,
.block-double-launch-block .block-two-content {
    position: absolute;
    width: 100%;
    height: calc( 100% - 4rem );
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    top: 0;
    left: 0;
}

/* desktop */
@media (min-width: 769px) {
    .block-double-launch-block {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .block-double-launch-block.reverse {
        flex-direction: row-reverse;
    }
    .block-double-launch-block .block-one,
    .block-double-launch-block .block-two {
        width: 50%;
        height: auto;
        overflow: hidden;
        position: relative;
    }

}