.highlights__cards > div {
    /* display: flex; */
    /* flex-direction: row; */
    /* align-items: stretch; */
    /* gap: 16px; */
}
.highlights__card {
    background-color: var(--innerBg);
    border-radius: var(--bradMed);
    padding: 32px 20px;
    height: unset !important;
    /* flex: 1 1 34%; */

    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.highlights__card_results {
    background-color: #101219;
    border-radius: var(--bradMed);
    padding: 8px 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 49px;
}
.highlights__card_results::after {
    position: absolute;
    content: "";
    z-index: 1;
    width: 1px;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    background: linear-gradient(
        to bottom,
        #3b3b3b00 0%,
        #61616174 50%,
        #3b3b3b00 100%
    );
}
.highlights__card_results p {
    text-align: center;
    margin: 0 auto;
}
.highlights__card_results p:last-child {
    font-weight: 700;
}
