.irm-container {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #111;
}

.irm-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, background-image 0.6s ease-in-out;
    z-index: 1;
}

.irm-bg-layer.has-bg {
    opacity: 0.3;
}

.irm-menu {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.irm-link {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.irm-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 4px;
    bottom: -5px;
    left: 0;
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.irm-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
