/* Travel Guide hub — /travel-guide/ */

:root {
	--ugt-forest: #1a3329;
	--ugt-green: #2d6a4f;
	--ugt-cta: #3d8b37;
	--ugt-cta-hover: #347a2f;
	--ugt-ink: #14221b;
	--ugt-muted: #5a6b62;
	--ugt-sand: #eef2ef;
	--ugt-beige: #f4f1ea;
	--ugt-lime: #a3c639;
}

body.ugt-guide-page .site-main {
	padding-top: 0;
}

body.ugt-guide-page .site-main > .ugt-guide {
	margin-top: 0;
}

.ugt-guide .wrap {
	width: min(1280px, 96vw);
	max-width: none;
	margin-inline: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.ugt-guide .section {
	padding: 4.25rem 0;
}

.ugt-guide .section-eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ugt-cta);
	font-weight: 700;
}

.ugt-guide .section-title {
	margin: 0 0 0.85rem;
	font-size: clamp(1.65rem, 2.4vw, 2.35rem);
	line-height: 1.15;
	color: var(--ugt-ink);
	font-weight: 700;
}

.ugt-guide .section-head {
	margin-bottom: 2rem;
}

.ugt-guide .section-head--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.ugt-guide .section-link,
.ugt-guide .tg-text-link {
	font-weight: 700;
	color: var(--ugt-green);
	text-decoration: none;
}

.ugt-guide .section-link:hover,
.ugt-guide .tg-text-link:hover {
	color: var(--ugt-cta);
}

.ugt-guide .tg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 2.75rem;
	padding: 0.75rem 1.35rem;
	border-radius: 4px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ugt-guide .tg-btn--primary {
	background: var(--ugt-cta);
	border-color: var(--ugt-cta);
	color: #fff;
}

.ugt-guide .tg-btn--primary:hover {
	background: var(--ugt-cta-hover);
	color: #fff;
	transform: translateY(-1px);
}

.ugt-guide .tg-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.85);
	color: #fff;
}

.ugt-guide .tg-btn--wa {
	background: #fff;
	border-color: var(--ugt-green);
	color: var(--ugt-green);
	margin-top: 0.65rem;
	width: 100%;
}

.ugt-guide .tg-card-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.15rem;
	grid-template-columns: 1fr;
}

@media (min-width: 720px) {
	.ugt-guide .tg-card-grid--2,
	.ugt-guide .tg-card-grid--3,
	.ugt-guide .tg-card-grid--5 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.ugt-guide .tg-card-grid--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ugt-guide .tg-card-grid--5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

.ugt-guide .tg-ph {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 10rem;
	background: linear-gradient(145deg, #243f33, #1a3329);
}

.ugt-guide .tg-ph--sm {
	min-height: 0;
	width: 72px;
	height: 72px;
	flex-shrink: 0;
	border-radius: 6px;
}

/* Hero */
.tg-hero {
	position: relative;
	min-height: min(78vh, 720px);
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

@media (max-width: 719px) {
	.tg-hero {
		min-height: 70vh;
	}
}

.tg-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.tg-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tg-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(15, 32, 24, 0.82) 0%, rgba(15, 32, 24, 0.55) 48%, rgba(15, 32, 24, 0.2) 78%, transparent 100%);
}

.tg-hero__inner {
	position: relative;
	z-index: 1;
	padding: 6.5rem 1.25rem 3.5rem;
	max-width: 44rem;
}

.tg-hero__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--ugt-lime);
}

.tg-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(1.85rem, 3.5vw, 2.85rem);
	line-height: 1.05;
	font-weight: 800;
}

.tg-hero__intro {
	margin: 0 0 1.35rem;
	font-size: 1.05rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
}

.tg-hero__search {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-bottom: 1.25rem;
}

.tg-hero__search input {
	flex: 1 1 14rem;
	min-height: 2.85rem;
	padding: 0.6rem 0.9rem;
	border: none;
	border-radius: 4px;
	background: #fff;
	color: var(--ugt-ink);
}

.tg-hero__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 1.15rem;
	font-size: 0.88rem;
	font-weight: 600;
}

.tg-hero__trust li::before {
	content: "✓ ";
	color: var(--ugt-lime);
}

