.performance-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}
.performance-gallery .gallery-item {
    flex: 0 0 48%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.performance-gallery .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}
@media (max-width: 600px) {
    .performance-gallery .gallery-item {
        flex: 0 0 100%;
    }
}
