.list-wrapper {
    border: 1px solid #dfe1e2;
    border-radius: .25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.list-head {
    border-bottom: 1px solid #dfe1e2;
}

.list-head .list-icon {
    text-align: center;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
}

.list-head .list-icon>i {
    color: var(--primary);
}

.list-body {
    flex-grow: 1;
}

.list-body>ul {
    padding-right: 1rem;
}


.list-body .list-headline {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.list-body>h2 {
    margin: 0;
    font-size: 1.5rem;
    color: hsl(240 5.9% 10%);
}

.list-body ul>li:has(>a)::before {
    content: "\ea6e";
    font-family: 'remixicon' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}

.list-body ul>li {
    position: relative;
    margin-bottom: 0.75rem;
}

.list-body ul>li a {
    color: hsl(240 5.9% 10%);
    text-decoration: none;

    &:hover {
        opacity: 0.9;
    }
}

.list-body ul li:has(>a) {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    list-style-type: none;
    line-height: 1.5;
}


.list-footer-link-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: #ececec
}

.list-footer-text {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: #ececec;
    margin-bottom: 0;
}