.factory-page__title {
	margin: 0 0 0.85rem;
	font-size: clamp(1.9rem, 2.8vw, 2.5rem);
	text-align: center;
}

.factory-page__intro {
	margin: 0 auto 2rem;
	max-width: 48rem;
	color: #666;
	text-align: center;
}

.culList {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.culBox {
	overflow: hidden;
	border: 1px solid #ececec;
	border-radius: 0.35rem;
	background: #fff;
}

.culBox .img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.culBox .img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.culBox .title {
	padding: 0.95rem;
	text-align: center;
	font-weight: 600;
}

@media (max-width: 900px) {
	.culList {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.culList {
		grid-template-columns: 1fr;
	}
}
