.module-multi-column-content-panel .columns-wrapper {
    display:grid;
    flex-wrap: wrap;
    gap: 2rem;
    grid-template-columns: 1fr;
    padding-bottom:2rem; /* to account for flickity page dots */
}

.module-multi-column-content-panel .intro-wrapper {
    padding-bottom:4rem;
    text-align: center;
}

.module-multi-column-content-panel .inner-wrapper.panel-text-alignment-left .intro-wrapper {
    text-align: left;
}

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

.module-multi-column-content-panel .intro-wrapper .headline {
    margin-top:2rem;
}

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

.module-multi-column-content-panel .column-wrapper {
    border-radius: 10px;
    background:#fff;
    padding:3rem;
    box-shadow: 0px 0px 20px #00000014;
    width:100%;
}

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

.module-multi-column-content-panel .column-wrapper .image-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    margin-top:4rem;
}

.module-multi-column-content-panel .column-wrapper .image-wrapper i {
    font-size:3rem;
    width:8rem;
    height:8rem;
    border-radius: 50%;
    border:2px dotted #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    color:var(--dark-orange);
}

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

.module-multi-column-content-panel .column-wrapper a.cta:not(.cta-button) {
    text-decoration: underline;
    font-size:1.9rem;
    line-height: 2.6rem;
    color:#000;
    font-weight:800;
}

.module-multi-column-content-panel .column-wrapper a.cta:not(.cta-button):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;
}

.module-multi-column-content-panel .column-wrapper p:last-child {
    margin-bottom:0;
}

/* handle component color scheme variations */

.module-multi-column-content-panel .mcs-orange .column-wrapper {
    background-color:var(--dark-orange);
}

.module-multi-column-content-panel .mcs-orange h5 {
    color:#fff;
    font-weight: 700;
}

.module-multi-column-content-panel .mcs-orange h5 strong {
    color:#000;
}

.module-multi-column-content-panel .mcs-orange .columns-wrapper p {
    color:#000;
}

.module-multi-column-content-panel .mcs-orange .column-wrapper .image-wrapper i {
    color:#fff;
    border:2px dotted #F0A97D;
}

.module-multi-column-content-panel .mcs-orange .column-wrapper a.cta {
    color:#fff;
}

.module-multi-column-content-panel .mcs-gray .column-wrapper {
    background-color:var(--light-gray);
    box-shadow:none;
}

.module-multi-column-content-panel .mcs-gray h5 {
    color:#000;
}

.module-multi-column-content-panel .mcs-gray .columns-wrapper p {
    color:#000;
}

.module-multi-column-content-panel .mcs-gray .column-wrapper .image-wrapper i {
    color:var(--dark-orange);
    border:2px dotted #F0A97D;
}

.module-multi-column-content-panel.mcs-orange-background-white-tiles {
    background-color:var(--dark-orange);
    background-image:var(--background-orange-dots);
    background-position:top right;
}

.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h1,
.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h2,
.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h3,
.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h4,
.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h5,
.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h6 {
    color:#fff;
    font-weight:400;
}

.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h1 strong,
.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h2 strong,
.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h3 strong,
.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h4 strong,
.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h5 strong,
.module-multi-column-content-panel.mcs-orange-background-white-tiles .intro-wrapper h6 strong {
    color:#fff;
    font-weight:800;
}

.module-multi-column-content-panel.mcs-orange-background-white-tiles .column-wrapper a.cta.cta-button {
    display:inline-block;
    border-radius: 30px;
    padding: 20px 30px;
    background-color:var(--yellow);
    color:#000;
    text-decoration: none;
    text-transform: uppercase;
    font-size:1.6rem;
    line-height: 1.7rem;
    font-weight:700;
    position: relative;
}

.module-multi-column-content-panel.mcs-orange-background-white-tiles .column-wrapper a.cta.cta-button:after {
    content:none;
}

.module-multi-column-content-panel.mcs-orange-background-white-tiles .column-wrapper a.cta.cta-button:hover {
     background-color:var(--light-orange);
     cursor:pointer;
     transition: all 0.3s ease;
     padding:20px 40px 20px 20px;
}

.module-multi-column-content-panel.mcs-orange-background-white-tiles .column-wrapper a.cta.cta-button:hover:after {
     content: "\f061";
     font: var(--fa-font-solid);
     color:#000;
     font-weight: 900;
     position:absolute;
     right:13px;
     width:20px;
}

.module-multi-column-content-panel .flickity-page-dots {
    top:calc(100% + 1rem);
    text-align: left;
    position: relative;
}

.module-multi-column-content-panel .flickity-page-dots .dot {
    background-color:var(--medium-gray);
    border-radius:5px;
    opacity:1;
    margin:0;
    margin-right:1rem;
    transition: all 0.3s ease;
}

.module-multi-column-content-panel .flickity-page-dots .dot.is-selected {
    background-color:var(--dark-orange);
    width:3rem;
}

@media (min-width:1000px) {
    .module-multi-column-content-panel .columns-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width:1200px) {

    .module-multi-column-content-panel .columns-wrapper {
        padding-bottom:0; 
    }

    .module-multi-column-content-panel .column-wrapper {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap:2rem;
    }

    .module-multi-column-content-panel.column-count-2 .columns-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .module-multi-column-content-panel.column-count-3 .columns-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .module-multi-column-content-panel.column-count-4 .columns-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .module-multi-column-content-panel.column-count-5 .columns-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .module-multi-column-content-panel.column-count-6 .columns-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .module-multi-column-content-panel .column-wrapper .image-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        margin-top:4rem;
    }
}