.vsb_highlight_section {
    display: flex;
    align-items: flex-start;
    margin: 0.5em 0;
}

.vsb_highlight_section__title {
    background-color: #0c3055;
    float: left;
    width: 140px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.vsb_highlight_section__title h2 {
    color: white;
    font-size: 16px;
    line-height: 22.4px;
    padding: 8px 16px;
    margin: 0;
}

.vsb_highlight_section__content {
    background-color: #f1f1f1;
    color: #000;
    float: left;
    width: calc(100% - 140px);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    border: 1px solid #0c3055;
}

.vsb_highlight_section__content_inner {
    padding: 0.5em 1em;
    width: 100%;
}

.vsb_highlight_section__content::before,
.vsb_highlight_section__content::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    float: left;
    clear: both;
}

.vsb_highlight_section__content::before {
    border-left: 20px solid #0c3055;
}

.vsb_highlight_section__content::after {
    border-right: 20px solid #0c3055;
}

.vsb_highlight_section:hover .vsb_highlight_section__title {
    background-color: #ae1e35;
}

.vsb_highlight_section:hover .vsb_highlight_section__content {
    border-color: #ae1e35;
}

.vsb_highlight_section:hover .vsb_highlight_section__content::before {
    border-left-color: #ae1e35;
}

.vsb_highlight_section:hover .vsb_highlight_section__content::after {
    border-right-color: #ae1e35;
}

/* Small Sizing */

.vsb_highlight_small .vsb_highlight_section__title h2 {
    padding: 9px 16px;
}

.vsb_highlight_small .vsb_highlight_section__content::before,
.vsb_highlight_small .vsb_highlight_section__content::after {
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
}

.vsb_highlight_small .vsb_highlight_section__content::before {
    border-left: 15px solid #0c3055;
}

.vsb_highlight_small .vsb_highlight_section__content::after {
    border-right: 15px solid #0c3055;
}

@media (max-width: 500px) {
    .vsb_highlight_section {
        display: block;
    }

    .vsb_highlight_section__title {
        margin-bottom: 0;
    }

    .vsb_highlight_section__title h2 {
        text-align: center;
    }

    .vsb_highlight_section__title,
    .vsb_highlight_section__content {
        width: 100%;
        display: block;
    }

    .vsb_highlight_section__content::after,
    .vsb_highlight_section__content::before {
        display: none;
    }
}