.paper .section-divider::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    background-size: contain;
    background-image: url(https://static.igem.wiki/teams/5858/images/template/boundary.webp);
    width: 100%;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    display: none;
}
.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.image-gallery .image-container {
    flex: 1;
    max-width: calc(33.333% - 14px);
    aspect-ratio: 1/1; /* 正方形比例，可根据需要调整 */
    position: relative;
    overflow: visible;
    /* border-radius: 10px; 圆角效果，可根据需要调整 */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  */
}

.image-gallery .image-container img {
    width: 10vw;
    height: auto;
    object-fit: cover;
    /* transition: transform 0.3s ease; */
}

/* .image-gallery .image-container:hover img {
    transform: scale(1.05);
} */
.image-gallery .caption {
    text-align: center;
    padding: 10px 0;
    font-size: 24px;
    color: #333;
    font-style: italic;
}

.image-gallery .caption strong {
    font-weight: bold;
    font-style: normal;
}

/* 响应式设计，小屏幕时堆叠显示 */
@media (max-width: 768px) {
    .image-gallery {
        flex-direction: column;
    }
    
    .image-gallery .image-container {
        max-width: 100%;
        width: 100%;
    }
}