.baike-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.baike-gallery__item {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e1e5ea;
    border-radius: 12px;
    background: #f7f8fa;
}

.baike-gallery__item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.baike-gallery__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #edf0f3;
}

.baike-gallery__missing {
    display: grid;
    min-height: 180px;
    place-items: center;
    background: #edf0f3;
    color: #737d89;
    font-size: .9rem;
}

.baike-gallery__item figcaption {
    padding: 9px 11px;
    color: #616b78;
    font-size: .84rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .baike-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }
}
