.module-two-up-brief-content-panel .columns-wrapper {
    display:grid;
    flex-wrap: wrap;
    gap: 2rem;
}

.module-two-up-brief-content-panel .intro-wrapper {
    padding-bottom:4rem;
}

.module-two-up-brief-content-panel .intro-wrapper p:last-child {
    margin-bottom:0;
}

.module-two-up-brief-content-panel .intro-wrapper .headline {
    margin-top:2rem;
}

.module-two-up-brief-content-panel .intro-wrapper h4 {
    text-transform: uppercase;
    color:var(--dark-gray);
    font-size:1.6rem;
    line-height: 2.4rem;
    font-weight: 700;
}

.module-two-up-brief-content-panel .column-wrapper img {
    width:100%;
    height:auto;
    border-bottom:15px solid var(--light-orange);
}

.module-two-up-brief-content-panel .column-wrapper .copy-wrapper {
    padding-top:4rem;
}

.module-two-up-brief-content-panel .column-wrapper .buttons {
    margin-top:2rem;
}

.module-two-up-brief-content-panel .column-wrapper a.cta {
    text-decoration: underline;
    font-size:1.9rem;
    line-height: 2.4rem;
    color:#000;
}

.module-two-up-brief-content-panel .column-wrapper a.cta:after {
    content: '\f061';
    color:#000;
    font: var(--fa-font-solid);
    background-color:var(--yellow);
    border-radius: 50%;
    padding:2px;
    width:2.5rem;
    height:2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size:1rem;
    margin-left:8px;
}

@media (min-width:800px) {
    .module-two-up-brief-content-panel .columns-wrapper {
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
        gap:4rem;
    }
}