/* Image Break */
.image-break {
    position: relative;
    background: #000;
    overflow: clip;
    max-height: 80vh;
}

.image-break:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0) 50.48%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.image-break__image img,
.image-break__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}