/* Info List Block Styles */

.info-list-block .info-list-content {
    /* Reset default list styles if needed */
}

.info-list-block .info-list-content ul,
.info-list-block .info-list-content ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.info-list-block .info-list-content li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.info-list-content li + li {
    margin-top: 1rem;
}

.info-list-block .info-list-content li::before {
    content: '';
    width: 32.8208px;
    height: 2.0631rem;
    flex-shrink: 0;
    background: url("../../assets/img/list-arrow.svg") center/contain no-repeat;
}

.info-list-block .info-list-content > *:last-child {
    margin-bottom: 0;
}

/* Support for nested lists - don't show icon on nested li */
.info-list-block .info-list-content li li::before {
    display: none;
}

/* Indentation styles */
.info-list-block .indentation {
    width: 21.25%;
    height: 4.375rem;
    border-top: 2px solid var(--color-accent);
    border-right: 2px solid var(--color-accent);
    border-top-right-radius: 1.875rem;
    translate: -2px 2px;
}

.info-list-block .indentation::before,
.info-list-block .indentation::after {
    content: '';
    position: absolute;
    width: 3rem;
    height: 3rem;
}

.info-list-block .indentation::before {
    background-color: transparent;
    left: 2px;
    top: calc(-3rem - 1px);
    border-bottom-left-radius: 1.875rem;
    box-shadow: -2px 1px var(--color-accent);
}

.info-list-block .indentation::after {
    background-color: transparent;
    top: -3rem;
    left: 0;
    border-bottom-left-radius: 1.875rem;
    box-shadow: -9px 17px #fff;
}

.info-list-block .indentation .curve_one,
.info-list-block .indentation .curve_two {
    height: 2.5rem;
}

.info-list-block .indentation .curve_one {
    bottom: 2px;
}

.info-list-block .indentation .curve_two {
    bottom: 2px;
    right: calc(-3rem - 2px);
}

