/* Mobile-first styles (default) */
.mh-small-text-left .mh-stl-container {
    height: 100%;
    overflow: hidden;
}

.mh-small-text-left .mh-stl-item {
    min-height: 300px;
    max-height: 360px;
    width: 100%;
    display: flex;
}

/* Hide img tag on mobile, use background-image instead */
.mh-small-text-left .mh-stl-bg-img {
    display: none;
}

.mh-small-text-left .mh-stl-content {
    background-color: rgba(20, 20, 20, 0.85);
    padding: 3em 2em 2em;
    width: 100%;
    margin: 0;
    z-index: 2;
    min-height: 100%;
}

.mh-small-text-left .mh-stl-title {
    font-size: 2em;
    line-height: normal;
}

/* Tablet and larger screens */
@media (min-width: 992px) {
    .mh-small-text-left .mh-stl-title {
        font-size: 3em;
        line-height: 1.3;
    }

    /* Show img tag on desktop */
    .mh-small-text-left .mh-stl-bg-img {
        display: block;
        object-fit: cover;
        object-position: center;
        top: 0;
        left: 0;
        z-index: 1;
    }
    
    .mh-small-text-left .mh-stl-content {
        background-color: transparent;
        padding: 2.5em 0;
        margin-left: 7%;
        width: 44%;
        min-height: 100%;
        z-index: 3;
    }
}