.list-widget {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.list-item {
    display: flex;
}

.list-title {
    display: block; /* ← Changed from inline-block to block */
    text-decoration: none;
    line-height: normal;
    transition: all 0.15s ease;
    cursor: pointer;
    width: 100%; /* Optional: make it fill container */
}

.elementor-widget-list_widget .list-title:hover {
    text-decoration: none !important; /* Ensure no underline on hover */
}

.elementor-widget-list_widget .list-title {
    line-height: normal;
}

.list-title:hover {
    text-decoration: underline;
}
