.il-close-wrapper-ec7f9124 {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.il-close-icon-ec7f9124 {
    color: #333;
    transition: all 0.3s ease;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.il-close-icon-ec7f9124:hover {
    color: #000;
}

/* Ensure SVG matches font size unless overridden */
.il-close-icon-ec7f9124 svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.il-wrapper-ec7f9124 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.il-item-ec7f9124 {
    margin: 0;
    padding: 0;
    position: relative; /* ensure proper containment */
}

.il-link-ec7f9124 {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
    z-index: 1; /* Make sure it captures hover */
}

.il-arrow-ec7f9124 {
    max-width: 0;
    margin-right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    color: #000;
    overflow: hidden;
}

.il-title-ec7f9124 {
    font-size: 1.2em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.il-desc-ec7f9124 {
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    margin-left: 5%; /* 5% gap between title and description */
    color: #666;
    font-size: 0.9em;
    max-width: 60%;
    pointer-events: none; /* prevent desc from interfering with hover on the link itself */
}

/* Ensure hover state triggers correctly on the link element */
.il-link-ec7f9124:hover .il-arrow-ec7f9124 {
    max-width: 24px;
    margin-right: 10px;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.il-link-ec7f9124:hover .il-desc-ec7f9124 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}