.exposition-label {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showpieces-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-s);
    box-sizing: border-box;

    .showpiece-item {
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow: hidden;

        border-radius: var(--round-s, .5rem);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

        img {
            width: 100%;
            height: auto;
            display: block;
        }

        a {
            margin-top: var(--space-s);
            text-align: center;
            word-wrap: break-word;

            text-decoration: underline;
            color: var(--color-accent, orange);

            margin-bottom: var(--space-s);
        }
    }
}