/* Quick links */
.tg-quick {
	position: relative;
	z-index: 2;
	margin-top: -1.75rem;
	margin-bottom: 0.5rem;
}

.tg-quick__list {
	list-style: none;
	margin: 0 auto;
	padding: 0.85rem;
	display: grid;
	gap: 0.55rem;
	grid-template-columns: 1fr;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 16px 36px rgba(20, 34, 27, 0.12);
}

@media (min-width: 720px) {
	.tg-quick__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.tg-quick__list {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.tg-quick__item {
	display: grid;
	gap: 0.2rem;
	padding: 0.85rem 0.75rem;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s ease;
}

.tg-quick__item:hover {
	background: var(--ugt-sand);
}

.tg-quick__icon {
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: rgba(61, 139, 55, 0.15);
	border: 1px solid rgba(61, 139, 55, 0.35);
	margin-bottom: 0.35rem;
}

.tg-quick__title {
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--ugt-ink);
}

.tg-quick__text {
	font-size: 0.8rem;
	color: var(--ugt-muted);
}

/* Popular / cards */
.tg-popular {
	background: #fff;
}

.tg-guide-card {
	height: 100%;
	background: var(--ugt-sand);
	border-radius: 8px;
	overflow: hidden;
}

.tg-guide-card__media {
	display: block;
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: #1a3329;
}

.tg-guide-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tg-guide-card__body {
	padding: 0.95rem 1rem 1.1rem;
}

.tg-guide-card__body h3 {
	margin: 0 0 0.4rem;
	font-size: 0.98rem;
}

.tg-guide-card__body h3 a {
	color: var(--ugt-ink);
	text-decoration: none;
}

.tg-guide-card__body p {
	margin: 0 0 0.65rem;
	color: var(--ugt-muted);
	font-size: 0.88rem;
	line-height: 1.45;
}

/* Categories */
.tg-categories {
	background: var(--ugt-beige);
}

.tg-cat-card {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	height: 100%;
	min-height: 11rem;
	padding: 1.35rem 1.15rem;
	border-radius: 8px;
	background: var(--ugt-forest);
	color: #fff;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.tg-cat-card:hover {
	transform: translateY(-3px);
	color: #fff;
}

.tg-cat-card__icon {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: rgba(163, 198, 57, 0.2);
	border: 1px solid rgba(163, 198, 57, 0.45);
	margin-bottom: 0.45rem;
}

.tg-cat-card__title {
	font-size: 1.1rem;
	font-weight: 700;
}

.tg-cat-card__text {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
	line-height: 1.4;
}

.tg-cat-card__count {
	margin-top: auto;
	padding-top: 0.75rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--ugt-lime);
}

/* Featured */
.tg-featured {
	background: #fff;
}

.tg-featured__grid {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 960px) {
	.tg-featured__grid {
		grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
		align-items: stretch;
	}
}

.tg-featured__main {
	position: relative;
	min-height: 22rem;
	border-radius: 10px;
	overflow: hidden;
	background: var(--ugt-forest) center / cover no-repeat;
	color: #fff;
}

.tg-featured__main.has-image {
	background-image: var(--tg-feat-bg);
}

.tg-featured__main-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 22, 16, 0.25) 0%, rgba(10, 22, 16, 0.82) 100%);
}

.tg-featured__main-copy {
	position: relative;
	z-index: 1;
	padding: 1.75rem;
	max-width: 34rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.tg-featured__main-copy .section-eyebrow {
	color: var(--ugt-lime);
}

.tg-featured__main-copy h2 {
	margin: 0 0 0.65rem;
	font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.tg-featured__main-copy p {
	margin: 0 0 1.1rem;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.5;
}

.tg-featured__side {
	padding: 1.25rem;
	border-radius: 10px;
	background: var(--ugt-sand);
}

.tg-featured__side h3 {
	margin: 0 0 1rem;
	font-size: 1rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ugt-ink);
}

.tg-featured__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.tg-featured__list a {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	gap: 0.75rem;
	align-items: center;
	text-decoration: none;
	color: var(--ugt-ink);
	font-weight: 700;
	font-size: 0.95rem;
}

.tg-featured__list img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 6px;
}

