/* Travel guide listing page */

.true-page--guides .true-hero--guide .true-hero__content {
	max-width: 720px;
}

.true-guide-search {
	display: flex;
	align-items: stretch;
	max-width: 560px;
	margin: 1.5rem auto 0;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 999px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.true-guide-search__input {
	flex: 1;
	border: none;
	padding: 0.9rem 1.25rem;
	font: inherit;
	background: transparent;
	min-width: 0;
}

.true-guide-search__input:focus {
	outline: none;
}

.true-guide-search__btn {
	border: none;
	background: #1e4d3a;
	color: #fff;
	padding: 0 1.25rem;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.true-guide-filters__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 1rem;
}

.true-guide-filters__chip {
	border: 1px solid rgba(30, 77, 58, 0.2);
	background: #fff;
	color: #1e4d3a;
	border-radius: 999px;
	padding: 0.45rem 1rem;
	font: inherit;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.true-guide-filters__chip.is-active {
	background: #1e4d3a;
	color: #fff;
	border-color: #1e4d3a;
}

.true-guide-featured {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 2rem;
	align-items: center;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(30, 77, 58, 0.1);
	text-decoration: none;
	color: inherit;
}

.true-guide-featured__image {
	position: relative;
	min-height: 280px;
}

.true-guide-featured__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 280px;
}

.true-guide-featured__body {
	padding: 1.5rem 1.5rem 1.5rem 0;
}

[dir="rtl"] .true-guide-featured__body {
	padding: 1.5rem 0 1.5rem 1.5rem;
}

.true-guide-tips {
	background: linear-gradient(180deg, #f8faf9 0%, #fff 100%);
}

.true-guide-tips__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.true-guide-tip {
	background: #fff;
	border: 1px solid rgba(30, 77, 58, 0.08);
	border-radius: 16px;
	padding: 1.5rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.true-guide-tip:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(30, 77, 58, 0.08);
}

.true-guide-tip__icon {
	font-size: 2rem;
	display: block;
	margin-bottom: 0.75rem;
}

.true-guide-tip__title {
	font-size: 1.05rem;
	color: #1e4d3a;
	margin: 0 0 0.5rem;
}

.true-guide-tip__desc {
	margin: 0;
	color: #5a6b63;
	font-size: 0.92rem;
	line-height: 1.6;
}

.true-guide-cta {
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.true-guide-cta__card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background: #1e4d3a;
	border-radius: 24px;
	overflow: hidden;
	color: #fff;
}

.true-guide-cta__content {
	padding: clamp(2rem, 4vw, 3rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.true-guide-cta__content h2 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.true-guide-cta__content p {
	margin: 0 0 1.5rem;
	opacity: 0.9;
	line-height: 1.6;
}

.true-guide-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.true-guide-cta__image {
	position: relative;
	min-height: 260px;
}

.true-guide-cta__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.true-guide-card.is-featured {
	grid-column: span 2;
}

@media (max-width: 900px) {
	.true-guide-featured,
	.true-guide-cta__card {
		grid-template-columns: 1fr;
	}

	.true-guide-featured__body,
	[dir="rtl"] .true-guide-featured__body {
		padding: 1.25rem;
	}

	.true-guide-tips__grid {
		grid-template-columns: 1fr 1fr;
	}

	.true-guide-card.is-featured {
		grid-column: span 1;
	}
}

@media (max-width: 600px) {
	.true-guide-tips__grid {
		grid-template-columns: 1fr;
	}
}
