/* ── Wrapper ── */
.irm-a68d2d2f-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* ── Background layers for crossfade ── */
.irm-a68d2d2f-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
    transform: scale(1.03);
}

.irm-a68d2d2f-bg-layer.irm-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Overlay ── */
.irm-a68d2d2f-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
    pointer-events: none;
    transition: background-color 0.5s ease;
}

.irm-a68d2d2f-wrapper.irm-has-hover .irm-a68d2d2f-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

/* ── Menu ── */
.irm-a68d2d2f-menu {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px;
    width: 100%;
    max-width: 700px;
}

/* ── Item ── */
.irm-a68d2d2f-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 24px;
    padding: 14px 20px;
    border-radius: 16px;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
    background-color: transparent;
}

.irm-a68d2d2f-item:hover {
    transform: translateX(10px);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Dim siblings on hover */
.irm-a68d2d2f-wrapper.irm-has-hover .irm-a68d2d2f-item {
    opacity: 0.35;
}

.irm-a68d2d2f-wrapper.irm-has-hover .irm-a68d2d2f-item:hover {
    opacity: 1;
}

/* ── Thumbnail ── */
.irm-a68d2d2f-thumb-wrap {
    flex-shrink: 0;
    line-height: 0;
}

.irm-a68d2d2f-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.irm-a68d2d2f-item:hover .irm-a68d2d2f-thumb {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
}

/* ── Label ── */
.irm-a68d2d2f-label {
    position: relative;
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.irm-a68d2d2f-label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.irm-a68d2d2f-item:hover .irm-a68d2d2f-label::after {
    width: 100%;
}

/* ── Arrow ── */
.irm-a68d2d2f-arrow {
    margin-left: auto;
    font-size: 1.6rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.irm-a68d2d2f-item:hover .irm-a68d2d2f-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .irm-a68d2d2f-label {
        font-size: 1.4rem;
    }
    .irm-a68d2d2f-menu {
        padding: 30px 20px;
        max-width: 100%;
    }
    .irm-a68d2d2f-thumb {
        width: 50px;
        height: 50px;
    }
    .irm-a68d2d2f-item {
        gap: 14px;
        padding: 10px 14px;
    }
}
