.image-reveal-menu-wrapper-04492df9 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    min-height: 50vh;
    padding: 20px;
    z-index: 10;
    position: relative;
}

.image-reveal-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-reveal-item {
    margin: 0;
    padding: 0;
}

.image-reveal-item-link {
    text-decoration: none;
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

/* Hover underline effect */
.image-reveal-item-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.image-reveal-item:hover .image-reveal-item-link::after {
    width: 100%;
}
