.module-three-up-content-panel .columns-wrapper {
    
}

.module-three-up-content-panel .intro-wrapper {
    padding-bottom:2rem;
    text-align: left;
    width:100%;
}

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

.module-three-up-content-panel .intro-wrapper .headline {
    margin-top:2rem;
    position: relative;
    padding-left:3rem;
}

.module-three-up-content-panel .intro-wrapper .headline:before {
    content:url('/images/cho-dot-arrow.svg');
    display: block;
    position: absolute;
    left:0;
    top:0px;
}

.module-three-up-content-panel.panel-text-alignment-center .intro-wrapper {
    text-align: center;
}

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

.module-three-up-content-panel .inner-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:2rem;
    width:100%;
    margin:0;
}

.module-three-up-content-panel .inner-wrapper .columns-wrapper {
    display: flex;
    gap:2rem;
    flex-wrap: wrap;
}

.module-three-up-content-panel .column-wrapper {
    background:var(--light-gray);
    border-radius: 15px;
    display:flex;
    flex-wrap: wrap;
}

.module-three-up-content-panel .column-wrapper .image-wrapper {
    width:100%;
    display: inline-flex;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow:hidden;
}

.module-three-up-content-panel .column-wrapper .image-wrapper img {
    width:100%;
    height:auto;
}

.module-three-up-content-panel .column-wrapper .copy-wrapper {
    padding:2rem;
}

.module-three-up-content-panel .column-wrapper .copy-wrapper p {
    margin-bottom:0;
    color:var(--dark-gray);
}

.module-three-up-content-panel .column-wrapper .copy-wrapper h5 {
    font-weight: 700;
    font-size:2.5rem;
    line-height: 3rem;
    position: relative;
}

.module-three-up-content-panel .column-wrapper .copy-wrapper h6 {
    margin-top:2rem;
    color:var(--dark-gray);
}

.module-three-up-content-panel .column-wrapper .buttons {
    margin-top:3rem;
}

.module-three-up-content-panel .column-wrapper a.cta {
    text-decoration: underline;
    font-size:1.9rem;
    line-height:2.6rem;
    color:#000;
    font-weight: 700;
}

.module-three-up-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;
    text-decoration: none;
}

.module-three-up-content-panel.layout-image-top .copy-wrapper {
    order: 2;
}

.module-three-up-content-panel.layout-image-top .image-wrapper {
    order: 1;
    border-radius: 15px 15px 0 0;
}

.module-three-up-content-panel.layout-image-top .image-wrapper img {
    border-bottom:15px solid var(--light-orange);
}

@media (min-width:1200px) {

    .module-three-up-content-panel .inner-wrapper .columns-wrapper{
        display:grid;
        flex-wrap: wrap;
        gap: 3rem;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: flex-start;
    }

    .module-three-up-content-panel .column-wrapper {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap:2rem;
        width:100%;
        margin:0;
        height: 100%;
    }

    .module-three-up-content-panel .column-wrapper .copy-wrapper {
        padding:4rem 4rem 2rem 4rem;
    }

    .module-three-up-content-panel .column-wrapper .image-wrapper {
        margin-top:auto;
    }

    .module-three-up-content-panel .intro-wrapper .headline {
        padding-left:0;
    }

    .module-three-up-content-panel .intro-wrapper .headline:before {
        left:-3rem;
        top:0;
    }

    .module-three-up-content-panel.layout-image-top .copy-wrapper {
        padding:1rem 4rem 4rem 4rem;
    }
    
}