/* Tools */
.tg-tools {
	background: var(--ugt-beige);
}

.tg-tools__grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 960px) {
	.tg-tools__grid {
		grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.7fr);
		align-items: start;
	}
}

.tg-tool-card {
	height: 100%;
	padding: 1.15rem;
	border-radius: 8px;
	background: #fff;
}

.tg-tool-card__icon {
	display: block;
	width: 2rem;
	height: 2rem;
	margin-bottom: 0.65rem;
	border-radius: 50%;
	background: rgba(61, 139, 55, 0.15);
	border: 1px solid rgba(61, 139, 55, 0.35);
}

.tg-tool-card h3 {
	margin: 0 0 0.4rem;
	font-size: 1rem;
	color: var(--ugt-ink);
}

.tg-tool-card p {
	margin: 0 0 0.75rem;
	color: var(--ugt-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.tg-help {
	padding: 1.5rem 1.35rem;
	border-radius: 10px;
	background: #fff;
}

.tg-help h3 {
	margin: 0 0 0.55rem;
	font-size: 1.25rem;
	color: var(--ugt-ink);
}

.tg-help p {
	margin: 0 0 1.1rem;
	color: var(--ugt-muted);
	line-height: 1.5;
}

.tg-help .tg-btn--primary {
	width: 100%;
}

/* Inspiration */
.tg-inspire {
	background: #fff;
}

.tg-inspire__grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 960px) {
	.tg-inspire__grid {
		grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
		align-items: start;
	}
}

.tg-newsletter {
	padding: 1.5rem 1.35rem;
	border-radius: 10px;
	background: var(--ugt-forest);
	color: #fff;
}

.tg-newsletter h3 {
	margin: 0 0 0.55rem;
	font-size: 1.25rem;
}

.tg-newsletter > p {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.5;
}

.tg-newsletter__form {
	display: grid;
	gap: 0.55rem;
}

.tg-newsletter__form input {
	min-height: 2.7rem;
	padding: 0.55rem 0.8rem;
	border: none;
	border-radius: 4px;
}

.tg-newsletter__note {
	margin: 0.75rem 0 0;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.65);
}

/* FAQ — shared always-expanded pattern via .ugt-faq (assets/ugt-faq.css) */

/* Trust */
.tg-trust {
	background: var(--ugt-forest);
	padding: 1.75rem 0;
}

.tg-trust__list {
	list-style: none;
	margin: 0 auto;
	padding: 0 1.25rem;
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	color: #fff;
}

@media (min-width: 720px) {
	.tg-trust__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.tg-trust__list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.tg-trust__list strong {
	display: block;
	margin-bottom: 0.2rem;
}

.tg-trust__list span {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9rem;
}

/* Final CTA */
.tg-final-cta {
	background: linear-gradient(135deg, #14281f 0%, #1a3329 55%, #243f33 100%);
	color: #fff;
	text-align: center;
}

.tg-final-cta h2 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.tg-final-cta p {
	margin: 0 auto 1.25rem;
	max-width: 38rem;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.55;
}

.tg-final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

/* Catalog */
.ugt-guide--catalog .guide-catalog-hero {
	padding: 3.25rem 0 1.5rem;
	background: var(--ugt-sand);
}

.ugt-guide--catalog .guide-catalog-hero__back {
	margin: 0 0 0.75rem;
}

.ugt-guide--catalog .guide-catalog-hero__back a {
	color: var(--ugt-green);
	font-weight: 600;
	text-decoration: none;
}

.ugt-guide--catalog .guide-catalog-hero__title {
	margin: 0 0 0.55rem;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	color: var(--ugt-ink);
}

.ugt-guide--catalog .guide-catalog-hero__stat {
	margin: 0 0 1.15rem;
	color: var(--ugt-muted);
}

.ugt-guide--catalog .guide-catalog-grid {
	padding-top: 1.5rem;
	padding-bottom: 2.5rem;
}

.ugt-guide--catalog .guide-catalog-empty {
	padding: 2rem 1.25rem 4rem;
}

.ugt-guide--catalog .pagination {
	padding: 0 0 3rem;
}
