

/* 이미지 리스트 */
.gallery {display: grid; grid-template-columns: repeat(12, 1fr); gap: 2rem; align-items: start; margin-top:1rem;}
.gallery .card {grid-column: span 4;}
.gallery .card .thumb {position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 1rem; box-shadow: 0 4px 15px rgba(0,0,0,0.15);}
.gallery .card .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease, box-shadow .3s ease;}
.gallery .card:hover .thumb img {transform: scale(1.1); }
.gallery .card .caption {margin-top: 0.5rem; text-align: center; font-size: 0.9rem; line-height: 1.5; color: #333; font-weight:600;}



@media (max-width: 1024px) {
	.gallery .card {grid-column: span 6;}
}

@media (max-width: 640px) {
	.gallery {gap: 1.5rem;}
	.gallery .card {grid-column: span 12;}
}

@media (max-width: 320px) {
	.gallery {display:flex; flex-direction:column;}
	.gallery .card {width:100%;}
}