/**
 * Pleasetrip — Page Destinations (template Destinations Pleasetrip).
 */

:root {
	--dst-max:        1200px;
	--dst-px:         clamp(1rem, 4vw, 2rem);
	--radius-card:    1rem;
	--color-text:     #1a1a2e;
	--color-muted:    #6b7280;
	--color-white:    #ffffff;
	--color-link:     var(--pt-link);
	--color-yellow:   #facc15;
	--color-yellow-h: #e0b400;
}

.page-template-template-destinations .site-content,
.site-content:has(#pleasetrip-destinations) {
	padding-top: 0;
}

#pleasetrip-destinations {
	overflow-x: clip;
	width: 100%;
}

.dst-container {
	max-width: var(--dst-max);
	margin-inline: auto;
	padding-inline: var(--dst-px);
}

/* ── HÉROS (image de fond pleine largeur) ─────────────────────────────────────── */
.dst-hero {
	position: relative;
	min-height: clamp(360px, 58vh, 620px);
	background: #132032;
	overflow: hidden;
}

.dst-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	background-color: #0f172a;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: saturate(1.06);
}

.dst-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(8, 12, 20, .25) 0%, rgba(8, 12, 20, .6) 65%);
}

.dst-hero__content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding: clamp(3rem, 10vw, 5rem) var(--dst-px);
	color: var(--color-white);
}

.dst-hero__icon,
.dst-hero__icon-svg {
	display: inline-flex;
	margin-bottom: .75rem;
	color: rgba(255, 255, 255, .95);
	justify-content: center;
}
.dst-hero__icon-el {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 50%;
}

.dst-hero__title {
	font-size: clamp(1.75rem, 4.2vw, 2.75rem);
	font-weight: 800;
	margin: 0 0 .6rem;
	color: var(--color-white);
	text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.dst-hero__kicker {
	font-size: clamp(.95rem, 2vw, 1.15rem);
	margin: 0 0 1rem;
	opacity: .95;
	letter-spacing: .02em;
}

.dst-hero__desc {
	font-size: clamp(.9rem, 1.7vw, 1.05rem);
	line-height: 1.55;
	margin: 0 auto 1.75rem;
	max-width: 52ch;
	text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}

.dst-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .65rem .75rem;
}

.dst-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-yellow);
	color: #111827;
	padding: .4rem .8rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	font-size: .8rem;
	line-height: 1.25;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .14);
	border: none;
	cursor: pointer;
}
.dst-btn:hover {
	background: var(--color-yellow-h);
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

/* CTA jaunes des cartes (hubs + page Destinations) */
#pleasetrip-destinations .btn.btn--primary,
#pleasetrip-destinations .dst-card__cta.btn,
#pleasetrip-destinations .dst-hub-metro-card__cta.btn {
	padding: .42rem .85rem;
	font-size: .78rem;
	font-weight: 600;
	line-height: 1.25;
	border-radius: 1.35rem;
	border-width: 1px;
	box-shadow: 0 1px 4px rgba(15, 23, 42, .08);
}

/* ── SECTIONS ───────────────────────────────────────────────────────────────── */
.dst-section {
	padding: 4rem 0;
}

.dst-section--continents {
	background: var(--color-white);
	margin-top: 0;
	padding-top: 3rem;
	border-top: 1px solid #e5e7eb;
}

.dst-section__head {
	position: relative;
	margin-bottom: 2.25rem;
	padding-left: 2.75rem;
}

.dst-section__head--flag,
.dst-section__head--buildings {
	padding-left: 2.75rem;
}

.dst-section__icon {
	position: absolute;
	left: 0;
	top: .15rem;
	color: var(--color-link);
}

.dst-section__title {
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 .7rem;
}

.dst-section__intro {
	font-size: .95rem;
	color: var(--color-muted);
	margin: 0;
	max-width: 65ch;
	line-height: 1.58;
}

.dst-section__intro p:last-child {
	margin-bottom: 0;
}

