.factory-albums {
	max-width: 1200px;
	margin: 0 auto;
	padding: 36px 20px 60px;
}
.factory-album {
	margin-bottom: 60px;
}
.factory-album:last-child {
	margin-bottom: 0;
}
.factory-album-title {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: #2b2b2b;
	margin: 0 0 34px;
	padding-bottom: 16px;
	position: relative;
	letter-spacing: 1px;
}
.factory-album-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 46px;
	height: 3px;
	background: #2d8cf0;
	border-radius: 2px;
}
.factory-album-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.factory-album-item {
	cursor: pointer;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #ececec;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.factory-album-item:hover {
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
	transform: translateY(-3px);
}
.factory-album-item-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f5f5f5;
}
.factory-album-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}
.factory-album-item:hover .factory-album-item-img img {
	transform: scale(1.06);
}
.factory-album-item-caption {
	padding: 10px 12px;
	font-size: 13px;
	color: #666;
	background: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-top: 1px solid #f2f2f2;
	text-align: center;
}
@media (max-width: 992px) {
	.factory-album-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.factory-album-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.factory-album-title {
		font-size: 20px;
	}
}
