.marquee-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;

    min-height: 180px;
    height: 100%;
    background-color: var(--yellow);
    font-family: var(--font-heading);
    color: var(--brown);
}
.marquee-cta::before {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -75px;
    background-image: url(/includes/public/assets/shared/adventure-badge.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 277px;
    height: 276px;
    opacity: 0.12;
    transform: rotate(-30deg);
}

.marquee-cta a,
.marquee-cta a:hover {
    color: inherit;
}
.marquee-cta a {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marquee-cta .content-section {
    padding: 3px 36px 0 18px;
}

.marquee-cta h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.05em;
    margin-bottom: 3px;
    color: var(--brown);
    text-transform: uppercase;
}

.marquee-cta h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1em;
    color: var(--brown);
}

.marquee-cta p {
    font-size: 15px;
    max-width: 330px;
    font-weight: 500;
}

.marquee-cta p i.fas {
    margin-left: 2px;
}

@media (min-width: 64em) {

    .marquee-cta::before {
        width: 322px;
        height: 322px;
        right: -78px;
        bottom: 2px;
    }
    
    .marquee-cta .content-section {
        padding-left: 40px;
    }

    .marquee-cta h3 {
        font-size: 45.89px;
    }

    .marquee-cta h4 {
        font-size: 26px;
    }

    .marquee-cta p {
        font-size: 18px;
        max-width: 330px;
    }
}