.gallery-hero {
	padding: 72px 0 44px;
	background: linear-gradient(135deg, #f8fbff 0%, #eaf4ff 100%);
	border-bottom: 1px solid #d8e6f6;
}

.gallery-hero h1 {
	color: #0f3b66;
	margin-bottom: 10px;
}

.gallery-hero p {
	color: #3b5f81;
	max-width: 760px;
}

.gallery-filter-section {
	padding: 22px 0 8px;
}

.gallery-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-btn {
	border: 1px solid #c9d9ea;
	background: #fff;
	color: #1b4f80;
	padding: 10px 14px;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.2s ease;
}

.filter-btn:hover {
	background: #f0f7ff;
	border-color: #8db5de;
}

.filter-btn.active {
	background: #1672c8;
	border-color: #1672c8;
	color: #fff;
}

.gallery-section {
	padding: 18px 0 52px;
}

.satisfaction-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 18px;
}

.satisfaction-card {
	background: #fff;
	border: 1px solid #dde8f3;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(14, 43, 69, 0.07);
}

.satisfaction-image-wrap {
	aspect-ratio: 16 / 10;
	background: #e9f2fb;
}

.satisfaction-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.satisfaction-image-placeholder {
	aspect-ratio: 16 / 10;
	display: grid;
	place-items: center;
	color: #7fa4c8;
	background: #eef5fc;
	font-size: 2.1rem;
}

.satisfaction-content {
	padding: 14px 15px 16px;
}

.satisfaction-content h3 {
	margin: 0 0 8px;
	color: #133a62;
	font-size: 1.06rem;
}

.satisfaction-content p {
	margin: 0;
	color: #4d6882;
	line-height: 1.55;
	text-align: justify;
}

.satisfaction-stars {
	color: #f3a414;
	letter-spacing: 2px;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.gallery-empty {
	text-align: center;
	color: #8ca3b9;
	padding: 38px 12px;
}

.gallery-empty i {
	font-size: 2rem;
	margin-bottom: 10px;
	display: block;
}

@media (max-width: 768px) {
	.gallery-hero {
		padding: 56px 0 34px;
	}

	.filter-btn {
		font-size: 0.92rem;
		padding: 9px 12px;
	}

	.satisfaction-grid {
		grid-template-columns: 1fr;
	}
}
