.lineup__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}
.lineup__image--base {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 30rem;
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s;
}
.lineup__image--hover {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30rem;
    transition: opacity 0.3s;
    opacity: 0;
    z-index: 2;
}
.lineup__item:hover .lineup__image--base {
    opacity: 0;
}
.lineup__item:hover .lineup__image--hover {
    opacity: 1;
}
.lineup{
    padding: 60rem 0 45rem;
}
.lineup--no-bg{
    background: none;
}
.lineup__header{
    margin:0 0 170rem ;
    text-align: center;
}
.lineup__title{
    margin: 0;
}
.lineup__list{
    gap: 15rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.lineup__item{
    width: 160rem;
    height: fit-content;
}
.lineup__link{
    display: block;
    position: relative;
    width: fit-content;
}

.lineup__body{
    width: fit-content;
    min-height: 42rem;
    position: absolute;
    top: 30rem;
    left: 20rem;
    z-index: 100;
}
.lineup__body--small{
    top: 20rem;
}
.lineup__name{
    margin: 0;
    width: fit-content;
    line-height: 150%;
}
.lineup__image{
    width: 100%;
    display: block;
    border-radius: 30rem;
}
.lineup__item--small{
    width: 160rem;
    height: 182rem;
}
.lineup__item:nth-child(odd) {
    margin-top: -105rem;
}
.lineup__item:nth-child(11) {
    margin-top: -210rem;
}

@media screen and (min-width: 768px) {
    .lineup{
        padding: 160rem 0 110rem;
    }
    .lineup__header{
        margin-bottom: 200rem;
    }
    .lineup__list{
        gap: 48rem;
    }
    .lineup__container{
        display: flex;
        justify-content: center;
    }
    .lineup__item{
        width: 264rem;
        height: 470rem;
    }
    .lineup__item--small{
        height: 300rem;
    }
    .lineup__body{
        min-height: 80rem;
        top: 40rem;
        left: 30rem;
    }
    .lineup__body--small{
        left: 40rem;
    }
    .lineup__item:nth-child(11) {
        margin-top: -280rem;
    }
}
@media screen and (min-width: 960px) {
    .lineup__list {
        grid-template-columns: repeat(3, 1fr);
    }
    .lineup__item:nth-child(odd) {
        margin-top: 0; 
    }
    .lineup__item:nth-child(2),
    .lineup__item:nth-child(5),
    .lineup__item:nth-child(8) {
        margin-top: -120rem;
    }
    .lineup__item:nth-child(10) {
        grid-column-start: 2;
        margin-top: -122rem;
    }
}


@media screen and (min-width: 1280px) {
    .lineup__list{
        grid-template-columns:repeat(4, 1fr);
    }
    .lineup__item:nth-child(odd) {
        margin-top: -105rem; 
    }
    .lineup__item:nth-child(even) {
        margin-top: 0; 
    }
    .lineup__item:nth-child(10) {
        grid-column-start: 3;
        margin-top: -275rem;
    }
    .lineup__item:nth-child(11) {
        margin-top: -170rem;
    }
}