/*==============================*/
/*=====----- TEMPLATE -----=====*/
/*==============================*/

.highlights-list {
    position: relative;
    border: 1px solid #CCCCCC;
    color: var(--black);
}

.highlights-list .template-header {
    padding: 12px 20px 14px;
    background: var(--gray-light);
    text-align: center;
}

.highlights-list .template-title {
    font-family: var(--font-alternate);
    font-weight: var(--font-weight-light);
    font-size: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    color: inherit;
}

.highlights-list .template-title b {
    font-weight: var(--font-weight-demi);
}

.highlights-list .slides {
    display: grid;
    grid-template: auto / repeat(2, minmax(0, 1fr));
    gap: 28px 15px;
    padding: 28px 11px 0;
}

/*============================*/
/*=====----- SLIDES -----=====*/
/*============================*/

.highlights-list .slide {
    padding-bottom: 25px;
    border-bottom: 1px solid #CCCCCC;
}

.highlights-list .slide:nth-child(3),
.highlights-list .slide:last-child {
    border-bottom: none;
}

.highlights-list .slide .inner {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.highlights-list .number {
    display: block;
    min-width: 16px;
    border-bottom: 2px solid var(--black);
    font-family: var(--font-alternate);
    font-weight: var(--font-weight-bold);
    font-size: 26px;
    line-height: calc(14/13);
    color: inherit;
    text-align: center;
}

.highlights-list .category-flag {
    display: block;
    margin-bottom: 3px;
    font-weight: var(--font-weight-bold);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-alt);
}

.highlights-list .slide-title {
    font-weight: var(--font-weight-demi);
    font-size: 12px;
    line-height: calc(4/3);
    color: inherit;
}

/*===================================*/
/*=====----- MEDIA QUERIES -----=====*/
/*===================================*/

@media (min-width: 64em) {
    .highlights-list .slides {
        grid-template: auto / minmax(0, 1fr);
        gap: 38px;
        padding: 38px 17px 11px;
    }

    .highlights-list .slide {
        padding-bottom: 33px;
    }

    .highlights-list .slide:nth-child(3) {
        border-bottom: 1px solid #CCCCCC;
    }

    .highlights-list .slide-title {
        font-size: 16px;
        line-height: 1.375;
    }
}

@media (min-width: 90em) {
    .highlights-list .template-header {
        padding: 17px 20px 19px;
    }

    .highlights-list .template-title {
        font-size: 40px;
    }
}