.tab_callout_tile {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 460px;
}

.tab_callout_tile:before {
    content: '';
    height: 460px;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('/includes/public/assets/shared/crystal-salt-lake-scene.svg');
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

body.blue .tab_callout_tile:before {
    filter: hue-rotate(47deg) saturate(0.5) brightness(1.045);
}

.tab_callout_tile .content-section {
    padding: 30px 30px 36px;
    background-color: var(--gray-dark);
    width: calc(100% - 60px);
    margin: 0 auto;
    margin-top: 76px;
    position: relative;
}

.tab_callout_tile .content-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gray-dark);
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
}

@media(min-width: 64em) {
    .tab_callout_tile,
    .tab_callout_tile:before {
        height: 559px;
        width: 359px;
    }

    .tab_callout_tile:before {
        right: -10px;
        top: 0;
    }
}

.panel-intro .tab_callout_tile .title {
    font-family: var(--helvetica-bold);
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
    text-transform: unset;
    line-height: 1.3;
}

.tab_callout_tile .horizontal-decoration {
    margin-bottom: 25px;
}

.tab_callout_tile .description {
    font-family: var(--helvetica);
    font-size: 16px;
    color: white;
    margin-bottom: 25px;
    line-height: var(--leading-relaxed);
}

.tab_callout_tile .link {
    font-family: var(--helvetica);
    font-weight: normal;
    color: var(--peach);
    text-decoration: underline;
}

body.blue .tab_callout_tile .link {
    color: var(--blue-lighter);
}

@media(min-width:64em) {
    .tab_callout_tile {
        position: absolute;
        right: 0;
        top: -25%;
    }

    .tab_callout_tile .content-section {
        max-width: 250px;
        position: relative;
        left: 55px;
    }

    .panel-intro .tab_callout_tile .title {
        font-size: 30px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .tab_callout_tile .description {
        font-size: 18px;
        line-height: 1.33;
    }
}