.image-with-caption {
    max-width: 680px;
    margin-top: 56px;
    margin-bottom: 56px;

    display: flex;
    flex-direction: column;
}

h2 + .image-with-caption {
    margin-top: 8px;
}

.image-caption {
    display: block;
    width: inherit;
    background-color: #F6F6F6;
    
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 24px;

    font-size: 1rem;
    font-weight: 400;
    line-height: 19.2px;
    color: #051838;
}

.image-with-caption img {
    height: 450px;
}

@media (max-width: 431px) {
    .image-with-caption {
        max-width: 100%;
    }

    .image-with-caption img {
        height: 226.99px;
    }

    .image-caption {
        font-size: 0.75rem;
        line-height: 14.4px;
        padding-left: 1rem;
    }
}