.row {
    display: flex;
    flex-wrap: wrap;
}

.categories-with-cta {
    margin: 72px 0;
}

.col-md-3.cta-column {
    align-self: stretch;
}

.cta-wrapper {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 15px;
    border: 8px solid var(--border-orange-color);
    border-radius: 3px;
    background-color: var(--cta-background);
}

.cta-wrapper h4.cta-wrapper-title {
    font-family: Montserrat, sans-serif;
    text-align: center;
    font-weight: bold;
}

.categories-with-cta-post-wrapper:first-child {
    padding-bottom: 32px;
}

.categories-with-cta-post-wrapper:nth-child(2) {
    padding-bottom: 32px;
}

.cta-wrapper a {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--brand-primary);
    padding: 4px 12px;
    color: var(--white);
    border-radius: 3px;
}

@media(max-width: 991px) {
    .categories-with-cta-post-wrapper {
        padding-bottom: 16px;
        width: 100%;
    }
    .categories-with-cta-post-wrapper:first-child {
        padding-bottom: 16px;
    }

    .categories-with-cta-post-wrapper:nth-child(2) {
        padding-bottom: 16px;
    }
    .categories-with-cta-post {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 16px;
    }
    .col-md-3.cta-column {
        margin: 0 auto;
        max-width: 300px;
        height: 220px;
    }
}
