.image-content {
    background-image: var(--bg-mobile);
    background-position: var(--bg-mobile-align);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: var(--mobile-margin-top);
    margin-bottom: var(--mobile-margin-bottom);
}
.image-content .wrapper {
    padding-left: var(--pad-sides);
    padding-right: var(--pad-sides);
    display: flex;
    font-family:Poppins;
    flex-direction: column;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    
    gap: var(--mobile-gap-col);
}

.image-content article {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-content article p:last-of-type {
    margin-bottom:0;
}

.image-content article ol {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom:0;
}

.image-content .heading {
    background: var(--stroke-current-tier);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: "Bona Nova SC";
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0;
    text-transform:none;
}

.image-content .img {
    aspect-ratio: var(--img-mobile-ratio);
    width: var(--mobile-width);
}

@media (min-width:768px) {

    .image-content {
        background-image: var(--bg-desktop);
        background-position: var(--bg-desktop-align);
        background-size:cover;
        aspect-ratio: var(--bg-desktop-ratio);
        display: flex;
        align-items: center;
        margin-top: var(--desktop-margin-top);
        margin-bottom: var(--desktop-margin-bottom);        
    }

    .image-content .wrapper {
        flex-direction: row;
        align-items: center;
    }    


    .image-content .heading {
        text-align: left;
    }

    .image-content .btn {
        margin-left:unset;
        margin-right:unset;
    }
}

@media (min-width:1024px) {
    .image-content .wrapper {
        gap:var(--desktop-gap-col);
    }
    .image-content .img {
        width:var(--desktop-width);
    }
    .image-content .heading small {
        font-size: 0.75em;
    }

    .image-content .heading {
        font-size: 60px;
    }
    .image-content {
        font-size:20px;
        font-family:Montserrat;
    }
}

@media (min-width:1200px) {
    .image-content .wrapper {
        max-width:var(--max-width);
        margin-left:auto;
        margin-right:auto;
    }
}
