.tl-image-box {
    display: flex;
    flex-flow: row wrap;
}

.tl-image-box__text {
    flex: 1 1 60%;
    display: flex;
    flex-flow: column;
    padding-right: 2rem;
}

.tl-image-box__image {
    flex: 1 1 40%;    
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: var(--buttonBorderRadius);
}

.tl-image-box__image:after {
    content: '';
    position: absolute;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(43, 42, 41, 1) 0%,
        rgba(43, 42, 41, 1) 70%,
        rgba(255, 94, 20, 1) 70%,
        rgba(255, 94, 20, 1) 100%);
    width: 100%;
    height: clamp(10px, 6px + 1.1364vw, 20px);
}

.tl-image-box__image img {
    object-fit: cover;
}

.tl-image-box__pretitle {
    color: var(--paletteColor1);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;    
    text-transform: uppercase;
}

.tl-image-box__title {
    font-size: clamp(2rem, 1.8182rem + 0.9091vw, 2.5rem);
    font-weight: 300;
}

.tl-image-box__subtitle {
    color: var(--headings-color);
    font-size: clamp(2rem, 1.8182rem + 0.9091vw, 2.5rem);
    font-weight: 700;
}

.tl-image-box__pretitle,
.tl-image-box__title,
.tl-image-box__subtitle {
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.tl-image-box__description {
    margin-top: 1.5rem;
}

@media screen and (max-width: 689.98px) {
    .tl-image-box {
        flex-flow: column-reverse;
    }

    .tl-image-box__image img {
        width: 100%;
    }

    .tl-image-box__text {
        padding-top: 2rem;
        padding-right: 0;
    }
}