/**
 * Homepage v2 — wireframe layout styles.
 */

body.obf-hp-v2 {
	--obf-hpv2-max: 1320px;
	--obf-hpv2-gutter: var(--obf-gutter, 20px);
}

body.obf-hp-v2 .obf-hpv2 {
	max-width: var(--obf-hpv2-max);
	margin: 0 auto;
	padding: 0 var(--obf-hpv2-gutter);
	box-sizing: border-box;
}

.obf-hpv2-section {
	margin-top: 48px;
}

.obf-hpv2-section__head {
	margin-bottom: 24px;
}

.obf-hpv2-section__title {
	margin: 0;
	font-family: var(--obf-serif, "Newsreader", Georgia, serif);
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.15;
	color: var(--obf-ink, #141414);
}

.obf-hpv2-section__sub {
	margin: 8px 0 0;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 16px;
	font-weight: 300;
	color: var(--obf-gray-60, #666);
}

.obf-hpv2-kicker {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 4px;
	background: var(--obf-accent, #ef671f);
	color: #fff;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.obf-hpv2-kicker--inline {
	margin-bottom: 8px;
}

/* Featured hero */
.obf-hpv2-featured {
	margin-top: 24px;
}

.obf-hpv2-featured__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.obf-hpv2-featured__media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--obf-r-card, 6px);
	background: #ddd;
}

.obf-hpv2-featured__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.55s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.obf-hpv2-featured__link:hover .obf-hpv2-featured__media img {
	transform: scale(1.03);
}

.obf-hpv2-featured__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.82) 100%);
	pointer-events: none;
}

.obf-hpv2-featured__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px 24px 24px;
	color: #fff;
	max-width: 920px;
}

.obf-hpv2-featured__title {
	margin: 10px 0 0;
	font-family: var(--obf-serif, "Newsreader", Georgia, serif);
	font-size: clamp(22px, 2.8vw, 36px);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
}

.obf-hpv2-featured__byline {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: #fff;
	opacity: 0.92;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.obf-hpv2-featured__intro {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.55;
	color: #fff;
	opacity: 0.94;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.obf-hpv2-featured__intro--below {
	display: none;
	color: var(--obf-gray-40, #4a4a4a);
	opacity: 1;
}

.obf-hpv2-featured__author-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 10px;
}

.obf-hpv2-featured__avatar {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.18);
	background-size: cover;
	background-position: center top;
	border: 2px solid rgba(255, 255, 255, 0.35);
}

.obf-hpv2-featured__author-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.obf-hpv2-featured__author-name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
}

.obf-hpv2-featured__author-role {
	display: -webkit-box;
	overflow: hidden;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.92);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.obf-hpv2-featured__author-row--below .obf-hpv2-featured__byline,
