.call_to_action {
    font-size: 1.25rem;
    color: var(--lions_blue);
    font-family: lions, serif;
    text-align: center;
}
.call_to_action img {
    display: inline;
}

#link_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    margin: 1rem auto 2rem;
    border-radius: 1rem;
    box-shadow: 0px 3px #b4b0b0;
    overflow: hidden;
    width: 100%;
    max-width: 40rem;
}
section img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}
section .text_content {
    position: relative;
    height: 100%;
    margin: 2rem auto;
    padding: 0 1rem;
    max-width: 33.33333rem;
}
section .btns_container {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media only screen and (min-width: 80rem) {
    #link_container section:first-child .text_content {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    #link_container section {
        max-width: 22rem;
        margin: 1rem 0 2rem;
    }
    #link_container section:first-child {
        max-width: 100%;
        height: min-content;
        display: flex;
        flex-direction: row;
    }
    #link_container section .text_content {
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }
    #link_container section .text_content .btns_container {
        margin-top: auto;
    }
    #link_container section:first-child img {
        height: 100%;
    }
}