.callout-panel {
    position: relative;
    border-top: 12px solid white;
    border-bottom: 12px solid white;
}

.callout-panel::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: white;
    transform: translateY(-50%);
    z-index: 1;
}

.callout-panel .item {
    position: relative;
    text-align: center;
}

.callout-panel .item .inner {
    padding: 20px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.callout-panel .item .inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}
.callout-panel .item:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(210,63,96,0.7);
}

.callout-panel .item:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(171,162,40,0.7);
}

.callout-panel .item:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background-image: url("/includes/public/assets/images/circle-leaf.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    z-index: 2;
}

.callout-panel .item:last-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: url("/includes/public/assets/images/leaf.svg")center/cover no-repeat;
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    z-index: 2;
}

@media (min-width: 40.063em) {
    .callout-panel .item:first-child::before {
        background-position: center;
        background-size: cover;
    }

    .callout-panel .item:last-child::before {
        background-position: center;
        background-size: cover;
    }
}
.callout-panel .item .title {
    text-transform: uppercase;
    color: white;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.callout-panel .item .see-more {
    font-size: 14px;
    font-weight: 600;
    color: white;
    position: relative;
    z-index: 2;
}

.callout-panel .item .see-more .doubles {
    display: inline-flex;
    align-items: center;
    color: white;
    margin-left: 2px;
}

@media (min-width: 40.063em) {
    .callout-panel {
        display: flex;
    }

    .callout-panel::after {
        left: 50%;
        height: 100%;
        width: 10px;
        transform: translate(-50%, 0);
        top: 0;
    }

    .callout-panel .item {
        width: 50%;
        min-height: 200px;
    }

    .callout-panel .item .inner {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .callout-panel .item .title {
        font-size: 30px;
        line-height: 34px;
    }
}