.filter-section {
	background: white;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-group {
	margin-bottom: 15px;
}

.filter-group:last-child {
	margin-bottom: 0;
}

.filter-label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	display: block;
}

.top-destinations {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

.destination-card {
	aspect-ratio: 1;
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	background-color: #e0e0e0;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
	border: 3px solid transparent;
}

.destination-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.destination-card.active {
	border-color: #667eea;
	box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.destination-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	padding: 12px 8px 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.destination-name {
	font-size: 13px;
	font-weight: 700;
	color: white;
	text-align: center;
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.destination-count {
	font-size: 11px;
	color: rgba(255,255,255,0.9);
	font-weight: 500;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.search-box {
	display: flex;
	gap: 8px;
}

.search-input {
	flex: 1;
	padding: 10px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	transition: border 0.3s;
}

.search-input:focus {
	outline: none;
	border-color: #667eea;
}

.search-btn {
	padding: 10px 20px;
	background: #667eea;
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 6px;
}

.search-btn:hover {
	background: #5568d3;
}

.list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.list-count {
	font-size: 14px;
	color: #666;
}

.list-count strong {
	color: #667eea;
	font-weight: 700;
}

.sort-buttons {
	display: flex;
	gap: 8px;
}

.sort-btn {
	padding: 6px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: white;
	color: #666;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.3s;
}

.sort-btn.active {
	border-color: #667eea;
	background: #667eea;
	color: white;
}

.review-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.review-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	cursor: pointer;
	display: flex;
}

.review-card:hover {
	box-shadow: 0 8px 16px rgba(102, 126, 234, 0.15);
	transform: translateY(-2px);
}

.review-image {
	width: 280px;
	height: 200px;
	object-fit: cover;
	flex-shrink: 0;
}

.review-image-empty {
	width: 280px;
	height: 200px;
	background: #e0e0e0;
	flex-shrink: 0;
}

.review-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 12px;
}

.review-destination {
	display: inline-block;
	padding: 4px 12px;
	background: #e3e8ff;
	color: #667eea;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 8px;
}

.review-title {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin-bottom: 8px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.review-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	color: #ffd700;
	flex-shrink: 0;
}

.review-excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.review-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid #f0f0f0;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #666;
}

.review-author-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #e3e8ff;
	color: #667eea;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.review-date {
	font-size: 12px;
	color: #999;
}

.review-stats {
	display: flex;
	gap: 8px;
	font-size: 12px;
}

.review-stat {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	background: #f5f5f5;
	border-radius: 12px;
	color: #666;
}

.pagination-wrap {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	padding-bottom: 40px;
}

.pagination {
	display: flex;
	gap: 8px;
}

.page-btn {
	min-width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: white;
	color: #666;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s;
}

.page-btn:hover {
	border-color: #667eea;
	color: #667eea;
}

.page-btn.active {
	border-color: #667eea;
	background: #667eea;
	color: white;
	font-weight: 600;
}

.page-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.notice-box {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 20px;
	margin-top: 30px;
}

.notice-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: #333;
	margin-bottom: 12px;
}

.notice-icon {
	font-size: 20px;
	color: #f57c00;
}

.notice-content {
	font-size: 14px;
	line-height: 1.5;
	color: #555;
}

.notice-content p {
	margin: 0 0 6px 0;
}

.notice-content p:last-child {
	margin-bottom: 0;
}

.notice-highlight {
	color: #d32f2f;
	font-weight: 600;
}

.empty-state {
	text-align: center;
	padding: 80px 20px;
	background: white;
	border-radius: 12px;
}

.empty-icon {
	font-size: 64px;
	margin-bottom: 20px;
	opacity: 0.3;
}

.empty-text {
	font-size: 18px;
	color: #999;
	margin-bottom: 30px;
}

@media (max-width: 768px) {

	.filter-section {
		border-radius: 0;
		padding: 16px;
		margin-bottom: 16px;
	}

	.top-destinations {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}

	.destination-overlay {
		padding: 10px 6px 6px;
	}

	.destination-name {
		font-size: 11px;
	}

	.destination-count {
		font-size: 10px;
	}

	.search-btn span {
		display: none;
	}

	.search-btn {
		padding: 10px 16px;
	}

	.list-header {
		padding: 0 16px;
		margin-bottom: 16px;
	}

	.review-list {
		gap: 16px;
		padding: 0 16px;
	}

	.review-card {
		flex-direction: column;
		border-radius: 8px;
	}

	.review-image,
	.review-image-empty {
		width: 100%;
		height: 200px;
	}

	.review-content {
		padding: 14px;
		width: 100%;
		box-sizing: border-box;
	}

	.review-title {
		font-size: 15px;
		word-break: keep-all;
	}

	.review-excerpt {
		font-size: 13px;
		word-break: keep-all;
	}

	.review-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.review-stats {
		flex-wrap: wrap;
		gap: 6px;
	}

	.review-stat {
		font-size: 11px;
		padding: 3px 8px;
	}

	.pagination-wrap {
		margin-top: 30px;
		padding-bottom: 30px;
	}

	.notice-box {
		margin: 20px 16px 0;
		padding: 16px;
		border-radius: 10px;
	}

	.notice-title {
		font-size: 15px;
		margin-bottom: 10px;
	}

	.notice-content {
		font-size: 13px;
		line-height: 1.4;
	}

	.empty-state {
		padding: 60px 20px;
		margin: 0 16px;
	}
}