.icon-list {
    width: 100%;
    margin: 2rem 0;
}

.icon-list__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list__item {
    margin: 0;
    padding: .5rem 0;
}

.icon-list__item--has-separator {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-list__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.icon-list__wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.icon-list__icon-wrapper {
    flex-shrink: 0;
    width: auto;
    min-width: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 1.5rem;
}

.icon-list__icon {
    width: auto;
    height: auto;
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

.icon-list__text-wrapper {
    flex: 1;
    min-width: 0;
}

.icon-list__text {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
    color: rgb(61, 61, 61);
}

.icon-list__text p {
    margin: 0 0 0.5rem 0;
}

.icon-list__text p:last-child {
    margin-bottom: 0;
}

.icon-list__text a {
    color: #2ecc71;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.icon-list__text a:hover {
    color: #27ae60;
}

.icon-list__text h1,
.icon-list__text h2,
.icon-list__text h3,
.icon-list__text h4,
.icon-list__text h5,
.icon-list__text h6 {
    font-family: 'Lexend', sans-serif;
    margin: 0 0 0.5rem 0;
}

.icon-list__text h1:last-child,
.icon-list__text h2:last-child,
.icon-list__text h3:last-child,
.icon-list__text h4:last-child,
.icon-list__text h5:last-child,
.icon-list__text h6:last-child {
    margin-bottom: 0;
}

.icon-list__text ul,
.icon-list__text ol {
    margin: 0.5rem 0 0.5rem 1.5rem;
    padding: 0;
}

.icon-list__text ul {
    list-style-type: disc;
}

.icon-list__text ol {
    list-style-type: decimal;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    
    .icon-list__icon {
        max-width: 40px;
        max-height: 40px;
    }
    
    .icon-list__icon-wrapper {
        min-width: 40px;
        margin-right: 1rem;
    }
    
    .icon-list__text {
        font-size: 16px;
    }
    
    .icon-list__item--has-separator {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
}