.dst-section--countries {
	background: #fafafa;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.dst-section--cities {
	background: #f9fafb;
}

/* ── Grille continents (1 image par carte) ─────────────────────────────────── */
.dst-cont-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: start;
}

.dst-cont-card-wrap {
	min-width: 0;
}

.dst-cont-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border-radius: var(--radius-card);
	box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
}
.dst-cont-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
	transform: translateY(-2px);
}

.dst-cont-card__photo {
	height: 160px;
	background-color: #e5e7eb;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.dst-cont-card__photo--empty {
	background-image: linear-gradient(135deg, #cbd5e1, #64748b);
}

.dst-cont-card__meta {
	padding: .55rem .85rem .6rem;
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: .35rem;
}

.dst-cont-card__head {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	min-width: 0;
}

.dst-cont-card__title {
	font-size: 1.02rem;
	font-weight: 700;
	margin: 0;
	color: var(--color-text);
	flex: 1;
	min-width: 0;
	line-height: 1.25;
}

.dst-cont-card__sub {
	line-height: 1.38;
	width: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
	font-size: .83rem;
	color: var(--color-muted);
	margin: 0;
}

.dst-cont-card__arrow {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	color: var(--color-muted);
	line-height: 1;
}

/* ── Grilles pays / villes ─────────────────────────────────────────────────── */
.dst-simple-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dst-country-card__img-wrap {
	position: relative;
	border-radius: var(--radius-card);
	overflow: hidden;
	aspect-ratio: 16/11;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.dst-country-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.dst-country-card:hover .dst-country-card__img {
	transform: scale(1.035);
	transition: transform .35s ease;
}

.dst-country-card__img {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #e5e7eb;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: transform .35s ease;
}

.dst-country-card__img--empty {
	background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.dst-country-card__name {
	position: absolute;
	left: .75rem;
	bottom: .7rem;
	font-weight: 700;
	font-size: .92rem;
	color: var(--color-white);
	text-shadow: 0 2px 6px rgba(0, 0, 0, .45);
	max-width: calc(100% - 2.5rem);
}

.dst-country-card__arrow {
	position: absolute;
	right: .65rem;
	bottom: .65rem;
	color: rgba(255, 255, 255, .9);
}

.dst-country-card__sub {
	margin: .4rem 0 0;
	padding: 0 .15rem .25rem;
	font-size: .78rem;
	line-height: 1.38;
	color: var(--color-muted);
}

.dst-city-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: var(--color-white);
	border-radius: var(--radius-card);
	box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.dst-city-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
}

.dst-city-card__img-wrap {
	position: relative;
	aspect-ratio: 16 / 11;
	overflow: hidden;
}

.dst-city-card__img {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #dadfe6;
}
.dst-city-card__img--empty {
	background: #dadfe6;
}

.dst-city-card__foot {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: .5rem;
	padding: .72rem .85rem;
	background: var(--color-white);
}

.dst-city-card__text {
	display: flex;
	flex-direction: column;
	gap: .12rem;
	min-width: 0;
	flex: 1;
}

.dst-city-card__name {
	font-weight: 700;
	font-size: .95rem;
	color: var(--color-text);
}

.dst-city-card__sub {
	font-size: .78rem;
	line-height: 1.38;
	color: var(--color-muted);
}

.dst-city-card__arrow {
	flex-shrink: 0;
	color: var(--color-muted);
}

/* ── Bloc SEO ─────────────────────────────────────────────────────────────── */
.dst-editorial {
	padding-top: 3.5rem;
	padding-bottom: 4.5rem;
	max-width: 52rem;
	line-height: 1.72;
	font-size: 1rem;
	color: var(--color-text);
}

.dst-editorial h2 {
	font-size: clamp(1.2rem, 2.8vw, 1.65rem);
	margin: 0 0 1.25rem;
	color: var(--color-text);
}

.dst-editorial h3 {
	font-size: 1.1rem;
	margin: 1.75rem 0 .85rem;
	color: var(--color-text);
}

.dst-editorial p {
	margin: 0 0 1rem;
	color: #374151;
}

.dst-editorial a {
	color: var(--color-link);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.dst-editorial a:hover {
	color: var(--pt-link-hover);
	text-decoration-thickness: 2px;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.dst-cont-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.dst-simple-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.dst-hero {
		min-height: auto;
		padding-bottom: 2rem;
	}
	.dst-hero__content {
		padding-top: 3rem;
		text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
	}
	.dst-cont-grid {
		grid-template-columns: 1fr;
	}
	.dst-simple-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.dst-simple-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Hub profil (villes / pays / continents) ─────────────────────────────────── */
.dst-hero--hub {
	min-height: clamp(380px, 62vh, 640px);
}

.dst-hero__content--hub .dst-hero__title {
	font-size: clamp(2rem, 5vw, 3.15rem);
}

.dst-hero__kicker--hub {
	font-size: clamp(.88rem, 1.9vw, 1.08rem);
	margin-bottom: 1.5rem;
}

.dst-hero__desc--hub {
	margin-bottom: 1.85rem;
}

.dst-hero__pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .55rem .65rem;
}

.dst-hero-pill {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .4rem .75rem;
	border-radius: 999px;
	background: var(--color-yellow);
	color: #111827;
	font-weight: 600;
	font-size: .78rem;
	line-height: 1.25;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .14);
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.dst-hero-pill:hover {
	background: var(--color-yellow-h);
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.dst-hero-pill__icon-el {
	width: 18px;
	height: 18px;
	object-fit: contain;
	border-radius: 4px;
}

.dst-section__head--center {
	text-align: center;
	padding-left: 0;
	max-width: 48rem;
	margin-inline: auto;
}

.dst-section__title--center {
	text-align: center;
}

.dst-section__intro--center {
	margin-inline: auto;
	text-align: center;
	max-width: 52ch;
}

.dst-section--hub-metro {
	background: var(--color-white);
	border-top: 1px solid #e5e7eb;
}

.dst-hub-metro-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: start;
}

/* Hubs encadrés (Continents, Pays, Villes) */
.dst-section--hub-metro--framed .dst-hub-metro-grid {
	align-items: stretch;
	row-gap: 2rem;
	column-gap: 1.35rem;
}

.dst-section--hub-metro--cols-3 .dst-hub-metro-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dst-section--hub-metro--cols-4 .dst-hub-metro-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dst-section--hub-metro--framed .dst-hub-metro-wrap {
	display: flex;
	min-width: 0;
	height: 100%;
}

.dst-section--hub-metro--framed .dst-hub-metro-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	flex: 1 1 auto;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(15, 23, 42, .05);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.dst-section--hub-metro--framed .dst-hub-metro-card--linked:hover {
	transform: none;
	border-color: #cbd5e1;
	box-shadow: 0 10px 28px rgba(15, 23, 42, .1);
}

.dst-section--hub-metro--framed .dst-hub-metro-card__media {
	flex-shrink: 0;
	border-radius: 0;
	box-shadow: none;
}

.dst-section--hub-metro--framed .dst-hub-metro-card__facts {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: .4rem;
	min-height: 0;
	padding: .85rem 1rem 0;
	margin-top: 0;
}

.dst-section--hub-metro--framed .dst-hub-fact--desc {
	flex: 1 1 auto;
}

.dst-section--hub-metro--framed .dst-hub-fact--desc span:last-child {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	line-clamp: 5;
	overflow: hidden;
	min-height: calc(5 * 1.45 * 0.8rem);
}

.dst-section--hub-metro--framed .dst-hub-metro-card__cta.btn {
	align-self: center;
	margin-top: auto;
	margin-bottom: .95rem;
	flex-shrink: 0;
	text-align: center;
	white-space: normal;
	color: var(--pt-btn-primary-fg);
	background: var(--pt-btn-primary-bg);
}

.dst-section--hub-metro--framed .dst-hub-metro-card--linked:hover .dst-hub-metro-card__cta.btn {
	color: var(--pt-btn-primary-fg-hover);
	background: var(--pt-btn-primary-bg-hover);
}

.dst-hub-metro-card {
	display: flex;
	flex-direction: column;
	background: transparent;
	border-radius: var(--radius-card);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform .22s ease, box-shadow .22s ease;
}

.dst-hub-metro-card--linked:hover {
	transform: translateY(-3px);
}

.dst-hub-metro-card__media {
	position: relative;
	border-radius: var(--radius-card);
	overflow: hidden;
	aspect-ratio: 16 / 11;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
	flex-shrink: 0;
}

.dst-hub-metro-card__photo {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #e5e7eb;
}

.dst-hub-metro-card__photo--empty {
	background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.dst-hub-metro-card__badge {
	position: absolute;
	top: .65rem;
	left: .65rem;
	z-index: 1;
	display: inline-block;
	padding: .16rem .5rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .88);
	color: var(--color-text);
	font-size: .7rem;
	font-weight: 600;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}

.dst-hub-metro-card__city {
	position: absolute;
	left: .75rem;
	bottom: .7rem;
	font-weight: 800;
	font-size: .98rem;
	color: var(--color-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
	max-width: calc(100% - 1rem);
	line-height: 1.25;
	pointer-events: none;
}

.dst-hub-metro-card__facts {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	margin-top: .75rem;
	padding: 0 .2rem .25rem;
}

.dst-hub-fact {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: .5rem;
	font-size: .8rem;
	line-height: 1.42;
	margin: 0;
	color: var(--color-muted);
}

.dst-hub-fact__icon {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	margin-top: 1px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	line-height: 1;
	position: relative;
	background: rgba(37, 99, 235, .1);
	font-size: 12px;
}

.dst-hub-fact__icon--thermo::before { content: '\1F321'; transform: translateY(.5px); }
.dst-hub-fact__icon--calendar::before { content: '\1F4C5'; }
.dst-hub-fact__icon--pin::before { content: '\1F4CD'; }

.dst-hub-fact--desc {
	align-items: flex-start;
}

.dst-hub-fact--desc span:last-child {
	line-height: 1.45;
}

.dst-hub-metro-card__cta {
	margin: .35rem 0 0;
	font-size: .88rem;
	font-weight: 600;
	color: var(--color-primary, #0d9488);
}

.dst-section--hub-metro--framed .dst-hub-metro-card__cta:not(.btn) {
	color: var(--color-primary, #0d9488);
}

/* Page Destinations full — cartes encadrées */
.dst-section--continents,
.dst-section--countries,
.dst-section--cities {
	padding-bottom: 3rem;
}

.dst-section--countries {
	margin-top: .5rem;
}

.dst-cont-grid.dst-grid--framed,
.dst-simple-grid.dst-grid--framed {
	align-items: stretch;
	row-gap: 2rem;
	column-gap: 1.35rem;
}

.dst-cont-card-wrap,
.dst-simple-grid.dst-grid--framed > li {
	display: flex;
	min-width: 0;
	height: 100%;
}

.dst-card--framed {
	display: flex;
	flex-direction: column;
	width: 100%;
	flex: 1 1 auto;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(15, 23, 42, .05);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.dst-card--framed:hover {
	border-color: #cbd5e1;
	box-shadow: 0 10px 28px rgba(15, 23, 42, .1);
}

.dst-cont-card.dst-card--framed {
	box-shadow: 0 1px 3px rgba(15, 23, 42, .05);
}

.dst-cont-card.dst-card--framed:hover,
.dst-city-card.dst-card--framed:hover {
	transform: none;
}

.dst-country-card.dst-card--framed .dst-country-card__img-wrap {
	border-radius: 0;
	box-shadow: none;
}

.dst-city-card.dst-card--framed .dst-city-card__img-wrap {
	border-radius: 0;
}

.dst-country-card__body,
.dst-city-card__body,
.dst-cont-card__meta.dst-cont-card__meta--framed {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: .4rem;
	padding: .85rem 1rem 1.15rem;
}

.dst-country-card__body .dst-country-card__sub,
.dst-city-card__body .dst-city-card__sub {
	margin: 0;
	padding: 0;
}

.dst-city-card__body .dst-city-card__name {
	display: block;
	font-weight: 700;
	font-size: .95rem;
	color: var(--color-text);
	line-height: 1.3;
}

.dst-city-card.dst-card--framed .dst-city-card__foot {
	display: none;
}

.dst-card__cta.btn {
	align-self: center;
	margin-top: auto;
	margin-bottom: 0;
	text-align: center;
	white-space: normal;
	color: var(--pt-btn-primary-fg);
	background: var(--pt-btn-primary-bg);
}

.dst-card--framed:hover .dst-card__cta.btn {
	color: var(--pt-btn-primary-fg-hover);
	background: var(--pt-btn-primary-bg-hover);
}

.dst-hero__title-emoji {
	margin-right: .35rem;
}

.dst-hub-static-cta {
	padding: 0 0 2.5rem;
	text-align: center;
}

.dst-hub-static-cta__link {
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	color: var(--color-primary, #0d9488);
	text-decoration: none;
}

.dst-hub-static-cta__link:hover {
	text-decoration: underline;
}

.dst-hub-fact__icon::before {
	display: inline-block;
}

.dst-section--hub-tags {
	background: #fafafa;
	border-top: 1px solid #e5e7eb;
	padding-bottom: 4.5rem;
}

.dst-hub-tag-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem clamp(1rem, 2.5vw, 1.75rem);
	margin-top: 1rem;
}

.dst-hub-tag-column {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 1.2rem 1.35rem 1.35rem;
	box-shadow: 0 1px 3px rgba(15, 23, 42, .05);
}

.dst-hub-tag-column__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .45rem .5rem;
	margin-bottom: .95rem;
}

.dst-hub-tag-column__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #3b82f6;
	flex: 0 0 auto;
}

.dst-hub-tag-column__title {
	margin: 0;
	font-size: 1.06rem;
	font-weight: 800;
	color: var(--color-text);
	line-height: 1.3;
}

.dst-hub-tag-column__title-link {
	color: inherit;
	font: inherit;
	font-weight: inherit;
	text-decoration: none;
}

.dst-hub-tag-column__title-link:hover {
	text-decoration: underline;
}

.dst-hub-tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: .42rem .5rem;
	align-items: center;
}

.dst-hub-tag {
	display: inline-flex;
	align-items: center;
	padding: .4rem .75rem;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	background: var(--color-yellow);
	color: #111827;
	border: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .14);
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.dst-hub-tag:hover {
	background: var(--color-yellow-h);
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.dst-editorial-wrap {
	position: relative;
}

.dst-editorial-wrap--muted {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	background: #f3f4f6;
	width: 100%;
}

.dst-editorial-wrap--muted .dst-editorial {
	max-width: 52rem;
	margin-inline: auto;
}

.dst-editorial__hub-title {
	font-size: clamp(1.2rem, 2.8vw, 1.65rem);
	margin: 0 0 1.25rem;
	color: var(--color-text);
}

@media (max-width: 1100px) {
	.dst-hub-tag-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dst-hub-metro-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dst-section--hub-metro--cols-3 .dst-hub-metro-grid,
	.dst-section--hub-metro--cols-4 .dst-hub-metro-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.dst-hub-tag-columns {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 600px) {
	.dst-hub-metro-grid {
		grid-template-columns: 1fr;
	}

	.dst-section--hub-metro--cols-3 .dst-hub-metro-grid,
	.dst-section--hub-metro--cols-4 .dst-hub-metro-grid {
		grid-template-columns: 1fr;
	}

	.dst-section--hub-metro--framed .dst-hub-fact--desc span:last-child {
		-webkit-line-clamp: unset;
		line-clamp: unset;
		min-height: 0;
	}

	.dst-hero__content--hub {
		padding-bottom: 2rem;
	}
}

