@charset "UTF-8";

.dko-sticky-list {
    display: flex;
    flex-direction: column;
    padding: 50px var(--global-lateral-padding);
}

.dko-sticky-list__text-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.dko-sticky-list__title {
    font-size: 32px;
    line-height: 36px;
    font-weight: 400;
}
.dko-sticky-list__text {
    margin-top: 20px; 
    font-size: 16px;
    line-height: 28px;
}
.dko-sticky-list__cta-container {
    margin-top: 20px; 
}

.dko-sticky-list__list-container {
    margin-top: 40px;
    padding-left: 0;
}

.dko-sticky-list__list {
    padding-bottom: 40px;
    list-style: none;
}

.dko-sticky-list__list-title-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.dko-sticky-list__list-title {
    font-weight: 400;
}

.dko-sticky-list__before-title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--crf--shiny-blue);
    fill: var(--crf--shiny-blue);
    margin-right: 15px;
    width: 40px;
}
.dko-sticky-list__before-title.line {
    display: flex;
    background-color: var(--crf--shiny-blue);
    margin-right: 15px;
    height: 1px;
    width: 40px;
}
.dko-sticky-list__before-title.picto {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dko-sticky-list__list-text {
    margin: 20px 0;
}

.dko-sticky-list__list-text,
.dko-sticky-list__link {
    padding-left: 55px;
}

.dko-sticky-list__link {
    color: var(--crf--shiny-blue);
}


@media screen and (min-width: 991px) {
    .dko-sticky-list {
        position: relative;
        display: flex;
        flex-direction: row;
        gap: 5%;
        padding: 70px var(--global-lateral-padding);
    }
    .dko-sticky-list__text-container {
        width: 50%;
    }
    .dko-sticky-list__text-wrapper {
        position: sticky;
        /* top: 210px; */

        top: calc(var(--header--height, 123px) + 62px + 70px); /* header + TOC + safe margin */
    }
    .dko-sticky-list__list-container {
        width: 50%;
    }
    .dko-sticky-list__list {
        position: relative;
        padding-bottom: 80px;
    }
    .dko-sticky-list__list::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 40px;
        width: 100%;
        height: 1px;
        background-color: var(--crf--light-grey);
    }
    
    
}