.text-link-list ul {
    padding: 0;
    margin: 0;
}

.text-link-list ul li:before {
    background: #DE8D00;
    width: 8px;
    height: 8px;
    top: 9px;
}

.text-link-list ul li a {
    border-bottom: none;
    text-decoration-thickness: 1px;
    color: var(--gray);
    font-weight: 500;
    font-size: 1.25rem;
    display: block;
    line-height: 1.3em;
}

.text-link-list ul li {
    padding: 0 0 0 18px;
    margin: 0 0 14px;
    display: none;
}

.text-link__heading {
    margin: 0 0 22px;
    padding: 0 0 22px;
    position: relative;
    text-align: center;
}

.text-link__heading:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #D8E1E7;
}

.text-link__heading h2 {
    background: var(--white);
    position: relative;
    z-index: 1;
}

.text-link__heading h2:last-child {
    margin: 0;
}

.text-link__bottom-line {
    margin: 25px 0 0;
    position: relative;
    z-index: 1;
}

.text-link__bottom-line img {
    z-index: 1;
    position: relative;
}

.text-link__bottom-line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    height: 2px;
    background: #D8E1E7;
    z-index: -1;
}

.text-link__load-more a {
    margin: 0 auto;
    position: relative;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    text-transform: uppercase;
    padding-right: 22px;
    text-decoration: none;
}

.text-link__load-more a:after {
    content: "\e908";
    font-family: 'ettinger-icon' !important;
    position: absolute;
    right: 0;
    bottom: 1px;
    font-size: 0.875rem;
}

.text-link__load-more a.active:after {
    transform: rotate(180deg);
    bottom: 3px;
}

.text-link__load-more {
    margin: 25px 0 0;
}


@media(min-width: 768px) {
    .text-link-list {
        /* display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 32px; */
    }

    .text-link__heading h2 {
        width: max-content;
        padding-right: 23px;
    }

    .text-link__col {
        /* width: calc(50% - 16px); */
    }

    .text-link__heading {
        margin: 0 0 22px;
        padding: 0;
        text-align: left;
    }

    .text-link__heading:after {
        top: 50%;
        transform: translate(0, -50%);
        bottom: unset;
    }

    .two-column ul {
        columns: 2;         /* or column-count: 2; */
        column-gap: 2rem;   /* space between columns */
        list-style-position: inside;
    }
}

@media(min-width: 1200px) {
    .text-link__bottom-line {
        margin: 40px 0 0;
    }

    .text-link__heading h2 {
        padding-right: 88px;
    }

    .text-link__heading {
        margin: 0 0 42px;
    }

    .text-link__heading:after {
        margin-top: 4px;
    }

    .text-link-list ul li {
        margin: 0 0 18px;
    }

    .text-link__load-more a:hover,
    .text-link-list ul li a:hover {
        color: var(--gold);
        text-decoration-color: var(--gold);
    }
}