/* =========================
   Dream Tour Review Archive
========================= */

.dreamtour-info-subtext {
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.8;
	color: #666;
}

.dreamtour-review-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.dreamtour-review-card {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.04);
	transition: transform .2s ease, box-shadow .2s ease;
}

.dreamtour-review-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.dreamtour-review-thumb {
	display: block;
	aspect-ratio: 16 / 10;
	background: #eef2f5;
	overflow: hidden;
}

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

.dreamtour-review-thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #888;
	font-size: 18px;
	font-weight: 600;
}

.dreamtour-review-body {
	padding: 20px;
}

.dreamtour-review-title {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 700;
}

.dreamtour-review-title a {
	color: #111;
	text-decoration: none;
}

.dreamtour-review-title a:hover {
	text-decoration: underline;
}

.dreamtour-review-excerpt {
	font-size: 14px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 14px;
	min-height: 72px;
}

.dreamtour-review-meta {
	font-size: 13px;
	color: #888;
	margin-bottom: 16px;
}

.dreamtour-review-more {
	display: inline-block;
	padding: 11px 16px;
	border-radius: 10px;
	background: #111;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.dreamtour-review-more:hover {
	opacity: .92;
}

.dreamtour-empty-box {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 18px;
	padding: 40px 24px;
	text-align: center;
	color: #666;
}

@media (max-width: 1100px) {
	.dreamtour-review-grid {
		grid-template-columns: 1fr;
	}
}


/* =========================
   Dream Tour Review Single
========================= */

.dreamtour-review-single-meta {
	margin-top: 10px;
	font-size: 14px;
	color: #777;
}

.dreamtour-review-single-card {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.dreamtour-review-single-thumb {
	background: #eef2f5;
	overflow: hidden;
}

.dreamtour-review-single-thumb img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.dreamtour-review-single-content {
	padding: 32px;
}

.dreamtour-review-single-content h2,
.dreamtour-review-single-content h3,
.dreamtour-review-single-content h4 {
	color: #111;
	margin-top: 0;
}

.dreamtour-review-single-content p,
.dreamtour-review-single-content li {
	font-size: 15px;
	line-height: 1.75;
	color: #555;
}

.dreamtour-review-single-content p {
	margin: 0 0 0.65em;
}

.dreamtour-review-single-content p:last-child {
	margin-bottom: 0;
}

.dreamtour-review-single-content ul,
.dreamtour-review-single-content ol {
	padding-left: 20px;
}

.dreamtour-review-single-bottom {
	padding: 0 32px 32px;
}

.dreamtour-review-back {
	display: inline-flex;
	align-items: center;
	padding: 12px 16px;
	border-radius: 10px;
	background: #111;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.dreamtour-review-back:hover {
	opacity: .92;
}

.modal-text {
	font-size: 16px;
	line-height: 1.75;
	color: #334155;
	margin-bottom: 30px;
}

.modal-text p {
	margin: 0 0 0.65em;
}

.modal-text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.dreamtour-review-single-content {
		padding: 24px;
	}

	.dreamtour-review-single-bottom {
		padding: 0 24px 24px;
	}
}
