/**
 * Single tour: tag links, highlights, tour information blocks.
 */

.loop-item-term a,
a.loop-item-term {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.loop-item-term a:hover,
a.loop-item-term:hover {
	color: #ed7e39;
	opacity: 0.9;
}

.extenterra-tour-block {
	margin: 2rem 0 2.5rem;
	padding: 0;
}

.extenterra-tour-block__title {
	margin: 0 0 1.25rem;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	color: #212121;
}

/* Safari highlights — uniform cards like theme reference */
.extenterra-tour-highlights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	align-items: stretch;
}

.extenterra-tour-highlight-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid #e8edf1;
	border-radius: 14px;
	overflow: hidden;
}

.extenterra-tour-highlight-item__image {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f2f4f4;
	flex-shrink: 0;
}

.extenterra-tour-highlight-item__image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center;
}

.extenterra-tour-highlight-item__label {
	margin: 0;
	padding: 1rem 1.1rem 1.15rem;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #212121;
	flex: 1;
	display: flex;
	align-items: center;
}

.extenterra-tour-highlight-item__text {
	padding: 0 1.1rem 1rem;
	margin-top: -0.5rem;
	font-size: 15px;
	line-height: 1.55;
	color: #4f5e71;
}

.extenterra-tour-info-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #e8edf1;
	border-radius: 12px;
	overflow: hidden;
}

.extenterra-tour-info-table th,
.extenterra-tour-info-table td {
	padding: 0.9rem 1.1rem;
	border-bottom: 1px solid #e8edf1;
	font-size: 16px;
	line-height: 1.5;
	vertical-align: top;
	text-align: left;
}

.extenterra-tour-info-table tr:last-child th,
.extenterra-tour-info-table tr:last-child td {
	border-bottom: 0;
}

.extenterra-tour-info-table th {
	width: 34%;
	font-weight: 600;
	color: #212121;
	background: #f6f8fa;
}

.extenterra-tour-info-table td {
	color: #4f5e71;
}

.extenterra-tours-filter-notice {
	max-width: 1272px;
	margin: 0 auto 1.25rem;
	padding: 0 1.25rem;
}

.extenterra-tours-filter-notice p {
	margin: 0;
	padding: 0.85rem 1.1rem;
	background: #fff8f3;
	border: 1px solid #f0dcc8;
	border-radius: 10px;
	font-size: 16px;
	color: #212121;
}

.extenterra-tours-filter-notice a {
	margin-left: 0.5rem;
	font-weight: 600;
	color: #ed7e39;
}

@media (max-width: 991px) {
	.extenterra-tour-highlights-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.extenterra-tour-highlights-grid {
		grid-template-columns: 1fr;
	}

	.extenterra-tour-info-table th,
	.extenterra-tour-info-table td {
		display: block;
		width: 100%;
	}

	.extenterra-tour-info-table th {
		border-bottom: 0;
		padding-bottom: 0.25rem;
	}
}
