/* ThryonLab Tours — front-end */

.thryonlab-tours-wrap {
	--thryonlab-tour-gap: 1.5rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.thryonlab-tours-heading {
	margin-bottom: 1.25rem;
	font-size: 1.75rem;
	font-weight: 700;
}

.thryonlab-tours-grid {
	display: grid;
	gap: var(--thryonlab-tour-gap);
	grid-template-columns: repeat(var(--thryonlab-tour-cols, 3), minmax(0, 1fr));
}

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

@media (max-width: 575px) {
	.thryonlab-tours-grid {
		grid-template-columns: 1fr;
	}
}

.thryonlab-tour-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.thryonlab-tour-thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f0f0f0;
}

.thryonlab-tour-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.thryonlab-tour-thumb:hover img {
	transform: scale(1.04);
}

.thryonlab-tour-body {
	padding: 1.15rem 1.25rem 1.25rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.5rem;
}

.thryonlab-tour-title {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.3;
}

.thryonlab-tour-title a {
	text-decoration: none;
	color: #1a1a1a;
}

.thryonlab-tour-title a:hover {
	text-decoration: underline;
}

.thryonlab-tour-destination {
	margin: 0;
	font-size: 0.9rem;
	color: #555;
}

.thryonlab-tour-meta {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.9rem;
	color: #444;
}

.thryonlab-tour-meta li {
	margin-bottom: 0.2rem;
}

.thryonlab-tour-meta .label {
	font-weight: 600;
	margin-right: 0.25rem;
}

.thryonlab-tour-excerpt {
	margin: 0.25rem 0 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: #333;
	flex: 1;
}

.thryonlab-tour-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.thryonlab-tour-actions a {
	display: inline-block;
	padding: 0.45rem 0.9rem;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.thryonlab-tour-actions .btn-more {
	background: #f2f2f2;
	color: #222;
}

.thryonlab-tour-actions .btn-more:hover {
	background: #e5e5e5;
}

.thryonlab-tour-actions .btn-book {
	background: #0d6efd;
	color: #fff;
}

.thryonlab-tour-actions .btn-book:hover {
	filter: brightness(0.95);
}

.thryonlab-tours-empty,
.thryonlab-tours-invalid {
	grid-column: 1 / -1;
	text-align: center;
	color: #666;
}

.thryonlab-tours-single .thryonlab-tours-grid {
	display: block;
}

.thryonlab-tours-single .thryonlab-tour-card {
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

.thryonlab-detailed-single .thryonlab-tour-hero-thumb img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

.thryonlab-tour__gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 0.75rem;
	margin: 1.5rem 0;
}

.thryonlab-tour__gallery-item {
	margin: 0;
}

.thryonlab-tour__gallery-item img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.thryonlab-tour__itin-images {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 0.75rem;
	margin: 0 0 1.25rem;
}

.thryonlab-tour__itin-image {
	margin: 0;
}

.thryonlab-tour__itin-image img {
	width: 100%;
	height: auto;
	max-height: 220px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.thryonlab-tour__day-staying {
	margin: 0.35rem 0 0.75rem;
	font-size: 0.95rem;
	color: #555;
}

.thryonlab-tour__day-staying .label {
	font-weight: 600;
	margin-right: 0.25rem;
	color: #333;
}

.thryonlab-tour__map {
	width: 100%;
	border-radius: 12px;
	border: 1px solid #e5e5e5;
	margin: 1rem 0 0;
}

.thryonlab-tour__lists {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin: 1.25rem 0;
}

.thryonlab-tour__section-title {
	margin: 1.5rem 0 0.75rem;
	font-size: 1.35rem;
}

.thryonlab-tour__itin-segment {
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #eee;
}

.thryonlab-tour-book.large {
	padding: 0.65rem 1.5rem;
	font-size: 1rem;
}
