footer {
    margin-left: 0;
}

.lineup-container {
    padding: 48px 32px;
}

.lineup-banner {
    position: relative;
    background-image: url('/assets/img/lineup/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0;
}

.banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.lineup-list {
    width: 1265px;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
    justify-content: center;
}

@media only all and (max-width: 1024px) {
    .lineup-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lineup-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.lineup-item img {
    max-width: 80%;
}

/* lineup 图片预览弹窗 */
.lineup-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 10;
}

.lineup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    max-width: min(640px, 90vw);
    background: #fff;
    padding: 16px 16px 12px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.lineup-modal img {
    display: block;
    max-width: 100%;
    max-height: 70vh;
}

.lineup-modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
}

.lineup-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.lineup-text-desc-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 28px;
}

@media (width >=64rem) {
    .lineup-banner {
        padding: 200px 0;
    }

    .lineup-container {
        padding: 50px 130px 150px;
    }

    .lineup-text-desc-title {
        font-size: 28px;
    }
}