/* —— Cards —— */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

@media (max-width: 900px) {
	.card-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.card-grid {
		grid-template-columns: 1fr;
	}
}

.card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(26, 15, 8, 0.14);
}

.card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--brown-mid);
}

.card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 180px;
	background: linear-gradient(145deg, var(--forest-mid), var(--brown-mid));
}

.wildlife-content-figure {
	margin: 1.5rem 0 2rem;
}

.wildlife-content-figure img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.wildlife-content-figure--placeholder img {
	object-fit: cover;
	max-height: 420px;
}

.wildlife-content-figure figcaption {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: var(--text-muted, #5c6b63);
	font-style: italic;
}

/* Wildlife guide prose — shared formatter (inc/wildlife-content/wildlife-content-format.php) */
.wildlife-formatted-prose .wildlife-section-heading {
	letter-spacing: 0.01em;
}

.wildlife-formatted-prose .wildlife-section-heading:first-of-type {
	margin-top: 0.5rem;
}

.wildlife-formatted-prose .wildlife-section-subheading {
	color: var(--forest-mid, #1e4d3a);
}

.wildlife-formatted-prose .wildlife-section-lede {
	font-size: 1.08rem;
	line-height: 1.75;
	color: var(--brown-mid, #4a3728);
	margin-bottom: 1.25rem;
}

.wildlife-formatted-prose .wildlife-quick-facts-card,
.wildlife-formatted-prose .wildlife-highlight-list {
	margin: 1rem 0 1.75rem;
	padding: 1rem 1.15rem;
	background: linear-gradient(180deg, rgba(250, 248, 243, 0.95) 0%, var(--white) 100%);
	border: 1px solid rgba(184, 134, 11, 0.28);
	border-radius: var(--radius, 8px);
	box-shadow: 0 2px 14px rgba(26, 15, 8, 0.05);
}

.wildlife-formatted-prose .wildlife-quick-facts,
.wildlife-formatted-prose .wildlife-highlight-list ul {
	margin: 0;
	padding-left: 1.2rem;
}

.wildlife-formatted-prose .wildlife-quick-facts li,
.wildlife-formatted-prose .wildlife-highlight-list li {
	margin-bottom: 0.35rem;
}

.wildlife-formatted-prose .wildlife-quick-facts-table {
	margin-top: 0.75rem;
}

.wildlife-formatted-prose .dest-hub__figure {
	margin-top: 0;
}

/* Wildlife subpage safari marketing grid */
.wildlife-section-safari-packages {
	margin-top: clamp(2rem, 4vw, 2.75rem);
}

.wildlife-section-safari-packages .dest-hub-section-packages__bar {
	align-items: flex-start;
	gap: 1rem 1.5rem;
}

.wildlife-section-safari-packages__headings {
	flex: 1 1 16rem;
	min-width: 0;
}

.wildlife-section-safari-packages__intro {
	margin: 0.35rem 0 0;
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--brown-mid, #4a3728);
	max-width: 42rem;
}

.wildlife-formatted-prose h3 a {
	color: var(--forest-mid, #1e4d3a);
	text-decoration: none;
	border-bottom: 1px solid rgba(184, 134, 11, 0.45);
}

.wildlife-formatted-prose h3 a:hover,
.wildlife-formatted-prose h3 a:focus-visible {
	color: var(--gold, #b8860b);
	border-bottom-color: currentColor;
}

.wildlife-archive {
	padding-bottom: 3rem;
}

.wildlife-archive__section {
	margin-top: 2.75rem;
}

.wildlife-archive__section:first-child {
	margin-top: 1.5rem;
}

.wildlife-archive__section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem 1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wildlife-archive__section-title {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	margin: 0;
}

.wildlife-archive__section-count {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-muted, #5c6b63);
}

.wildlife-filters {
	margin-top: 1.25rem;
}

.wildlife-filters__groups {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.wildlife-filters__group-pill {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--forest-mid, #1e4d3a);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
	transition: background 0.15s ease, color 0.15s ease;
}

.wildlife-filters__group-pill:hover,
.wildlife-filters__group-pill.is-active {
	background: var(--forest-mid, #1e4d3a);
	color: #fff;
	border-color: var(--forest-mid, #1e4d3a);
}

.wildlife-archive__empty {
	margin: 2rem 0;
	padding: 1.5rem;
	text-align: center;
	color: var(--text-muted, #5c6b63);
	background: rgba(0, 0, 0, 0.03);
	border-radius: 8px;
}

.archive-hero--travel-guide {
	padding: 2rem 0 1.25rem;
	background: linear-gradient(180deg, rgba(245, 240, 232, 0.95), var(--cream));
}

.archive-hero--travel-guide .page-title {
	margin-bottom: 1rem;
}

.travel-guide-archive__content {
	width: 100%;
	max-width: none;
	margin: 0 0 1.75rem;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--brown-mid, #4a3f35);
}

.travel-guide-archive__content > *:first-child {
	margin-top: 0;
}

.travel-guide-archive__content p {
	margin: 0 0 0.85rem;
}

.travel-guide-archive__content p:last-child {
	margin-bottom: 0;
}

.travel-guide-archive__status {
	margin: 0.85rem 0 0;
	color: var(--muted);
	font-size: 0.98rem;
	line-height: 1.55;
}

.archive-hero--travel-guide .travel-guide-archive__content {
	margin-bottom: 1.25rem;
}

.travel-guide-filters {
	margin-top: 0;
	flex-wrap: wrap;
}

.travel-guide-filters__topic {
	min-width: 11rem;
	padding: 0.5rem 0.75rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 4px;
	font-size: 0.95rem;
}

.travel-guide-filters__topics {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.travel-guide-filters__topic-pill {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--forest-mid, #1e4d3a);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
}

.travel-guide-filters__topic-pill:hover,
.travel-guide-filters__topic-pill.is-active {
	background: var(--forest-mid, #1e4d3a);
	color: #fff;
	border-color: var(--forest-mid, #1e4d3a);
}

.travel-guide-archive {
	padding-top: 0;
	padding-bottom: 3rem;
}

.travel-guide-archive__empty {
	margin: 2rem 0;
	padding: 1.5rem;
	text-align: center;
	color: var(--text-muted, #5c6b63);
	background: rgba(0, 0, 0, 0.03);
	border-radius: 8px;
}

.card-grid--travel-guides {
	margin-top: 1.5rem;
}

.card__placeholder--guide {
	background: linear-gradient(145deg, #2a4a62, #1e4d3a);
}

.card--travel-guide .card__link {
	margin-top: auto;
	font-weight: 600;
	font-size: 0.9rem;
}

/* FAQ hub & singles (blueprint layout) */
.archive-hero--faq {
	background: linear-gradient(160deg, #1a3c34 0%, #2d5a4a 55%, #3d6b55 100%);
	color: #fff;
	padding: 2.5rem 0 2rem;
}

.archive-hero--faq .page-title,
.archive-hero--faq .archive-hero__subtitle {
	color: #fff;
}

.archive-hero--faq .archive-hero__subtitle {
	margin: 0.35rem 0 1rem;
	opacity: 0.92;
	font-size: 1.1rem;
}

.faq-archive__content {
	max-width: 52rem;
	margin: 0 auto 1.25rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.92);
}

.faq-archive__status {
	font-weight: 600;
	margin-top: 1rem;
}

.faq-filters__topics {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
}

.faq-hero--archive .faq-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin-top: 1.25rem;
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
}

.faq-hero--archive .faq-filters__topic,
.faq-hero--archive .faq-filters__country {
	margin-top: 0;
	padding: 0.45rem 0.75rem;
	border-radius: 8px;
	border: 1px solid rgba(61, 41, 20, 0.2);
	font: inherit;
	background: var(--white);
	min-width: 140px;
	height: 2.5rem;
	box-sizing: border-box;
}

.faq-hero--archive .dest-filters__search {
	flex: 1 1 220px;
	min-width: 12rem;
	max-width: 420px;
	height: 2.5rem;
	box-sizing: border-box;
}

.faq-hero--archive .faq-filters .btn {
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.faq-filters__topic-pill {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	color: #fff;
	font-size: 0.85rem;
	text-decoration: none;
}

.faq-filters__topic-pill.is-active,
.faq-filters__topic-pill:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
}

.faq-archive {
	padding-bottom: 3rem;
}

.card-grid--faqs {
	margin-top: 1.5rem;
}

.pagination-wrap--faq {
	padding: 2.25rem 0 0.5rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(61, 41, 20, 0.08);
}

.pagination--faq {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.pagination--faq__meta {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--text-muted, #5c6b63);
}

.pagination--faq .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
}

.pagination--faq .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.7rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9rem;
	line-height: 1;
	text-decoration: none;
	color: var(--forest-dark, #1a3c34);
	background: var(--white, #fff);
	border: 1px solid rgba(61, 41, 20, 0.12);
	box-shadow: 0 1px 2px rgba(26, 15, 8, 0.05);
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.pagination--faq a.page-numbers:hover,
.pagination--faq a.page-numbers:focus-visible {
	background: var(--forest-mid, #1e4d3a);
	color: #fff;
	border-color: var(--forest-mid, #1e4d3a);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(30, 77, 58, 0.22);
}

.pagination--faq .page-numbers.current {
	background: var(--forest-dark, #1a3c34);
	color: var(--cream, #f6f3ed);
	border-color: var(--forest-dark, #1a3c34);
	box-shadow: 0 6px 18px rgba(26, 60, 52, 0.28);
}

.pagination--faq .page-numbers.dots {
	min-width: auto;
	padding: 0 0.2rem;
	border: none;
	background: transparent;
	box-shadow: none;
	color: var(--text-muted, #5c6b63);
}

.pagination--faq .prev.page-numbers,
.pagination--faq .next.page-numbers {
	min-width: auto;
	padding: 0 1.1rem;
}

@media (max-width: 560px) {
	.pagination--faq .prev.page-numbers,
	.pagination--faq .next.page-numbers {
		flex: 1 1 calc(50% - 0.25rem);
		max-width: calc(50% - 0.25rem);
	}
}

.card--faq .card__body--faq {
	padding: 1.25rem 1.35rem;
	min-height: 8rem;
	display: flex;
	flex-direction: column;
}

.card--faq .card__title {
	font-size: 1.05rem;
	line-height: 1.35;
}

/* FAQ single page */
.faq-page {
	margin: 0;
	background-color: #f6f3ed;
}

.faq-hero.dest-hub-hero {
	min-height: clamp(240px, 32vw, 340px);
	margin-bottom: 0;
}

.faq-hero .dest-hub-hero__bg-img {
	transform: none;
}

.faq-hero__scrim {
	background: linear-gradient(
		180deg,
		rgba(8, 28, 21, 0.2) 0%,
		rgba(8, 28, 21, 0.72) 100%
	);
}

.dest-hub-hero__bg-fallback--faq {
	background: linear-gradient(155deg, #0d2b24 0%, #1b4332 50%, #2d6a4f 100%);
}

.faq-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
	padding-bottom: 2rem;
}

.faq-hero__crumb {
	margin-bottom: 0.75rem;
	font-size: 0.82rem;
	opacity: 0.9;
}

.faq-hero__crumb a {
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	transition: border-color 0.15s ease;
}

.faq-hero__crumb a:hover {
	border-bottom-color: rgba(255, 255, 255, 0.7);
}

.faq-hero__title {
	margin-bottom: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	text-wrap: balance;
	max-width: 22ch;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.faq-page-header {
	background: linear-gradient(165deg, #1a3c34 0%, #264d42 50%, #2f5c4e 100%);
	color: #fff;
	padding: 1.75rem 0 2rem;
}

.faq-page-header__inner {
	max-width: 920px;
}

.faq-page-header__crumb {
	margin: 0 0 0.75rem;
	font-size: 0.875rem;
}

.faq-page-header__crumb a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
}

.faq-page-header__crumb a:hover {
	color: #fff;
	text-decoration: underline;
}

.faq-page-header__sep {
	margin: 0 0.35rem;
	opacity: 0.55;
}

.faq-page-header__topic {
	display: inline-block;
	margin: 0 0 0.65rem;
	padding: 0.25rem 0.65rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 0;
	color: rgba(255, 255, 255, 0.95);
}

.faq-page-header__title {
	margin: 0;
	font-size: clamp(1.65rem, 3.5vw, 2.35rem);
	line-height: 1.2;
	font-weight: 700;
	max-width: 28ch;
	color: #fff;
}

.faq-page__wrap {
	position: relative;
	z-index: 2;
	padding: 2rem 0 4rem;
	margin-top: 0;
}

.faq-page__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 310px);
	gap: 2.25rem 2.75rem;
	align-items: start;
	max-width: 1160px;
	margin: 0 auto;
}

.faq-page__main {
	min-width: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.65rem;
	align-items: stretch;
}

.faq-page__answer-wrap {
	margin-bottom: 0.35rem;
}

.faq-answer-card {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid rgba(61, 41, 20, 0.1);
	border-left: 4px solid var(--gold, #d4af37);
	border-radius: 0;
	padding: 1.35rem 1.5rem;
	box-shadow: none;
}

.faq-answer-card__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--forest-dark, #1b4332);
}

.faq-answer-card__body p {
	margin: 0;
	font-size: clamp(1.05rem, 1.6vw, 1.2rem);
	line-height: 1.7;
	font-weight: 600;
	color: var(--forest-darkest, #081c15);
}

.faq-page__body.prose--faq {
	max-width: none;
	margin: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	align-items: stretch;
}

.faq-section-card {
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: 0;
	padding: 1.35rem 1.5rem;
	box-shadow: none;
}

.faq-section-card--expanded {
	border-left: 3px solid rgba(45, 106, 79, 0.35);
}

.faq-section-card--facts {
	background: #fdfbf7;
	border-left: 3px solid var(--gold, #d4af37);
}

.prose--faq .faq-section-card h2 {
	margin: 0 0 0.85rem;
	padding-bottom: 0.55rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--forest-dark, #1b4332);
	line-height: 1.32;
	border-bottom: 1px solid rgba(61, 41, 20, 0.08);
}

.prose--faq .faq-section-card h3 {
	margin: 1.35rem 0 0.55rem;
	font-size: 1.06rem;
	color: var(--forest-dark, #1b4332);
}

.prose--faq .faq-section-card p,
.prose--faq .faq-section-card li {
	color: #4a4540;
	line-height: 1.72;
	text-align: left;
}

.prose--faq .faq-section-card ul {
	margin: 0.65rem 0 0;
	padding-left: 0;
	list-style: none;
}

.prose--faq .faq-section-card li {
	position: relative;
	padding-left: 1.35rem;
	margin-bottom: 0.45rem;
}

.prose--faq .faq-section-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 0;
	background: var(--forest-mid, #2d6a4f);
	opacity: 0.65;
}

.prose--faq .faq-section-card a {
	font-weight: 600;
	color: var(--forest-dark, #1b4332);
	text-decoration: underline;
	text-decoration-color: rgba(212, 175, 55, 0.55);
	text-underline-offset: 0.15em;
}

.prose--faq .faq-section-card a:hover {
	text-decoration-color: var(--gold, #d4af37);
}

.faq-related-block {
	width: 100%;
	box-sizing: border-box;
	margin-top: 0.5rem;
	padding: 1.35rem 1.5rem;
	background: #fff;
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: 0;
	box-shadow: none;
}

.faq-related-block__title {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--forest-dark, #1b4332);
}

.faq-page__main .dest-hub-adventure-cta.faq-inline-cta {
	width: 100%;
	max-width: none;
	margin: 0.75rem 0 0;
	border-radius: 0;
}

/* CTA Secondary — green content band */
.ust-cta-secondary,
.faq-page-cta-wrap .ust-cta-secondary {
	width: 100%;
	box-sizing: border-box;
	margin-top: 0.5rem;
	border-radius: 0;
	overflow: hidden;
	background: linear-gradient(135deg, #1a3c34 0%, #2d5a4a 100%);
	color: #fff;
}

.ust-cta-secondary__inner {
	padding: 1.75rem 1.75rem;
}

.ust-cta-secondary__text {
	margin: 0 0 1.15rem;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.55;
	max-width: 42rem;
	font-size: 1rem;
}

.ust-cta-secondary__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}

.ust-cta-secondary__actions .btn--lg {
	min-height: 2.75rem;
	padding-inline: 1.25rem;
}

.ust-cta-secondary__btn-wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
}

/* Legacy parsed FAQ CTA blocks */
.faq-page-cta-wrap {
	width: 100%;
	box-sizing: border-box;
	margin-top: 0.5rem;
	border-radius: 0;
	overflow: hidden;
	background: linear-gradient(135deg, #1a3c34 0%, #2d5a4a 100%);
	color: #fff;
}

.faq-page-sidebar .faq-sidebar-cta-card.tour-sidebar-card {
	width: 100%;
	max-width: none;
	margin: 0 0 0.5rem;
}

.faq-safaris-block {
	width: 100%;
	box-sizing: border-box;
	margin-top: 0.5rem;
}

.faq-safaris-block__title {
	margin: 0 0 1rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a3c34;
}

.faq-safaris-block__grid {
	width: 100%;
}

.faq-safaris-block__grid .card-grid {
	margin: 0;
}

.faq-safaris-block__footer {
	margin: 1rem 0 0;
	text-align: right;
}

.faq-safaris-block__all {
	font-weight: 600;
	color: var(--forest-dark, #1a3c34);
	text-decoration: none;
}

.faq-safaris-block__all:hover {
	text-decoration: underline;
}

.faq-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.faq-related-card {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.9rem 1rem;
	background: #faf8f4;
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: 0;
	text-decoration: none;
	box-shadow: none;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.faq-related-card:hover {
	border-color: rgba(45, 106, 79, 0.25);
	background: #fff;
}

.faq-related-card__q {
	font-weight: 700;
	font-size: 0.94rem;
	line-height: 1.42;
	color: var(--forest-dark, #1b4332);
}

.faq-related-card__hint {
	font-size: 0.84rem;
	line-height: 1.48;
	color: #6b6560;
}

.faq-page-cta-wrap .faq-cta,
.faq-page-cta-wrap .faq-page-cta__inner {
	padding: 1.75rem 1.75rem;
}

.faq-page-cta-wrap .faq-cta h2,
.faq-page-cta-wrap .faq-page-cta__title {
	margin: 0 0 0.65rem;
	font-size: 1.35rem;
	color: #fff;
}

.faq-page-cta-wrap .faq-cta p,
.faq-page-cta-wrap .faq-page-cta__text {
	margin: 0 0 1.15rem;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.55;
	max-width: 42rem;
}

.faq-page-sidebar {
	position: sticky;
	top: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-page-sidebar__panel {
	background: #fff;
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: 0;
	padding: 1rem 1.1rem;
	box-shadow: none;
}

.faq-page-sidebar__toc-list,
.faq-page-sidebar__related-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.faq-page-sidebar__label {
	margin: 0 0 0.65rem;
	padding-bottom: 0.45rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1a3c34;
	border-bottom: 1px solid rgba(61, 41, 20, 0.1);
}

.faq-page-sidebar__toc-list a,
.faq-page-sidebar__related-list a {
	display: block;
	padding: 0.4rem 0;
	font-size: 0.88rem;
	line-height: 1.42;
	color: #4a3728;
	text-decoration: none;
	border-bottom: 1px solid rgba(61, 41, 20, 0.06);
}

.faq-page-sidebar__toc-list li:last-child a,
.faq-page-sidebar__related-list li:last-child a {
	border-bottom: 0;
}

.faq-page-sidebar__toc-list a:hover,
.faq-page-sidebar__related-list a:hover {
	color: #1a3c34;
	text-decoration: underline;
}

.faq-page-sidebar .tour-sidebar-packages--faq {
	margin-top: 0;
	margin-bottom: 0;
	width: 100%;
}

.faq-page--singular .faq-sidebar-cta-card,
.faq-page--singular .faq-safaris-block,
.faq-page--singular .tour-sidebar-card {
	border-radius: 0;
}


@media (max-width: 960px) {
	.faq-page__layout {
		grid-template-columns: 1fr;
	}

	.faq-page__wrap {
		padding: 1.5rem 0 3rem;
	}

	.faq-page-sidebar {
		position: static;
		order: -1;
	}

	.faq-related-grid {
		grid-template-columns: 1fr;
	}

	.faq-hero__title {
		max-width: none;
	}
}

@media (max-width: 600px) {
	.faq-page-header {
		padding: 1.35rem 0 1.5rem;
	}

	.faq-page__wrap {
		padding: 1.25rem 0 2.5rem;
	}

	.faq-hero.dest-hub-hero {
		min-height: 220px;
	}

	.faq-hero__inner {
		padding-bottom: 1.5rem;
	}

	.faq-answer-card {
		padding: 1.15rem 1.1rem;
	}

	.faq-section-card {
		padding: 1.15rem 1.1rem;
		border-radius: 0;
	}

	.faq-related-block {
		padding: 1.15rem 1.1rem;
		border-radius: 0;
	}
}

/* Travel guide singular */
.travel-guide-singular-article {
	margin: 0;
}

/* Travel guides — blog editorial layout (matches single post / journal) */
.travel-guide-blog-single.blog-single {
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.travel-guide-blog-layout .tour-layout__main > .safari-cost-child-intro,
.travel-guide-blog-layout .tour-layout__main > .safari-cost-landing,
.travel-guide-blog-layout .tour-layout__main > .birding-hub-landing,
.travel-guide-blog-layout .tour-layout__main > .culture-hub-landing,
.travel-guide-blog-layout .tour-layout__main > .seasonal-hub-landing {
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.travel-guide-blog-toc {
	margin: 0 0 1.35rem;
	padding-bottom: 1.15rem;
	border-bottom: 1px solid rgba(61, 41, 20, 0.08);
}

.travel-guide-blog-index .travel-guide-filters--blog {
	margin-top: 1.35rem;
}

.travel-guide-blog-archive-hero .travel-guide-filters__topics {
	margin-top: 1rem;
}

.travel-guide-blog-layout .tour-layout__main > .safari-cost-related,
.travel-guide-blog-layout .tour-layout__main > .birding-child-related,
.travel-guide-blog-layout .tour-layout__main > .culture-child-related,
.travel-guide-blog-layout .tour-layout__main > .seasonal-child-related,
.travel-guide-blog-layout .tour-layout__main > .safari-cost-hub-related,
.travel-guide-blog-layout .tour-layout__main > .birding-hub-related,
.travel-guide-blog-layout .tour-layout__main > .culture-hub-related,
.travel-guide-blog-layout .tour-layout__main > .seasonal-hub-related {
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.travel-guide-blog-layout .safari-cost-child-related__grid,
.travel-guide-blog-layout .safari-cost-featured__grid {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.travel-guide-blog-layout .safari-cost-featured-card {
	min-height: 100%;
}

.travel-guide-blog-layout .tour-layout__main > .travel-guide-standard-related {
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

/* —— Safari hotels —— */
.hotel-hub-facts {
	margin-bottom: 1.75rem;
	padding: 1.25rem 1.35rem;
	background: rgba(27, 67, 50, 0.06);
	border-radius: var(--radius);
	border-left: 4px solid var(--gold);
}

.hotel-hub-facts__grid {
	display: grid;
	gap: 0.65rem 1.5rem;
	margin: 0;
}

@media (min-width: 640px) {
	.hotel-hub-facts__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.hotel-hub-facts__row {
	display: grid;
	gap: 0.2rem;
}

.hotel-hub-facts__row dt {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--forest-dark);
}

.hotel-hub-facts__row dd {
	margin: 0;
	font-size: 0.98rem;
	color: var(--brown-dark);
}

.card-grid--hotels {
	margin-top: 1.5rem;
}

.hotel-filters {
	margin-top: 1rem;
}

.hotel-filters__search {
	flex: 1 1 220px;
	min-width: 0;
	max-width: 420px;
}

.hotel-archive-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 1.5rem 0 2rem;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.5;
}

.hotel-filter-links {
	margin: 0.5rem 0 0;
	font-size: 0.9rem;
}

.hotel-budget-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	margin-top: 0.75rem;
}

.hotel-budget-tabs a {
	font-weight: 600;
}

.hotel-budget-tabs__current {
	font-weight: 700;
	color: var(--forest);
}

.dest-accommodation-lodges {
	margin-top: 2rem;
}

.dest-accommodation-tabs {
	margin-bottom: 1.25rem;
}

.dest-accommodation-lodges__more,
.dest-accommodation-lodges__empty {
	margin: 1rem 0 0;
	font-size: 0.95rem;
	color: var(--muted);
}

.card-grid--dest-lodges {
	margin-top: 0.5rem;
}

.hotel-location-index {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

@media (min-width: 600px) {
	.hotel-location-index {
		grid-template-columns: repeat(2, 1fr);
	}
}

.card--hotel .card__destinations {
	margin: 0 0 0.5rem;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--muted);
}

.card--hotel .card__destinations strong {
	color: var(--brown-dark);
	font-weight: 600;
}

.card--hotel .card__pill--budget,
.card--hotel .card__pill--popular {
	display: inline-block;
	margin: 0 0.35rem 0.5rem 0;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	font-size: 0.75rem;
}

.card--hotel .card__pill--budget {
	background: rgba(212, 175, 55, 0.2);
}

.card--hotel .card__pill--popular {
	background: rgba(45, 90, 61, 0.12);
	color: var(--forest);
	font-weight: 600;
}

.card--hotel .card__pill--budget {
	font-weight: 700;
	color: var(--brown-dark);
}

/* Destination hub — tours prose grouped above package cards */
.dest-hub-safari-zone {
	margin-top: 2.25rem;
}

.dest-hub-safari-zone__prose > h2:first-child {
	margin-top: 0;
}

.dest-hub-safari-zone .dest-hub-section-packages {
	margin-top: 1.35rem;
}

/* Destination hub/sections — homepage safari tour cards, 2 per row in main column */
.dest-hub-section-packages {
	margin-top: 2.25rem;
}

.dest-hub-section-packages--cards-only .dest-hub-section-packages__bar {
	justify-content: flex-end;
	margin-bottom: 1rem;
}

.dest-hub-section-packages__band {
	padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1rem, 2.5vw, 1.35rem);
	border-radius: var(--radius);
	background: linear-gradient(180deg, #f5f0e8 0%, var(--cream) 100%);
	border: 1px solid rgba(61, 41, 20, 0.08);
}

.dest-hub-section-packages__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem 1.25rem;
	margin-bottom: 1.25rem;
}

.dest-hub-section-packages__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.15rem, 2.2vw, 1.35rem);
	font-weight: 600;
	line-height: 1.25;
	color: var(--brown-dark);
}

.dest-hub-section-packages__all {
	flex-shrink: 0;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--forest-dark);
	text-decoration: underline;
	text-underline-offset: 0.2em;
	white-space: nowrap;
}

.dest-hub-section-packages__all:hover,
.dest-hub-section-packages__all:focus-visible {
	color: var(--forest-mid);
}

/* Safari tour cards inside destination prose — layout only; card chrome is global */
.prose--dest-hub .dest-hub-section-packages,
.dest-hub-section-packages,
.dest-hub-suggested-tours,
.prose--dest-hub .dest-hub__article .dest-hub-suggested-tours {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.dest-hub-suggested-tours {
	margin: 1.5rem 0 1.75rem;
}

.prose--dest-hub .card--safari-booking .card-sb__body p,
.prose--dest-hub .card--safari-booking .card-sb__footer {
	text-align: start;
	hyphens: none;
}

/* Image-overlay titles must stay cream inside .prose (hotel hubs, destination copy, safari-packages bands). */
.prose .card--safari-booking .card-sb__title,
.prose--dest-hub .card--safari-booking .card-sb__title {
	color: var(--cream);
	text-shadow:
		0 1px 4px rgba(0, 0, 0, 0.85),
		0 2px 22px rgba(0, 0, 0, 0.6),
		0 0 1px rgba(0, 0, 0, 0.8);
}

.prose--dest-hub .card--safari-booking .card-sb__footer-cta {
	color: var(--cream);
}

/* Destination explore cards (hub nearby + subpage grids) — compact, minimal */
.dest-hub-nearby-cards,
.card-grid--dest-nearby {
	margin: 1.5rem 0 1.25rem;
	max-width: none;
}

.prose--dest-hub .dest-hub__article .dest-hub-nearby-cards {
	max-width: none;
}

.dest-hub-nearby-cards__grid.card-grid--dest {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
}

@media (max-width: 900px) {
	.dest-hub-nearby-cards__grid.card-grid--dest {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.dest-hub-nearby-cards__grid.card-grid--dest {
		grid-template-columns: 1fr;
	}
}

.dest-hub-nearby-cards .card,
.card-grid--dest-nearby .card {
	box-shadow: 0 6px 22px rgba(26, 15, 8, 0.08);
}

.dest-hub-nearby-cards .card:hover,
.card-grid--dest-nearby .card:hover {
	transform: translateY(-2px);
}

.dest-hub-nearby-cards .card__body,
.card-grid--dest-nearby .card__body {
	padding: 0.5rem 1rem 5px;
}

.dest-hub-nearby-cards .card__title,
.card-grid--dest-nearby .card__title,
.prose--dest-hub .dest-hub-nearby-cards .card__title {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	line-height: 1.25;
	text-align: start;
}

.dest-hub-nearby-cards .card__excerpt,
.card-grid--dest-nearby .card__excerpt,
.prose--dest-hub .dest-hub-nearby-cards .card__excerpt {
	margin: 0 0 5px;
	font-size: 0.88rem;
	line-height: 1.45;
	flex: none;
	text-align: start;
	hyphens: none;
}

.dest-hub-nearby-cards .card__link,
.card-grid--dest-nearby .card__link {
	margin: 5px 0 5px;
	padding: 0;
	font-size: 0.85rem;
	line-height: 1.2;
}

.card-grid.card-grid--safari-home.card-grid--safari-two-col,
.safari-home-card-grid.card-grid--safari-two-col {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 560px) {
	.card-grid.card-grid--safari-home.card-grid--safari-two-col,
	.safari-home-card-grid.card-grid--safari-two-col {
		grid-template-columns: 1fr;
	}
}

/* Destination + hub FAQs — standard card list */
.dest-hub-faqs,
.dest-faqs {
	margin: 1.25rem 0 1rem;
	max-width: none;
}

.prose--dest-hub .dest-hub__article .dest-hub-faqs,
.prose--dest-hub .dest-hub__article .faq-list {
	max-width: none;
}

.prose--dest-hub .dest-hub-faqs .faq-item__q,
.prose--dest-hub .dest-hub-faqs .faq-item dt {
	text-align: start;
}

.prose--dest-hub .dest-hub-faqs .faq-item__a,
.prose--dest-hub .dest-hub-faqs .faq-item dd {
	text-align: start;
	hyphens: none;
}

.dest-tips {
	margin: 0;
	padding-left: 1.2rem;
}

.btn--block {
	display: block;
	text-align: center;
	width: 100%;
}

/* Destination hub landing (hero + sidebar article) */
.dest-hub.dest-hub--landing,
.dest-hub.dest-hub--section-rich {
	padding-top: 0;
	padding-bottom: 3rem;
}

.single-ust_destination .breadcrumbs-itinerary-sb + .dest-hub--landing {
	margin-top: 0;
}

.dest-hub-hero {
	position: relative;
	min-height: 390px;
	display: flex;
	align-items: flex-end;
	color: #fff;
	margin-top: 0;
	margin-bottom: 2rem;
}

.dest-hub-hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: var(--color-forest, #1a3c34);
}

.dest-hub-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dest-hub-hero__bg-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a3c34 0%, #2d5a4a 55%, #4a7c59 100%);
}

.dest-hub-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.dest-hub-hero__inner {
	position: relative;
	z-index: 1;
	padding: 2.5rem 0 2.75rem;
	max-width: 820px;
}

.dest-hub-hero__crumb {
	margin: 0 0 0.5rem;
	font-size: 0.88rem;
}

.dest-hub-hero__crumb a {
	color: rgba(255, 255, 255, 0.92);
}

.dest-hub-hero__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.65rem, 4vw, 2.45rem);
	line-height: 1.15;
	text-wrap: balance;
}

.dest-hub-hero__tagline {
	margin: 0 0 1.1rem;
	font-size: 1.05rem;
	line-height: 1.5;
	max-width: 62ch;
	opacity: 0.95;
}

.dest-hub-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.dest-hub__shell {
	padding-bottom: 1rem;
}

.dest-hub__sidebar {
	align-self: start;
}

.dest-hub-sidebar__sticky {
	position: sticky;
	top: calc(var(--sticky-top, 0px) + 1rem);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-bottom: 2rem;
}

.dest-hub-sidebar-card.tour-sidebar-card {
	margin-top: 0;
}

.dest-hub-sidebar-card .tour-sidebar-card__kicker {
	text-align: center;
	margin-top: 0.25rem;
}

.dest-hub-sidebar-card .tour-sidebar-card__title {
	font-size: clamp(1.05rem, 2.1vw, 1.2rem);
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	text-decoration-thickness: 2px;
}

.dest-hub__sidebar .tour-sidebar-packages--dest-hub {
	margin-top: 0;
}

/* Destination sidebar — compact panel (card background, minimal TOC density) */
.dest-hub-sidebar-panel {
	position: relative;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(61, 41, 20, 0.1);
	border-radius: var(--radius);
	padding: 0.55rem 0.7rem 0.6rem;
	box-shadow: 0 10px 24px rgba(42, 33, 24, 0.07);
}

.dest-hub-sidebar-panel::before {
	content: '';
	position: absolute;
	inset-inline: -1px;
	top: -1px;
	height: 3px;
	border-radius: var(--radius) var(--radius) 0 0;
	background: linear-gradient(90deg, var(--forest-dark), rgba(212, 175, 55, 0.65));
	opacity: 0.85;
	pointer-events: none;
}

.dest-hub-nav.tour-sidebar-card {
	margin-top: 0;
	padding: clamp(0.75rem, 1.8vw, 0.95rem);
}

.hotel-hub-sidebar-card + .hotel-hub-nav.tour-sidebar-card {
	margin-top: 0.75rem;
}

.hotel-hub-nav__title {
	margin: 0 0 0.65rem;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--forest-dark);
}

.hotel-hub__guide-links {
	margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
	padding: clamp(1rem, 2vw, 1.25rem);
	background: rgba(245, 240, 232, 0.55);
	border: 1px solid rgba(61, 41, 20, 0.1);
	border-radius: var(--radius);
}

.hotel-hub__guide-links h2 {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
}

.hotel-hub__guide-links-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.35rem;
}

.hotel-hub__guide-links-list a {
	font-weight: 600;
	color: var(--forest-dark);
	text-decoration: none;
}

.hotel-hub__guide-links-list a:hover,
.hotel-hub__guide-links-list a:focus-visible {
	text-decoration: underline;
}

.hotel-hub__guide-links-related {
	margin: 0.85rem 0 0;
	font-size: 0.92rem;
}

.hotel-hub__guide-links-related a {
	font-weight: 600;
	color: var(--forest-dark);
}

.hotel-hub__keywords {
	margin: 1.25rem 0 0;
	font-size: 0.95rem;
	line-height: 1.55;
}

.hotel-location-map {
	margin: 0 0 1.75rem;
}

.hotel-location-map .dest-hub-map {
	margin-bottom: 0;
}

.hotel-location-map--lodge {
	margin-bottom: 1.5rem;
}

/* Hotel hub & sections — editorial content panel */
.hotel-hub .hotel-hub__content-panel {
	margin-top: 0;
	padding: clamp(1.25rem, 2.5vw, 1.85rem);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: var(--radius);
	box-shadow: 0 8px 32px rgba(42, 33, 24, 0.06);
}

.hotel-hub .hotel-section__lede,
.hotel-hub .dest-hub__lede.hotel-section__lede {
	margin: 0 0 1.35rem;
	padding: 0.85rem 1rem;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--brown-dark);
	background: linear-gradient(135deg, rgba(27, 67, 50, 0.06) 0%, rgba(245, 240, 232, 0.55) 100%);
	border-left: 4px solid var(--gold);
	border-radius: 0 var(--radius) var(--radius) 0;
}

.hotel-hub .dest-hub__body.dest-hub__article,
.hotel-hub .hotel-hub__article.dest-hub__body {
	font-size: 1.02rem;
	line-height: 1.7;
}

.hotel-hub .dest-hub__body.dest-hub__article::after {
	content: '';
	display: table;
	clear: both;
}

.hotel-hub .dest-hub__body.dest-hub__article p,
.hotel-hub .dest-hub__body.dest-hub__article li {
	text-align: justify;
	text-justify: inter-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.hotel-hub .dest-hub__body.dest-hub__article h2 {
	margin-top: 2.25rem;
	margin-bottom: 0.85rem;
	font-size: 1.45rem;
	scroll-margin-top: 6rem;
	text-align: start;
	hyphens: none;
	color: var(--forest-dark);
}

.hotel-hub .dest-hub__body.dest-hub__article h3 {
	margin-top: 1.5rem;
	margin-bottom: 0.65rem;
	font-size: 1.15rem;
	text-align: start;
	hyphens: none;
	color: var(--forest-dark);
}

.hotel-hub .dest-hub__body.dest-hub__article ul,
.hotel-hub .dest-hub__body.dest-hub__article ol {
	margin: 0.75rem 0 1.1rem;
	padding-left: 1.35rem;
}

.hotel-hub .dest-hub__body.dest-hub__article li {
	margin-bottom: 0.45rem;
}

.hotel-hub .dest-hub__body.dest-hub__article .ust-lr-separator {
	margin: clamp(1.75rem, 3vw, 2.35rem) 0;
}

.hotel-hub .dest-hub-faqs.hotel-section-faqs {
	margin-top: 0;
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.hotel-hub .dest-hub-section-packages {
	margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.hotel-hub .hotel-hub-adventure-cta {
	margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.hotel-hub-facts {
	box-shadow: 0 4px 20px rgba(42, 33, 24, 0.05);
}

/* Editorial content panel — destinations, wildlife, hotels, pages, FAQ */
.dest-hub.dest-hub--landing .dest-hub__content-panel,
.dest-hub.dest-hub--section-rich .dest-hub__content-panel,
.dest-hub.dest-hub--section.dest-section-view .dest-hub__content-panel,
.wildlife-hub .dest-hub__content-panel,
.hotel-hub .hotel-hub__content-panel,
.page-singular .dest-hub__content-panel,
.activity-singular .dest-hub__content-panel,
.faq-page__body.dest-hub__content-panel {
	margin-top: 0;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.dest-hub .dest-section__lede,
.dest-hub .dest-hub__lede.dest-section__lede,
.hotel-hub .dest-hub__lede.hotel-section__lede,
.wildlife-hub .wildlife-section__lede,
.wildlife-hub .dest-hub__lede.wildlife-section__lede {
	margin: 0 0 1.35rem;
	padding: 0.85rem 1rem;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--brown-dark);
	background: linear-gradient(135deg, rgba(27, 67, 50, 0.06) 0%, rgba(245, 240, 232, 0.55) 100%);
	border-left: 4px solid var(--gold);
	border-radius: 0 var(--radius) var(--radius) 0;
	max-width: none;
	opacity: 1;
}

.dest-hub .dest-hub-faqs.dest-section-faqs,
.wildlife-hub .dest-hub-faqs.wildlife-section-faqs,
.hotel-hub .dest-hub-faqs.hotel-section-faqs {
	margin-top: 0;
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.dest-hub .dest-hub-section-packages,
.wildlife-hub .dest-hub-section-packages,
.hotel-hub .dest-hub-section-packages {
	margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.dest-hub .dest-hub-adventure-cta,
.wildlife-hub .dest-hub-adventure-cta,
.hotel-hub .hotel-hub-adventure-cta {
	margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.wildlife-hub-facts {
	box-shadow: 0 4px 20px rgba(42, 33, 24, 0.05);
}

.page-singular,
.activity-singular {
	padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.page-singular__title,
.activity-singular__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.65rem, 3.5vw, 2.15rem);
	line-height: 1.2;
	color: var(--forest-dark);
}

.page-singular__surface,
.activity-singular__surface {
	margin-bottom: 1.5rem;
}

.activity-singular__thumb {
	margin: 0 0 1.25rem;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(42, 33, 24, 0.08);
}

.activity-singular__cta {
	margin: 0;
}

.blog-entry-content.dest-hub__article p,
.blog-entry-content.dest-hub__article li,
.page-singular__body p,
.page-singular__body li,
.activity-singular__body p,
.activity-singular__body li,
.tour-section--panel .tour-section__body p,
.tour-section--panel .tour-section__body li,
.wildlife-hub .wildlife-formatted-prose.dest-hub__article p,
.wildlife-hub .wildlife-formatted-prose.dest-hub__article li {
	text-align: justify;
	text-justify: inter-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.blog-entry-content.dest-hub__article h2,
.page-singular__body h2,
.activity-singular__body h2,
.wildlife-hub .wildlife-formatted-prose.dest-hub__article h2 {
	margin-top: 2rem;
	margin-bottom: 0.85rem;
	font-size: 1.45rem;
	text-align: start;
	hyphens: none;
	color: var(--forest-dark);
}

.blog-entry-content.dest-hub__article h3,
.page-singular__body h3,
.activity-singular__body h3,
.wildlife-hub .wildlife-formatted-prose.dest-hub__article h3 {
	margin-top: 1.35rem;
	margin-bottom: 0.65rem;
	font-size: 1.15rem;
	text-align: start;
	hyphens: none;
	color: var(--forest-dark);
}

.dest-hub-map {
	margin: 0 0 1.25rem;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(61, 41, 20, 0.12);
	box-shadow: 0 12px 28px rgba(42, 33, 24, 0.08);
}

.dest-hub-map__iframe {
	display: block;
	width: 100%;
	height: min(420px, 58vw);
	min-height: 280px;
	border: 0;
}

.dest-hub-map__open {
	margin: 0;
	padding: 0.55rem 0.85rem;
	font-size: 0.88rem;
	background: rgba(245, 240, 232, 0.65);
}

.dest-hub-map__open a {
	color: var(--forest-dark);
	font-weight: 600;
}

.dest-hub-toc.dest-hub-sidebar-panel {
	margin-top: 0;
}

.dest-hub-toc__label {
	margin: 0.3rem 0 0.35rem;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.7rem;
	color: rgba(42, 33, 24, 0.5);
	letter-spacing: 0.05em;
}

.dest-hub-toc__list {
	margin: 0;
	padding: 0 0 0 1.05rem;
	font-size: 0.8125rem;
	line-height: 1.32;
	color: var(--muted);
}

.dest-hub-toc__list li {
	margin: 0;
	padding: 0;
}

.dest-hub-toc__list li + li {
	margin-top: 0.1rem;
}

.dest-hub-toc__list a {
	display: block;
	padding: 0.08rem 0;
	text-decoration: none;
	color: var(--muted);
}

.dest-hub-toc__list a:hover,
.dest-hub-toc__list a:focus-visible {
	color: var(--forest-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.dest-hub-nav.tour-sidebar-card .dest-hub-nav__link,
.dest-hub-nav.tour-sidebar-card .dest-hub-nav__sub-link {
	color: var(--brown-dark);
	font-size: 0.84rem;
}

.dest-hub-nav.tour-sidebar-card .dest-hub-nav__item.is-active > .dest-hub-nav__link,
.dest-hub-nav.tour-sidebar-card .dest-hub-nav__sub-item.is-active > .dest-hub-nav__sub-link {
	background: rgba(245, 240, 232, 0.85);
	color: var(--forest-dark);
}

.prose--dest-hub {
	max-width: none;
}

.prose--dest-hub .dest-hub__article {
	font-size: 1.02rem;
	line-height: 1.7;
	max-width: none;
}

/* Inline hub figures */
.dest-hub__figure {
	margin: clamp(1.25rem, 2.5vw, 2rem) 0;
	padding: 0;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--color-sand, #f4efe6);
	box-shadow: 0 4px 24px rgba(26, 15, 8, 0.08);
}

.dest-hub__figure img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.dest-hub__figure--wide {
	margin-left: 0;
	margin-right: 0;
}

.dest-hub__figure--right {
	float: right;
	width: min(42%, 280px);
	margin: 0.25rem 0 1rem 1.25rem;
}

.dest-hub__figcaption {
	margin: 0;
	padding: 0.65rem 0.9rem;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--brown-mid, #4a3728);
	text-align: center;
	border-top: 1px dotted rgba(61, 41, 20, 0.18);
	background: linear-gradient(180deg, rgba(250, 248, 243, 0.9) 0%, var(--white) 100%);
}

.dest-hub__figure-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: clamp(1.25rem, 2.5vw, 2rem) 0;
}

.dest-hub__figure-row .dest-hub__figure {
	margin: 0;
}

@media (max-width: 720px) {
	.dest-hub__figure-row {
		grid-template-columns: 1fr;
	}

	.dest-hub__figure--right {
		float: none;
		width: 100%;
		margin: clamp(1rem, 2vw, 1.5rem) 0;
	}
}

.prose--dest-hub .dest-hub__article::after {
	content: '';
	display: table;
	clear: both;
}

.prose--dest-hub .dest-hub__article p,
.prose--dest-hub .dest-hub__article li {
	text-align: justify;
	text-justify: inter-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.prose--dest-hub .dest-hub__article h2 {
	margin-top: 2.25rem;
	margin-bottom: 0.85rem;
	font-size: 1.45rem;
	scroll-margin-top: 6rem;
	text-align: start;
	hyphens: none;
}

.prose--dest-hub .dest-hub__article h3 {
	margin-top: 1.35rem;
	margin-bottom: 0.55rem;
	font-size: 1.15rem;
	text-align: start;
	hyphens: none;
}

/* Theme section divider (replaces raw <hr> in long-form destination/blog copy) */
.ust-lr-separator {
	display: block;
	width: 100%;
	height: 0;
	margin: clamp(1.75rem, 3vw, 2.35rem) 0;
	padding: 0;
	border: 0;
	border-top: 2px solid var(--gold);
}

.prose--dest-hub .dest-hub__article hr {
	display: none;
	margin: 0;
	border: 0;
}

.dest-hub__facts-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1rem 0 1.5rem;
	font-size: 0.95rem;
}

.dest-hub__facts-table th,
.dest-hub__facts-table td {
	border: 1px solid var(--color-border, #e0d8cc);
	padding: 0.55rem 0.75rem;
	text-align: left;
	vertical-align: top;
}

.dest-hub__facts-table thead th {
	background: var(--color-sand, #f4efe6);
	font-weight: 700;
}

/* Destination hub — “Ready for your adventure?” CTA card */
.prose--dest-hub .dest-hub-adventure-cta,
.dest-hub__main > .dest-hub-adventure-cta,
.utw-geo-view .dest-hub-adventure-cta {
	margin: clamp(2rem, 4vw, 2.75rem) 0 0.5rem;
}

.dest-hub-adventure-cta__card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: clamp(1.1rem, 2.5vw, 1.65rem);
	text-align: left;
	padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.75rem);
	background: var(--cream);
	border: 1px solid rgba(184, 134, 11, 0.42);
	border-radius: var(--radius);
	box-shadow: 0 8px 32px rgba(42, 33, 24, 0.07);
}

.dest-hub-adventure-cta__media {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dest-hub-adventure-cta__consultant {
	margin: 0;
	padding: 0;
	width: 88px;
	height: 88px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 50%;
	border: 3px solid var(--white);
	box-shadow: 0 4px 18px rgba(26, 15, 8, 0.12);
}

.dest-hub-adventure-cta__consultant-img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	object-position: center 18%;
	transform: scale(1.34);
	transform-origin: center 22%;
	border: 0;
	box-shadow: none;
}

.dest-hub-adventure-cta__consultant-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--forest-mid) 0%, var(--forest-dark) 100%);
	border: 3px solid var(--white);
	box-shadow: 0 4px 18px rgba(26, 15, 8, 0.12);
	color: var(--cream);
}

.dest-hub-adventure-cta__consultant-icon svg {
	display: block;
	opacity: 0.92;
}

.dest-hub-adventure-cta__content {
	flex: 1 1 0;
	min-width: 0;
}

.dest-hub-adventure-cta__title {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
	font-weight: 700;
	color: var(--brown-dark);
	line-height: 1.22;
}

.dest-hub-adventure-cta__text {
	margin: 0 0 1.1rem;
	max-width: none;
	font-size: 0.98rem;
	line-height: 1.58;
	color: var(--muted);
}

.dest-hub-adventure-cta__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0.65rem;
	width: 100%;
	max-width: 100%;
}

.dest-hub-adventure-cta__actions--cols-1 {
	flex-direction: column;
	max-width: 16rem;
}

.dest-hub-adventure-cta__actions--cols-2 .dest-hub-adventure-cta__btn {
	flex: 1 1 0;
	min-width: 0;
	width: auto;
}

.dest-hub-adventure-cta__actions--cols-1 .dest-hub-adventure-cta__btn {
	width: 100%;
}

.dest-hub-adventure-cta__actions .dest-hub-adventure-cta__btn {
	min-height: 3rem;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	white-space: normal;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 700;
}

@media (max-width: 640px) {
	.dest-hub-adventure-cta__card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.dest-hub-adventure-cta__content {
		width: 100%;
	}

	.dest-hub-adventure-cta__actions,
	.dest-hub-adventure-cta__actions--cols-2 {
		flex-direction: column;
		max-width: 20rem;
		margin-left: auto;
		margin-right: auto;
	}

	.dest-hub-adventure-cta__actions--cols-2 .dest-hub-adventure-cta__btn,
	.dest-hub-adventure-cta__actions--cols-1 .dest-hub-adventure-cta__btn {
		flex: none;
		width: 100%;
	}
}

@media (max-width: 899px) {
	.dest-hub__sidebar {
		position: static;
	}
	.dest-hub-hero {
		min-height: 330px;
	}
}

/* Uganda to the World — hub + geo market landings */
.utw-hub-hero__bg,
.utw-geo-hero__bg {
	background:
		linear-gradient(135deg, rgba(18, 42, 28, 0.92) 0%, rgba(34, 68, 44, 0.78) 45%, rgba(92, 64, 20, 0.55) 100%),
		url("../images/wildlife/mountain-gorilla-placeholder.svg") center / cover no-repeat;
}

.utw-hub-markets__intro {
	max-width: 42rem;
	margin: 0 0 1.5rem;
	color: var(--color-muted, #5a6b5f);
}

.utw-geo-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
	gap: 1rem;
}

.utw-geo-card {
	margin: 0;
}

.utw-geo-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.25rem 1.35rem;
	border: 1px solid rgba(26, 58, 40, 0.12);
	border-radius: 0.65rem;
	background: #fff;
	box-shadow: 0 2px 12px rgba(18, 42, 28, 0.06);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.utw-geo-card__link:hover,
.utw-geo-card__link:focus-visible {
	border-color: var(--color-gold, #c9a227);
	box-shadow: 0 8px 24px rgba(18, 42, 28, 0.1);
	transform: translateY(-2px);
}

.utw-geo-card__title {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
	color: var(--color-forest, #1a3a28);
}

.utw-geo-card__subtitle {
	margin: 0 0 0.65rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-muted, #5a6b5f);
}

.utw-geo-card__excerpt {
	margin: 0 0 0.85rem;
	font-size: 0.92rem;
	line-height: 1.55;
	flex: 1;
}

.utw-geo-card__cta {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--color-gold-dark, #9a7b1a);
}

.utw-trust-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.65rem;
	max-width: 40rem;
}

.utw-trust-list li {
	padding-left: 1.35rem;
	position: relative;
}

.utw-trust-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--color-gold, #c9a227);
}

.utw-geo-hero__parent {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.utw-section-heading {
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.utw-geo-facts {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
}

.utw-geo-facts li {
	margin-bottom: 0.5rem;
}

/* Geo pages — content column (~10% narrower than previous 1280px cap). */
.utw-geo-view .utw-geo-body.wrap {
	width: min(1152px, 84.6vw);
}

.utw-geo-view .utw-geo-body .utw-geo-content.prose {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	font-size: 1.0625rem;
	line-height: 1.72;
}

.utw-geo-view .utw-geo-content > p:first-of-type,
.utw-geo-view .utw-geo-content .utw-geo-intro {
	font-size: 1.125rem;
	line-height: 1.75;
	max-width: none;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
}

.utw-geo-view .utw-section-heading {
	font-size: clamp(1.35rem, 2.2vw, 1.55rem);
}

.utw-geo-body {
	padding-bottom: 3rem;
}

.utw-geo-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.5rem;
}

.utw-geo-links a {
	font-weight: 600;
}

.utw-geo-cta-band {
	padding: 1.75rem;
	border-radius: 0.65rem;
	background: rgba(26, 58, 40, 0.05);
	border: 1px solid rgba(26, 58, 40, 0.1);
}

/* Geo cluster — national parks showcase (cards + map panel). */
.utw-parks-showcase {
	margin: 2.75rem 0;
	padding: 2rem 0 2.25rem;
	border-top: 1px solid rgba(26, 58, 40, 0.12);
}

.utw-parks-showcase__head {
	margin-bottom: 1.5rem;
	max-width: 40rem;
}

.utw-parks-showcase__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	line-height: 1.2;
	color: var(--forest-dark, #1a3c34);
}

.utw-parks-showcase__lede {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--brown-mid, #4a3728);
}

.utw-parks-showcase__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(11rem, 26%);
	gap: clamp(1rem, 2.5vw, 1.75rem);
	align-items: stretch;
}

.utw-parks-showcase__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.75rem, 1.5vw, 1rem);
}

.utw-parks-showcase__card {
	margin: 0;
	min-height: 11.5rem;
}

.utw-parks-showcase__card-link {
	display: block;
	position: relative;
	height: 100%;
	min-height: 11.5rem;
	border-radius: 0.5rem;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	box-shadow: 0 6px 20px rgba(20, 30, 24, 0.14);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.utw-parks-showcase__card-link:hover,
.utw-parks-showcase__card-link:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(20, 30, 24, 0.22);
}

.utw-parks-showcase__card-media {
	display: block;
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, #2d5a4a 0%, #1a3c34 100%);
}

.utw-parks-showcase__img,
.utw-parks-showcase__card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.utw-parks-showcase__card-caption {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	padding: 2.5rem 0.85rem 0.85rem;
	background: linear-gradient(180deg, transparent 0%, rgba(12, 28, 22, 0.88) 72%);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.utw-parks-showcase__card-name {
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.02em;
}

.utw-parks-showcase__card-desc {
	font-size: 0.78rem;
	line-height: 1.4;
	opacity: 0.92;
}

.utw-parks-showcase__map-panel {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 0.85rem;
	border-radius: 0.5rem;
	background: linear-gradient(180deg, #eef4ef 0%, #e2ebe4 100%);
	border: 1px solid rgba(26, 58, 40, 0.14);
}

.utw-parks-showcase__map-visual {
	position: relative;
	flex: 1 1 auto;
	min-height: 12rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.utw-parks-showcase__map-svg {
	display: block;
	width: auto;
	height: min(100%, 16rem);
	max-width: 100%;
	opacity: 0.95;
}

.utw-parks-showcase__map-pins {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	inset: 8% 6%;
	pointer-events: none;
}

.utw-parks-showcase__map-pin {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	transform: translate(-50%, -50%);
	font-size: 0.62rem;
	font-weight: 600;
	color: var(--forest-dark, #1a3c34);
	white-space: nowrap;
}

.utw-parks-showcase__map-pin-dot {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--color-gold, #c9a227);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85);
	flex-shrink: 0;
}

.utw-parks-showcase__map-note {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.45;
	color: var(--brown-mid, #4a3728);
}

.utw-parks-showcase__footer {
	margin: 1.25rem 0 0;
	text-align: start;
}

.utw-parks-showcase__explore-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--forest-mid, #2d5a4a);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.utw-parks-showcase__explore-link:hover,
.utw-parks-showcase__explore-link:focus-visible {
	color: var(--forest-dark, #1a3c34);
}

.utw-geo-main .utw-geo-content--tail,
.utw-geo-main .utw-geo-content--mid {
	margin-top: 0;
}

/* Geo cluster — sample safari trip cards (homepage .card--safari-booking). */
.utw-safari-trips {
	margin: 2.75rem 0;
	padding: 2rem 0 2.25rem;
	border-top: 1px solid rgba(26, 58, 40, 0.12);
}

.utw-safari-trips__head {
	margin-bottom: 1.35rem;
	max-width: 42rem;
}

.utw-safari-trips__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	line-height: 1.2;
	color: var(--forest-dark, #1a3c34);
}

.utw-safari-trips__lede {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--brown-mid, #4a3728);
}

.utw-safari-trips__cards .card-grid--safari-home.utw-safari-trips__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.35rem);
}

.utw-safari-trips__footer {
	margin: 1.35rem 0 0;
	text-align: start;
}

.utw-safari-trips__all-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--forest-mid, #2d5a4a);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.utw-safari-trips__all-link:hover,
.utw-safari-trips__all-link:focus-visible {
	color: var(--forest-dark, #1a3c34);
}

/* Geo cluster — things-to-do style experience cards */
.utw-experience-cards {
	margin: 2.5rem 0;
}

.utw-experience-cards .utw-section-heading {
	margin-bottom: 1.25rem;
}

.utw-experience-cards__grid-wrap {
	margin-top: 0;
}

.utw-experience-cards__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
	.utw-experience-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.utw-experience-cards__grid {
		grid-template-columns: 1fr;
	}
}

/* Geo cluster — practical planning travel guide cards */
.utw-planning-guides {
	margin: 2.5rem 0;
}

.utw-planning-guides .utw-section-heading {
	margin-bottom: 1.25rem;
}

.utw-planning-guides__grid {
	margin-top: 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 900px) {
	.utw-planning-guides__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.utw-planning-guides__more {
	margin: 1.35rem 0 0;
	text-align: center;
}

.utw-planning-guides__more-link {
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--forest-mid, #2d5a4a);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.utw-planning-guides__more-link:hover,
.utw-planning-guides__more-link:focus-visible {
	color: var(--forest-dark, #1a3c34);
}

@media (max-width: 1100px) {
	.utw-safari-trips__cards .card-grid--safari-home.utw-safari-trips__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.utw-safari-trips__cards .card-grid--safari-home.utw-safari-trips__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.utw-parks-showcase__layout {
		grid-template-columns: 1fr;
	}

	.utw-parks-showcase__map-panel {
		order: -1;
	}

	.utw-parks-showcase__map-visual {
		min-height: 9rem;
	}
}

@media (max-width: 560px) {
	.utw-parks-showcase__grid {
		grid-template-columns: 1fr;
	}

	.utw-parks-showcase__card,
	.utw-parks-showcase__card-link {
		min-height: 10rem;
	}
}