/* 两个展厅共用的切换导航，使用基础 Flex 排列。 */
.gallery-switch {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px 0 25px;
    margin-bottom: 20px;
    border-bottom: 1px solid #524735;
}

.gallery-switch a {
    padding: 12px 25px;
    border: 1px solid #706047;
    color: #cfb892;
}

.gallery-switch a:hover,
.gallery-switch a[aria-current="location"] {
    color: #17140f;
    background: #d3b583;
}

#flower-bird {
    border-top: 1px solid #77603d;
}

#flower-bird .artifact {
    flex: 1;
    min-width: 0;
}

#flower-bird .artifact__stage {
    height: 290px;
}

#flower-bird .artifact--featured .artifact__stage {
    height: 350px;
}

.hall-footer {
    flex-wrap: wrap;
    gap: 18px;
}

.pattern-card {
    display: block;
}

@media (max-width: 650px) {
    #flower-bird .artifact {
        flex: 0 0 180px;
    }

    #flower-bird .artifact__stage,
    #flower-bird .artifact--featured .artifact__stage {
        height: 250px;
    }

    .gallery-switch a {
        padding: 10px 16px;
    }
}