.obf-hpv2-featured__author-row--below .obf-hpv2-featured__author-name {
	color: var(--obf-ink, #1a1a1a);
}

.obf-hpv2-featured__author-row--below .obf-hpv2-featured__author-role,
.obf-hpv2-featured__author-row--below .obf-hpv2-featured__byline {
	color: var(--obf-gray-40, #4a4a4a);
	opacity: 1;
}

.obf-hpv2-featured__author-row--below .obf-hpv2-featured__avatar {
	border-color: var(--obf-hairline, #efeeec);
	background-color: #e8e6e3;
}

.obf-hpv2-featured__below {
	display: none;
}

/* Cards */
.obf-hpv2-card {
	display: block;
	color: inherit;
	text-decoration: none;
}

.obf-hpv2-card__media {
	display: block;
	overflow: hidden;
	border-radius: var(--obf-r-img, 6px);
	background: #e8e6e3;
}

.obf-hpv2-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.obf-hpv2-card__title {
	display: block;
	margin-top: 12px;
	font-family: var(--obf-serif, "Newsreader", Georgia, serif);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--obf-ink, #141414);
}

.obf-hpv2-card__author {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--obf-gray-40, #4a4a4a);
}

.obf-hpv2-card__excerpt {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.55;
	color: var(--obf-gray-60, #666);
}

/* Essays grid */
.obf-hpv2-essays__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.obf-hpv2-essays__grid .bytf__post-grid-clm-item.search__page-post-item {
	margin: 0;
}

.obf-hpv2-essays .obf-hpv2-essay-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
}

.obf-hpv2-essays .obf-hpv2-essay-card .bytf__feature-image {
	position: relative;
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto !important;
	overflow: hidden;
	background: var(--obf-img-base, #edeae7);
}

.obf-hpv2-essays .obf-hpv2-essay-card .bytf__feature-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.obf-hpv2-essays .obf-hpv2-essay-card .bytf__feature-image img {
	display: block;
	width: 100%;
	height: 100% !important;
	max-height: none;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
}

.obf-hpv2-essays .obf-hpv2-essay-card .bytf__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 12px;
}

.obf-hpv2-essays .obf-hpv2-essay-card .obf-hpv2-cate-badge {
	display: inline-block;
	margin: 0 0 10px;
	flex: 0 0 auto;
	pointer-events: none;
}

.obf-hpv2-essays .obf-hpv2-essay-card .bytf_post_title {
	margin: 0;
	flex: 0 0 auto;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.obf-hpv2-essay-card__intro {
	margin: 4px 0 12px;
	flex: 0 0 auto;
	font-size: 14px;
	line-height: 1.55;
	color: var(--obf-gray-40, #4a4a4a);
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.obf-hpv2-essays .obf-hpv2-essay-card .bytf__postmeta-info-wrapper {
	flex: 0 0 auto;
	/* Pin author block to the card bottom. */
	margin-top: auto;
	padding-top: 16px;
	width: 100%;
}

.obf-hpv2-essay-card__author-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	/* Avatar (52) — keeps name baseline identical across cards. */
	min-height: 52px;
}

.obf-hpv2-essay-card__avatar {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background-color: var(--obf-hairline, #ece9e6);
	background-size: cover;
	background-position: center top;
	filter: grayscale(1);
}

.obf-hpv2-essay-card__author-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1 1 auto;
	/* Name (1 line) + gap + role (2 lines) — keeps names on one row across cards. */
	min-height: 62px;
}

.obf-hpv2-essay-card__author-name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--obf-ink, #1a1a1a);
	min-height: calc(14px * 1.35);
}

.obf-hpv2-essay-card__author-role {
	display: -webkit-box;
	overflow: hidden;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--obf-gray-40, #4a4a4a);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	/* Slightly above 2×line-height so real wrapped text never grows the block. */
	min-height: 40px;
	height: 40px;
	word-break: normal;
	overflow-wrap: anywhere;
}

.obf-hpv2-essay-card__author {
	display: -webkit-box;
	overflow: hidden;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--obf-gray-40, #4a4a4a);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	min-height: calc(13px * 1.45 * 2);
}

.obf-hpv2-card--vertical .obf-hpv2-card__media {
	aspect-ratio: 4 / 3;
}

/* Conversations */
.obf-hpv2-conversations .obf-hpv2-section__title,
.obf-hpv2-conversations .obf-hpv2-card__title {
	font-family: var(--obf-sans, "Public Sans", sans-serif);
}

.obf-hpv2-conversations .obf-hpv2-card__excerpt {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--obf-gray-40, #4a4a4a);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.obf-hpv2-conversations__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: start;
}

.obf-hpv2-conversations .obf-hpv2-card--horizontal {
	display: flex;
	flex-direction: column;
	align-content: start;
	align-self: start;
	height: auto;
	min-width: 0;
}

.obf-hpv2-card--horizontal {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
	align-content: start;
}

.obf-hpv2-card--horizontal.obf-hpv2-card--lg .obf-hpv2-card__media {
	aspect-ratio: 16 / 9;
	position: relative;
	overflow: hidden;
	width: 100%;
	flex: 0 0 auto;
	align-self: stretch;
}

.obf-hpv2-card--horizontal.obf-hpv2-card--lg .obf-hpv2-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	object-position: center;
	transition: transform 0.55s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.obf-hpv2-card--horizontal.obf-hpv2-card--lg:hover .obf-hpv2-card__media img {
	transform: scale(1.08);
}

.obf-hpv2-conversations .obf-hpv2-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 0 0 auto;
	min-width: 0;
	margin-top: 0;
}

.obf-hpv2-conversations .obf-hpv2-cate-badge {
	margin-top: 0;
	margin-bottom: 10px;
}

.obf-hpv2-cate-badge {
	display: inline-block;
	margin-bottom: 10px;
	pointer-events: none;
}

.obf-hpv2-card--horizontal .obf-hpv2-card__body {
	padding-top: 14px;
}

.obf-hpv2-card--horizontal.obf-hpv2-card--lg .obf-hpv2-card__title {
	font-size: 22px;
	margin-top: 0;
}

/* View all — pill outline button (Know More style) */
.obf-hpv2__view-all {
	margin-top: 28px;
	text-align: center;
}

.obf-hpv2-view-all-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 180px;
	height: 50px;
	padding: 0 28px;
	border: 0;
	border-radius: 999px;
	box-shadow: inset 0 0 0 2px var(--obf-accent, #ef671f);
	background: transparent;
	color: var(--obf-accent, #ef671f);
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

.obf-hpv2-view-all-btn:hover {
	background: var(--obf-accent, #ef671f);
	color: #fff;
}

.obf-hpv2-view-all-btn__text {
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: inherit;
}

.obf-hpv2-view-all-btn__icon {
	font-size: 15px;
	line-height: 1;
	color: inherit;
}

/* Dossiers */
.obf-hpv2-dossiers__layout {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 48px;
	row-gap: 24px;
	align-items: start;
}

.obf-hpv2-dossiers__head {
	grid-column: 1;
	grid-row: 1;
	margin: 0;
}

.obf-hpv2-dossiers__topics {
	grid-column: 1;
	grid-row: 2;
	align-self: start;
}

.obf-hpv2-dossiers__main {
	grid-column: 2;
	grid-row: 2;
	min-width: 0;
	align-self: start;
}

.obf-hpv2-dossiers__panel-heads {
	min-width: 0;
}

.obf-hpv2-dossiers__panels {
	min-width: 0;
}

.obf-hpv2-dossiers__panel-head[hidden] {
	display: none !important;
}

.obf-hpv2-dossiers__title {
	margin: 0;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: clamp(34px, 4vw, 44px);
	font-weight: 700;
	line-height: 1.12;
	color: var(--obf-ink, #141414);
}

.obf-hpv2-dossiers__sub {
	margin: 10px 0 0;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 15px;
	font-weight: 300;
	line-height: 1.45;
	color: var(--obf-gray-60, #666);
}

.obf-hpv2-dossiers__topics ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.obf-hpv2-dossiers__topic {
	display: block;
	width: 100%;
	padding: 10px 16px;
	margin-bottom: 6px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	color: var(--obf-ink, #141414);
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.obf-hpv2-dossiers__topic.is-active {
	background: var(--obf-accent, #ef671f);
	border-color: var(--obf-accent, #ef671f);
	color: #fff;
}

.obf-hpv2-dossiers__topic:not(.is-active):hover {
	color: var(--obf-accent, #ef671f);
}

.obf-hpv2-dossiers__panels {
	min-width: 0;
}

.obf-hpv2-dossiers__panel[hidden] {
	display: none !important;
}

.obf-hpv2-dossiers__empty {
	margin: 24px 0 0;
	font-size: 15px;
	color: var(--obf-gray-60, #666);
}

.obf-hpv2-dossiers__panel-title {
	margin: 0;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: clamp(20px, 2.1vw, 24px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--obf-ink, #141414);
}

.obf-hpv2-dossiers__panel-sub {
	margin: 8px 0 0;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.45;
	color: var(--obf-gray-60, #666);
}

.obf-hpv2-dossiers__content {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
	gap: 24px;
	margin-top: 20px;
	align-items: start;
}

.obf-hpv2-dossiers__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Dossier cards */
.obf-hpv2-dossier-card {
	display: block;
	overflow: hidden;
	border: 1px solid var(--obf-hairline, #efeeec);
	border-radius: 10px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.25s ease, border-color 0.15s ease;
}

.obf-hpv2-dossier-card:hover {
	background-color: var(--obf-row-hover, #fbf4ef);
	border-color: rgba(239, 103, 31, 0.35);
}

.obf-hpv2-dossier-card--featured .obf-hpv2-dossier-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #e8e6e3;
}

.obf-hpv2-dossier-card--featured .obf-hpv2-dossier-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.obf-hpv2-dossier-card--featured:hover .obf-hpv2-dossier-card__media img {
	transform: scale(1.08);
}

.obf-hpv2-dossier-card--featured .obf-hpv2-dossier-card__body {
	display: block;
	padding: 14px 16px 16px;
}

.obf-hpv2-dossier-card--featured .obf-hpv2-dossier-card__title {
	display: block;
	margin: 0;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--obf-ink, #141414);
}

.obf-hpv2-dossier-card--featured .obf-hpv2-dossier-card__author {
	display: block;
	margin-top: 8px;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--obf-gray-40, #4a4a4a);
}

.obf-hpv2-dossier-card--side {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	padding: 14px;
	height: auto;
}

.obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__media {
	display: block;
	width: 112px;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 6px;
	background: #e8e6e3;
	align-self: start;
}

.obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.obf-hpv2-dossier-card--side:hover .obf-hpv2-dossier-card__media img {
	transform: scale(1.08);
}

.obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-width: 0;
	padding: 0;
	align-self: start;
}

/* Dossiers side cards — wireframe: flush 3:4 image + badge / title / author. */
.obf-hpv2-dossiers .obf-hpv2-dossier-card--side {
	grid-template-columns: 128px minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	padding: 0;
}

.obf-hpv2-dossiers .obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__media {
	width: 128px;
	aspect-ratio: 3 / 4;
	height: 100%;
	min-height: 100%;
	border-radius: 0;
	align-self: stretch;
}

.obf-hpv2-dossiers .obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__body {
	justify-content: center;
	padding: 16px 18px;
	align-self: stretch;
}

.obf-hpv2-dossiers .obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__tag {
	margin: 0 0 8px;
}

.obf-hpv2-dossiers .obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__title {
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.obf-hpv2-dossiers .obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__author {
	display: block;
	margin-top: 10px;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--obf-gray-40, #4a4a4a);
}

/* Match Opinion & Analysis (.empath-cate-badge) category pill. */
.obf-hpv2-dossier-card__tag {
	display: inline-block;
	margin: 0 0 10px;
	padding: 6px 9px;
	border: 0;
	border-radius: 3px;
	background: var(--obf-accent, #ef671f);
	color: #fff;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: normal;
	line-height: normal;
	text-transform: uppercase;
	clip-path: none;
}

.obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__title {
	display: block;
	margin: 0;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--obf-ink, #141414);
	overflow-wrap: break-word;
}

.obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__summary {
	display: block;
	width: 100%;
	max-width: 100%;
	margin-top: 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	box-sizing: border-box;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.6);
}

.obf-hpv2-trendline__grid > .obf-hpv2-trendline-card {
	min-width: 0;
}

.obf-hpv2-trendline-card.obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__body {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.obf-hpv2-trendline-card.obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__title {
	width: 100%;
	max-width: 100%;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.obf-hpv2-trendline-card.obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__summary {
	padding-right: 4px;
}

.obf-hpv2-card--horizontal.obf-hpv2-card--sm {
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.obf-hpv2-card--horizontal.obf-hpv2-card--sm .obf-hpv2-card__media {
	aspect-ratio: 1;
	width: 120px;
}

.obf-hpv2-card--horizontal.obf-hpv2-card--sm .obf-hpv2-card__body {
	padding-top: 0;
}

.obf-hpv2-card--featured .obf-hpv2-card__media {
	aspect-ratio: 16 / 9;
}

/* People */
.obf-hpv2-people__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: 0 36px;
	align-items: start;
	padding: 28px 32px;
	border: 1px solid var(--obf-hairline, #efeeec);
	border-radius: 4px;
	background: var(--obf-surface, #fff);
}

.obf-hpv2-people__experts-title {
	grid-column: 1;
	grid-row: 1;
}

.obf-hpv2-people__layout:not(.obf-hpv2-people__layout--experts-only):not(.obf-hpv2-people__layout--side-only) .obf-hpv2-people__experts-title {
	grid-column: 1 / 3;
}

.obf-hpv2-people__collaborators-title {
	grid-column: 3;
	grid-row: 1;
}

.obf-hpv2-people__experts-title,
.obf-hpv2-people__collaborators-title {
	margin: 0 0 12px;
	align-self: end;
}

.obf-hpv2-people__experts-col--a {
	grid-column: 1;
	grid-row: 2;
}

.obf-hpv2-people__experts-col--b {
	grid-column: 2;
	grid-row: 2;
}

.obf-hpv2-people__side-panel {
	grid-column: 3;
	grid-row: 2;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.obf-hpv2-people__layout--experts-only .obf-hpv2-people__experts-title {
	grid-column: 1;
}

.obf-hpv2-people__layout--experts-only .obf-hpv2-people__experts-col--a,
.obf-hpv2-people__layout--experts-only .obf-hpv2-people__experts-col--b {
	grid-row: 2;
}

.obf-hpv2-people__layout--side-only {
	grid-template-columns: minmax(0, 1fr);
	max-width: 420px;
}

.obf-hpv2-people__layout--side-only .obf-hpv2-people__side-panel {
	grid-column: 1;
	grid-row: 1;
}

.obf-hpv2-people__layout--experts-only {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.obf-hpv2-people__side-block + .obf-hpv2-people__side-block {
	padding-top: 4px;
	border-top: 1px solid var(--obf-hairline, #efeeec);
}

.obf-hpv2-people__col-title {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--obf-ink, #1a1a1a);
}

.obf-hpv2-person {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	position: relative;
	padding: 14px 0;
	border-bottom: none;
	color: inherit;
	text-decoration: none;
	cursor: default;
	pointer-events: none;
}

.obf-hpv2-people__list .obf-hpv2-person:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 64px;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #e5e2de;
	pointer-events: none;
}

.obf-hpv2-people__list .obf-hpv2-person:last-child {
	padding-bottom: 0;
}

.obf-hpv2-people__list .obf-hpv2-person:first-child {
	padding-top: 0;
}

.obf-hpv2-person__thumb {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
	background: #e8e6e3;
	flex-shrink: 0;
}

.obf-hpv2-person--expert .obf-hpv2-person__thumb img {
	filter: grayscale(1);
}

.obf-hpv2-person__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.obf-hpv2-person__name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--obf-ink, #1a1a1a);
}

.obf-hpv2-person__role {
	display: block;
	margin-top: 3px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--obf-gray-40, #4a4a4a);
}

.obf-hpv2-person--collaborator {
	align-items: center;
}

.obf-hpv2-person__tagline {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--obf-gray-40, #4a4a4a);
}

/* CTA */
.obf-hpv2-cta-wrap {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	max-width: 100vw;
}

.obf-hpv2-cta-wrap .obf-cta-band {
	margin: 0;
}

/* Match “What is One Big Future?” section title sizing. */
.obf-hpv2-cta-wrap .obf-cta-band h2 {
	font-family: var(--obf-serif, "Newsreader", Georgia, serif);
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--obf-ink, #141414);
}

.obf-hpv2-cta-wrap .obf-cta-band p {
	font-size: 22px;
	line-height: 1.5;
}

/* Desktop — equal-height cards; author stays bottom-aligned via margin-top:auto */

/* Mobile / tablet */
@media (max-width: 991px) {
	.obf-hpv2-essays__grid,
	.obf-hpv2-conversations__grid {
		grid-template-columns: 1fr;
	}

	.obf-hpv2-people__layout {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 20px 18px;
	}

	.obf-hpv2-people__experts-title,
	.obf-hpv2-people__collaborators-title,
	.obf-hpv2-people__experts-col--a,
	.obf-hpv2-people__experts-col--b,
	.obf-hpv2-people__side-panel {
		grid-column: 1;
		grid-row: auto;
	}

	.obf-hpv2-people__collaborators-title {
		margin-top: 16px;
		padding-top: 14px;
		border-top: 1px solid var(--obf-hairline, #efeeec);
	}

	/* Stacked expert columns: restore gaps + divider between col A and col B. */
	.obf-hpv2-people__experts-col--a .obf-hpv2-people__list .obf-hpv2-person:last-child {
		padding-bottom: 14px;
	}

	.obf-hpv2-people__experts-col--a .obf-hpv2-people__list .obf-hpv2-person:last-child::after {
		content: "";
		position: absolute;
		left: 64px;
		right: 0;
		bottom: 0;
		height: 1px;
		background: #e5e2de;
		pointer-events: none;
	}

	.obf-hpv2-people__experts-col--b .obf-hpv2-people__list .obf-hpv2-person:first-child {
		padding-top: 14px;
	}

	.obf-hpv2-essays .obf-hpv2-essay-card {
		height: auto;
		min-height: 0;
	}

	.obf-hpv2-essays .obf-hpv2-essay-card .bytf_post_title {
		min-height: 0;
	}

	.obf-hpv2-essays .obf-hpv2-essay-card .bytf__postmeta-info-wrapper {
		flex: 0 0 auto;
	}

	.obf-hpv2-essays .obf-hpv2-essay-card .obf-hpv2-essay-card__author,
	.obf-hpv2-essays .obf-hpv2-essay-card .obf-hpv2-essay-card__author-role {
		min-height: 0;
	}

	.obf-hpv2__view-all {
		text-align: stretch;
	}

	.obf-hpv2-view-all-btn {
		display: flex;
		width: 100%;
		min-width: 0;
	}

	.obf-hpv2-dossiers {
		overflow-x: clip;
	}

	.obf-hpv2-dossiers__layout {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		column-gap: 0;
		row-gap: 20px;
		min-width: 0;
		max-width: 100%;
	}

	.obf-hpv2-dossiers__head,
	.obf-hpv2-dossiers__topics,
	.obf-hpv2-dossiers__main {
		grid-column: 1;
		grid-row: auto;
		min-width: 0;
		max-width: 100%;
	}

	.obf-hpv2-dossiers__topics {
		overflow-x: auto;
		overflow-y: hidden;
		max-width: 100%;
		margin-left: calc(-1 * var(--obf-hpv2-gutter));
		margin-right: calc(-1 * var(--obf-hpv2-gutter));
		padding-left: var(--obf-hpv2-gutter);
		padding-right: var(--obf-hpv2-gutter);
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		touch-action: pan-x;
		scrollbar-width: none;
	}

	.obf-hpv2-dossiers__topics::-webkit-scrollbar {
		display: none;
	}

	.obf-hpv2-dossiers__topics ul {
		display: inline-flex;
		flex-wrap: nowrap;
		align-items: center;
		gap: 8px;
		width: max-content;
		min-width: 100%;
		margin: 0;
		padding: 0 0 8px;
	}

	.obf-hpv2-dossiers__topics li {
		flex: 0 0 auto;
		margin: 0;
	}

	.obf-hpv2-dossiers__topic {
		width: auto;
		padding: 8px 14px;
		margin-bottom: 0;
		white-space: nowrap;
		flex: 0 0 auto;
	}

	.obf-hpv2-dossiers__panels,
	.obf-hpv2-dossiers__panel,
	.obf-hpv2-dossiers__content,
	.obf-hpv2-dossiers__featured,
	.obf-hpv2-dossiers__list {
		min-width: 0;
		max-width: 100%;
	}

	.obf-hpv2-dossiers__content {
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
	}

	.obf-hpv2-dossier-card {
		max-width: 100%;
		box-sizing: border-box;
	}

	.obf-hpv2-dossiers__list {
		gap: 16px;
	}

	.obf-hpv2-dossier-card--side {
		grid-template-columns: minmax(72px, 96px) minmax(0, 1fr);
		padding: 12px;
		width: 100%;
	}

	.obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__media {
		width: 100%;
		max-width: 96px;
	}

	.obf-hpv2-dossiers .obf-hpv2-dossier-card--side {
		grid-template-columns: 96px minmax(0, 1fr);
		padding: 0;
	}

	.obf-hpv2-dossiers .obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__media {
		width: 96px;
		max-width: 96px;
		aspect-ratio: 3 / 4;
		border-radius: 0;
	}

	.obf-hpv2-dossiers .obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__body {
		padding: 12px 14px;
	}

	.obf-hpv2-dossiers .obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__title {
		font-size: 14px;
		-webkit-line-clamp: 4;
	}

	.obf-hpv2-dossier-card--side .obf-hpv2-dossier-card__title,
	.obf-hpv2-dossier-card--featured .obf-hpv2-dossier-card__title {
		overflow-wrap: anywhere;
		word-break: break-word;
	}
}

@media (max-width: 640px) {
	.obf-hpv2 {
		padding-bottom: 32px;
	}

	.obf-hpv2-section {
		margin-top: 36px;
	}

	.obf-hpv2-featured {
		margin-top: 0;
		margin-left: calc(-1 * var(--obf-hpv2-gutter));
		margin-right: calc(-1 * var(--obf-hpv2-gutter));
		width: calc(100% + (2 * var(--obf-hpv2-gutter)));
	}

	.obf-hpv2-featured__media {
		border-radius: 0;
	}

	.obf-hpv2-featured__overlay {
		padding: 14px 16px 16px;
	}

	.obf-hpv2-featured__kicker--in-image,
	.obf-hpv2-featured__author-row--overlay,
	.obf-hpv2-featured__intro--overlay {
		display: none !important;
	}

	.obf-hpv2-featured__below {
		display: block;
		padding: 12px var(--obf-hpv2-gutter) 0;
		overflow: hidden;
	}

	.obf-hpv2-featured__author-row--below {
		overflow: hidden;
		max-width: 100%;
	}

	.obf-hpv2-featured__author-row--below .obf-hpv2-featured__author-role {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		word-break: break-word;
	}

	.obf-hpv2-featured__intro--below {
		display: -webkit-box;
		margin: 0 0 8px;
		font-size: 14px;
		line-height: 1.55;
		color: var(--obf-gray-40, #4a4a4a);
	}

	.obf-hpv2-featured__kicker--below {
		margin-bottom: 8px;
	}

	.obf-hpv2-featured__byline--below {
		margin: 0;
		font-size: 13px;
		line-height: 1.45;
		color: var(--obf-gray-40, #4a4a4a);
	}

	.obf-hpv2-featured__title {
		margin-top: 0;
		font-size: clamp(20px, 5.5vw, 26px);
	}
}

/* Trendline (Signals and Trends) */
.obf-hpv2-trendline {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	max-width: 100vw;
	padding: 48px 0 56px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(13, 13, 13, 0.03) 50%), #fff;
	border-top: 0;
	border-bottom: 1px solid var(--obf-hairline, #efeeec);
}

.obf-hpv2-trendline__inner {
	max-width: var(--obf-hpv2-max);
	margin: 0 auto;
	padding: 0 var(--obf-hpv2-gutter);
	box-sizing: border-box;
}

.obf-hpv2-trendline__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.obf-hpv2-trendline .obf-hpv2__view-all {
	margin-top: 50px;
}

/* What is One Big Future? */
.obf-hpv2-what-is-obf {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	max-width: 100vw;
	padding: 50px 0 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(13, 13, 13, 0.03) 50%), #fff;
	border-bottom: none;
	overflow-x: clip;
}

.obf-hpv2-what-is-obf__intro {
	max-width: var(--obf-hpv2-max, 1320px);
	margin: 0 auto;
	padding: 0 var(--obf-hpv2-gutter);
	text-align: left;
	box-sizing: border-box;
}

.obf-hpv2-what-is-obf__head {
	max-width: var(--obf-hpv2-max, 1320px);
	margin: 0 auto;
	padding: 0 var(--obf-hpv2-gutter);
	text-align: left;
	box-sizing: border-box;
}

.obf-hpv2-what-is-obf__head .obf-hpv2-section__title {
	margin-bottom: 0;
}

.obf-hpv2-what-is-obf__heading {
	display: block;
	margin: 16px 0 40px;
	min-height: 0;
	max-width: none;
	width: 100%;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.45;
	color: #434343;
	text-align: left;
	text-wrap: pretty;
}

.obf-hpv2-what-is-obf__line {
	display: inline;
	max-width: none;
}

.obf-hpv2-what-is-obf__line--mid {
	display: inline;
}

.obf-hpv2-what-is-obf__line-tail {
	display: inline;
}

.obf-hpv2-what-is-obf__break {
	display: block;
	content: "";
}

.obf-hpv2-what-is-obf__line--mobile {
	display: none;
}

.obf-hpv2-what-is-obf__typewriter {
	display: inline;
	width: auto !important;
	min-width: 0 !important;
	font-weight: 500;
	color: #ef671f;
	white-space: nowrap;
}

.obf-hpv2-what-is-obf__typewriter-caret {
	animation: obf-hpv2-caret-pulse 1s step-end infinite;
}

@keyframes obf-hpv2-caret-pulse {
	50% {
		opacity: 0;
	}
}

.obf-hpv2-what-is-obf__marquee {
	margin-top: 32px;
	padding-bottom: 48px;
	overflow: hidden;
}

.obf-hpv2-what-is-obf__track {
	display: flex;
	width: max-content;
	gap: 100px;
	animation: obf-hpv2-marquee 40s linear infinite;
	will-change: transform;
}

@keyframes obf-hpv2-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.obf-hpv2-what-is-obf__card-wrap {
	flex: 0 0 auto;
}

.obf-hpv2-what-is-obf__card {
	width: 178px;
	padding: 24px;
	border: 1px solid #dad8d6;
	border-radius: var(--obf-r-card, 8px);
	background: #fff;
	box-sizing: border-box;
}

.obf-hpv2-what-is-obf__card img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: var(--obf-r-img, 6px);
}

.obf-hpv2-what-is-obf__card-label {
	margin: 5px 0 0;
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--obf-sans, "Public Sans", sans-serif);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.43;
	color: #000;
}

@media (max-width: 767px) {
	.obf-hpv2-trendline {
		padding-bottom: 24px;
	}

	.obf-hpv2-trendline .obf-hpv2__view-all {
		margin-top: 28px;
	}

	.obf-hpv2-what-is-obf.obf-hpv2-section {
		margin-top: 0;
	}

	.obf-hpv2-what-is-obf {
		padding-top: 28px;
	}

	.obf-hpv2-what-is-obf__intro {
		max-width: 100%;
		text-align: left;
	}

	.obf-hpv2-what-is-obf__head {
		text-align: left;
	}

	.obf-hpv2-what-is-obf__heading {
		min-height: 0;
		margin: 12px 0 28px;
		font-size: 22px;
		line-height: 1.5;
		text-align: left;
	}

	.obf-hpv2-what-is-obf__line {
		display: inline;
		text-align: left;
	}

	.obf-hpv2-what-is-obf__line--desktop {
		display: none !important;
	}

	.obf-hpv2-what-is-obf__line--mobile {
		display: inline;
		max-width: none;
		margin-inline: 0;
	}

	.obf-hpv2-what-is-obf__line--mid {
		display: inline;
		width: auto;
		margin-block: 0;
	}

	.obf-hpv2-what-is-obf__typewriter {
		display: inline;
		width: auto !important;
		min-width: 0 !important;
		max-width: none;
		text-align: left;
		white-space: nowrap;
		font-size: inherit;
		line-height: inherit;
	}

	.obf-hpv2-what-is-obf__marquee {
		margin-top: 24px;
		padding-bottom: 36px;
	}
}

@media (min-width: 768px) {
	.obf-hpv2-what-is-obf__marquee {
		margin-top: 40px;
	}
}

@media (max-width: 991px) {
	.obf-hpv2-trendline__grid {
		grid-template-columns: 1fr;
	}
}
