@charset "utf-8";
/* CSS Document */
.co-gallery-card{
	position: relative;
}

.co-gallery-card-img{
	display: flex;
	justify-content: center;
	align-items: center;		
}

.co-gallery-card-img img{
	display: block; /* 確保圖片是區塊元素 */
	width: 100%; /* 讓圖片填滿卡片寬度 */
	object-fit: contain; /* 如果圖片比例不同，可以裁剪 */
	height: 100%;	
}

.co-gallery-text{
	position: absolute;
	bottom: 0;
	background: #243742; /* Black see-through */
	width: 100%;
	color: white;
	padding: 10px 5px;
	text-align: center;
}

.co-gallery-text h5{
	margin-bottom:0;
	line-height:1.25;
}
