/* ============================================
   HEC ICON TEXT LIST
   ============================================ */

.hec-icon-text-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.hec-icon-text-list__item {
    width: 100%;
    display: flex;
    text-decoration: none !important;
    color: inherit;
}

.hec-icon-text-list__item:hover {
    text-decoration: none !important;
}

.hec-icon-text-list__item-inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
}

.hec-icon-text-list__icon {
    width: 28px;
    min-width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.hec-icon-text-list__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.hec-icon-text-list__text {
    display: block;
    margin: 0;
    padding: 0;
    color: #212121;
    font-family: var(--font-primary, "Google Sans", Arial, sans-serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.52;
}

.hec-icon-text-list__link {
    cursor: pointer;
}

.hec-icon-text-list__link .hec-icon-text-list__text {
    transition: color 0.2s ease;
}

.hec-icon-text-list__link:hover .hec-icon-text-list__text {
    color: var(--color-primary, #4E5B31);
}

@media (max-width: 1024px) {
    .hec-icon-text-list__text {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .hec-icon-text-list {
        gap: 14px;
    }

    .hec-icon-text-list__item-inner {
        gap: 10px;
    }

    .hec-icon-text-list__icon {
        width: 24px;
        min-width: 24px;
        height: 24px;
    }

    .hec-icon-text-list__text {
        font-size: 16px;
        line-height: 1.45;
    }
}
