/*!
 * Insights redesign comps — V1, V2, V3.
 *
 * Scoped under .iv1 / .iv2 / .iv3 (listings) and .iv1-article
 * (single-article variant) so this file is inert on the live
 * /insights/ page. Loaded by inc/init.php; safe to remove
 * once Bryan picks a direction.
 *
 * V1 has been realigned (May 2026) to match the real site's
 * design vocabulary: Switzer body, 16:9 contain-fit images on
 * the soft brand gradient, weight 500 headlines, no card chrome.
 * V2 / V3 still represent the earlier exploration and can be
 * polished later once a direction is locked.
 */

.iv-page {
	background: #fff;
	color: var(--font-color, #020621);
	padding: 64px 0 120px;
}

@media (max-width: 767px) {
	.iv-page { padding: 32px 0 72px; }
}

.iv-page .container { max-width: 1240px; }

/* ============================================================== */
/* V1 — EDITORIAL INDEX                                            */
/* BRG-flavored — image-forward.                                   */
/* Hero banner → big featured card (cover image + body split) →    */
/* filter row → grid of cover-image cards → "View more" button.    */
/* Rosetti palette/fonts only.                                     */
/* ============================================================== */

.iv-page.iv1 { padding: 0 0 120px; }

/* Hero banner — full bleed, soft brand gradient with faint gold halo. */
.iv1__hero {
	position: relative;
	background: linear-gradient(135deg, #F9F9F9 0%, #E0E8FF 100%);
	padding: 88px 0 88px;
	margin-bottom: 64px;
	overflow: hidden;
}

.iv1__hero::after {
	content: "";
	position: absolute;
	top: -160px;
	right: -120px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(198, 165, 99, 0.14) 0%, transparent 70%);
	pointer-events: none;
}

.iv1__hero .container {
	max-width: 1200px;
	position: relative;
	z-index: 1;
}

.iv1__hero-eyebrow.cate-label {
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.iv1__hero-title {
	font-family: "Inter Tight", sans-serif;
	font-weight: 500;
	font-size: clamp(40px, 6vw, 72px);
	line-height: 1.05;
	letter-spacing: 0.01em;
	color: var(--font-color, #020621);
	margin: 0 0 20px;
	max-width: 900px;
}

.iv1__hero-dek {
	font-family: "Switzer", sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.55;
	color: rgba(19, 35, 84, 0.78);
	margin: 0;
	max-width: 680px;
}

.iv1 > .container { max-width: 1200px; }

/* Featured card — big image + body split (BRG DualCard). */
.iv1__featured {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 0;
	margin-bottom: 64px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	border: 1px solid rgba(19, 35, 84, 0.08);
	transition: transform .35s cubic-bezier(.25, .1, .25, 1), box-shadow .35s, border-color .25s;
}

.iv1__featured:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 48px rgba(19, 35, 84, 0.10);
	border-color: transparent;
}

.iv1__featured-image {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(135deg, #F9F9F9 0%, #E0E8FF 100%);
}

.iv1__featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.25, .1, .25, 1);
}

.iv1__featured:hover .iv1__featured-image img { transform: scale(1.04); }

.iv1__featured-fallback {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(198, 165, 99, 0.18), transparent 55%),
		linear-gradient(135deg, #E0E8FF 0%, #C9D6FF 100%);
}

.iv1__featured-body {
	padding: 48px 52px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.iv1__featured-eyebrow {
	display: inline-block;
	font-family: "Switzer", sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--main-color, #3461E1);
	margin-bottom: 18px;
}

.iv1__featured-title {
	font-family: "Inter Tight", sans-serif;
	font-weight: 500;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.15;
	letter-spacing: 0.005em;
	color: var(--primary-color, #132354);
	margin: 0 0 16px;
	transition: color .25s;
}

.iv1__featured:hover .iv1__featured-title { color: var(--main-color, #3461E1); }

.iv1__featured-dek {
	font-family: "Switzer", sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.55;
	color: rgba(19, 35, 84, 0.75);
	margin: 0 0 22px;
}

.iv1__featured-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
}

.iv1__featured-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-family: "Switzer", sans-serif;
	font-weight: 500;
	font-size: 13px;
	color: rgba(19, 35, 84, 0.6);
}

.iv1__featured-cat {
	color: var(--main-color, #3461E1);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
	font-size: 12px;
}

.iv1__featured-dot { color: rgba(19, 35, 84, 0.3); font-size: 10px; }

.iv1__featured-arrow {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--primary-color, #132354);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .25s, transform .25s;
}

.iv1__featured:hover .iv1__featured-arrow {
	background: var(--main-color, #3461E1);
	transform: translateX(4px);
}

/* Filter row */
.iv1__filters {
	display: flex;
	gap: 16px;
	align-items: flex-end;
	flex-wrap: wrap;
	padding: 28px 0;
	border-top: 1px solid rgba(19, 35, 84, 0.10);
	border-bottom: 1px solid rgba(19, 35, 84, 0.10);
	margin-bottom: 48px;
}

.iv1__filter {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1 1 200px;
	min-width: 180px;
	max-width: 300px;
}

.iv1__filter-label {
	font-family: "Switzer", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(19, 35, 84, 0.55);
}

.iv1__filter select {
	appearance: none;
	-webkit-appearance: none;
	background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23132354' d='M5 6L0 0h10z'/></svg>") no-repeat right 14px center;
	border: 1px solid rgba(19, 35, 84, 0.18);
	border-radius: 8px;
	padding: 13px 38px 13px 14px;
	font-family: "Switzer", sans-serif;
	font-size: 15px;
	color: var(--primary-color, #132354);
	cursor: pointer;
	transition: border-color .25s;
	width: 100%;
}

.iv1__filter select:hover:not(:disabled) { border-color: var(--main-color, #3461E1); }
.iv1__filter select:disabled { opacity: .5; cursor: not-allowed; }

.iv1__clear {
	font-family: "Switzer", sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--main-color, #3461E1);
	text-decoration: underline;
	align-self: flex-end;
	padding-bottom: 14px;
}

/* Card grid — 3-up, cover image on top, eyebrow + title + date below. */
.iv1__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px 28px;
}

@media (max-width: 1023px) { .iv1__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px)  { .iv1__grid { grid-template-columns: 1fr; } }

.iv1__card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: transform .35s cubic-bezier(.25, .1, .25, 1);
}

.iv1__card:hover { transform: translateY(-4px); }

.iv1__card-image {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 10px;
	background: linear-gradient(135deg, #F9F9F9 0%, #E0E8FF 100%);
	margin-bottom: 18px;
}

.iv1__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.25, .1, .25, 1);
}

.iv1__card:hover .iv1__card-image img { transform: scale(1.05); }

.iv1__card-fallback {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(198, 165, 99, 0.16), transparent 55%),
		linear-gradient(135deg, #E0E8FF 0%, #C9D6FF 100%);
}

.iv1__card-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.iv1__card-eyebrow {
	font-family: "Switzer", sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--main-color, #3461E1);
}

.iv1__card-title {
	font-family: "Inter Tight", sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.22;
	letter-spacing: 0.005em;
	color: var(--primary-color, #132354);
	margin: 0;
	transition: color .25s;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.iv1__card:hover .iv1__card-title { color: var(--main-color, #3461E1); }

.iv1__card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}

.iv1__card-date {
	font-family: "Switzer", sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: rgba(19, 35, 84, 0.6);
}

.iv1__card-arrow {
	color: var(--main-color, #3461E1);
	display: inline-flex;
	transition: transform .25s;
}

.iv1__card:hover .iv1__card-arrow { transform: translateX(3px); }

/* View more button */
.iv1__more {
	display: flex;
	justify-content: center;
	margin-top: 72px;
}

.iv1__more-btn {
	padding: 14px 36px;
	font-family: "Switzer", sans-serif;
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
}

.iv1__empty {
	text-align: center;
	padding: 64px 0;
	font-family: "Switzer", sans-serif;
	color: rgba(19, 35, 84, 0.65);
}
.iv1__empty a { color: var(--main-color, #3461E1); }

@media (max-width: 900px) {
	.iv1__hero { padding: 56px 0 56px; margin-bottom: 40px; }
	.iv1__featured { grid-template-columns: 1fr; margin-bottom: 48px; }
	.iv1__featured-image { aspect-ratio: 16 / 10; }
	.iv1__featured-body { padding: 32px 28px; }
}

@media (max-width: 767px) {
	.iv1__filters { gap: 12px; padding: 22px 0; margin-bottom: 32px; }
	.iv1__filter { flex: 1 1 calc(50% - 6px); min-width: 0; max-width: none; }
	.iv1__grid { gap: 32px 20px; }
	.iv1__card-title { font-size: 20px; }
}


/* ============================================================== */
/* V1 ARTICLE — single insight, BRG HeroDetailRecord flavor        */
/* Navy hero with topbar (breadcrumb left, share right), two-col   */
/* body: text intro left, photo clipped in an ellipse on the       */
/* right. Body content uses existing .insight-single__content      */
/* (drop cap, Switzer 19px, narrow column). Related articles as    */
/* image cards matching the V1 listing grid.                       */
/* ============================================================== */

/* Override .insight-single's top padding so the hero sits flush
   below the site header. */
.iv1-article.insight-single { padding-top: 0; padding-bottom: 0; }

/* Hero ---------------------------------------------------------- */
/* Navy base + the site's blue "investigations" texture layered with
   mix-blend-mode so the banner picks up the same blurred-glass
   depth the rest of the site's dark cards have (see
   .wwd-grid__cta and .about-mission-card hover state). */
.iv1-article__hero {
	position: relative;
	background: var(--primary-color, #132354);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.iv1-article__hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('../images/tn/main-box-investigations.png') center / cover no-repeat;
	mix-blend-mode: soft-light;
	opacity: 0.85;
	z-index: 0;
	pointer-events: none;
}

/* Gold corner halo for warmth — sits above the texture. */
.iv1-article__hero::after {
	content: "";
	position: absolute;
	top: -160px;
	left: -160px;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(198, 165, 99, 0.18) 0%, transparent 70%);
	z-index: 1;
	pointer-events: none;
}

.iv1-article__topbar {
	position: relative;
	z-index: 2;
	padding: 22px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.iv1-article__topbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.iv1-article__breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "Switzer", sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	transition: color .25s;
}

.iv1-article__breadcrumb:hover { color: #fff; }
.iv1-article__breadcrumb svg path { fill: currentColor; }

.iv1-article__share-btn-top {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	background: transparent;
	color: rgba(255, 255, 255, 0.9);
	font-family: "Switzer", sans-serif;
	font-weight: 500;
	font-size: 13px;
	cursor: pointer;
	transition: border-color .25s, color .25s, background .25s;
}

.iv1-article__share-btn-top:hover {
	border-color: var(--secondary-color, #C6A563);
	color: var(--secondary-color, #C6A563);
}

/* Hero body — text intro + ellipse photo. Sits above the texture
   and gold halo layers (z-index: 2 over the ::before / ::after). */
.iv1-article__hero-body {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
	min-height: 480px;
	padding: 64px 0 72px;
}

.iv1-article__intro {
	position: relative;
}

.iv1-article__eyebrow {
	display: inline-block;
	font-family: "Switzer", sans-serif;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--secondary-color, #C6A563);
	margin-bottom: 22px;
}

.iv1-article__title {
	font-family: "Inter Tight", sans-serif;
	font-weight: 500;
	font-size: clamp(34px, 4.4vw, 56px);
	line-height: 1.08;
	letter-spacing: 0.005em;
	color: #fff;
	margin: 0 0 22px;
	max-width: 620px;
}

.iv1-article__dek {
	font-family: "Switzer", sans-serif;
	font-weight: 400;
	font-size: 19px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 28px;
	max-width: 560px;
}

.iv1-article__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	font-family: "Switzer", sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.iv1-article__meta-dot { color: rgba(255, 255, 255, 0.4); font-size: 10px; }

/* Ellipse-clipped photo on the right. */
.iv1-article__photo-frame {
	position: relative;
	height: 100%;
	min-height: 360px;
}

.iv1-article__photo {
	position: absolute;
	top: 0;
	left: 0;
	right: -2rem;
	bottom: 0;
	clip-path: ellipse(100% 100% at right);
	overflow: hidden;
	background: linear-gradient(135deg, #1f3470 0%, #0e1a40 100%);
}

.iv1-article__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.iv1-article__photo--fallback::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(198, 165, 99, 0.35), transparent 55%),
		linear-gradient(135deg, #1f3470 0%, #0e1a40 100%);
}

/* Body content padding — restore what .insight-single gives. */
.iv1-article > .container.article-container {
	padding-top: 72px;
}

/* Body share block uses the existing .article-share styling from
   nkl-style.css; we just space it. */
.iv1-article__share-block { padding-top: 48px; }

/* Related ---------------------------------------------------- */
.iv1-article__related {
	margin-top: 96px;
	padding: 64px 0 80px;
	background: linear-gradient(135deg, #F9F9F9 0%, #E0E8FF 100%);
}

.iv1-article__related-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.iv1-article__related-title {
	font-family: "Inter Tight", sans-serif;
	font-weight: 500;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.1;
	letter-spacing: 0.01em;
	color: var(--primary-color, #132354);
	margin: 0;
}

.iv1-article__related-all {
	font-family: "Switzer", sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: var(--main-color, #3461E1);
	text-decoration: none;
	transition: color .25s;
}

.iv1-article__related-all:hover { color: var(--primary-color, #132354); }

.iv1-article__related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

@media (max-width: 1023px) { .iv1-article__related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px)  { .iv1-article__related-grid { grid-template-columns: 1fr; } }

.iv1-article__related-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: transform .35s cubic-bezier(.25, .1, .25, 1);
}

.iv1-article__related-card:hover { transform: translateY(-4px); }

.iv1-article__related-image {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 10px;
	background: linear-gradient(135deg, #F9F9F9 0%, #E0E8FF 100%);
	margin-bottom: 16px;
}

.iv1-article__related-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.25, .1, .25, 1);
}

.iv1-article__related-card:hover .iv1-article__related-image img { transform: scale(1.05); }

.iv1-article__related-fallback {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(198, 165, 99, 0.16), transparent 55%),
		linear-gradient(135deg, #E0E8FF 0%, #C9D6FF 100%);
}

.iv1-article__related-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.iv1-article__related-eyebrow {
	font-family: "Switzer", sans-serif;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--main-color, #3461E1);
}

.iv1-article__related-headline {
	font-family: "Inter Tight", sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.22;
	letter-spacing: 0.005em;
	color: var(--primary-color, #132354);
	margin: 0;
	transition: color .25s;
}

.iv1-article__related-card:hover .iv1-article__related-headline {
	color: var(--main-color, #3461E1);
}

.iv1-article__related-date {
	font-family: "Switzer", sans-serif;
	font-weight: 400;
	font-size: 13px;
	color: rgba(19, 35, 84, 0.6);
}

@media (max-width: 1023px) {
	.iv1-article__hero-body { grid-template-columns: 1fr; gap: 32px; min-height: 0; padding: 56px 0 0; }
	.iv1-article__photo-frame { height: 260px; min-height: 0; margin: 0 -1rem -56px -1rem; }
	.iv1-article__photo {
		position: relative;
		right: auto; left: auto; top: auto; bottom: auto;
		width: 100%; height: 100%;
		/* Top arch instead of side ellipse on mobile/tablet. */
		clip-path: ellipse(120% 100% at center bottom);
	}
}

@media (max-width: 767px) {
	.iv1-article__topbar { padding: 16px 0; }
	.iv1-article__share-btn-top span { display: none; }
	.iv1-article > .container.article-container { padding-top: 48px; }
	.iv1-article__related { margin-top: 64px; padding: 48px 0 56px; }
}


/* ============================================================== */
/* V2 — FEATURED + FILTERED                                        */
/* Earlier exploration. Not yet aligned to the real site language. */
/* ============================================================== */

.iv2__masthead {
	max-width: 880px;
	margin: 0 0 48px;
}

.iv2__title {
	font-family: "Inter Tight", sans-serif;
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--primary-color, #132354);
	margin: 0 0 18px;
}

.iv2__dek {
	font-family: "Arimo", sans-serif;
	font-size: 18px;
	line-height: 1.55;
	color: #4a526e;
	margin: 0;
	max-width: 660px;
}

.iv2__feature {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	gap: 0;
	background: var(--primary-color, #132354);
	border-radius: 16px;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	margin-bottom: 56px;
	transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s;
}

.iv2__feature:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 48px rgba(19, 35, 84, 0.25);
}

.iv2__feature-img {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #0e1a40;
}

.iv2__feature-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2,.7,.3,1);
}

.iv2__feature:hover .iv2__feature-img img { transform: scale(1.04); }

.iv2__feature-fallback {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(198, 165, 99, 0.35), transparent 55%),
		linear-gradient(135deg, #1b2d66 0%, #0e1a40 100%);
}

.iv2__feature-body {
	padding: 56px 56px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.iv2__eyebrow {
	display: inline-block;
	font-family: "Inter Tight", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--secondary-color, #C6A563);
	margin-bottom: 18px;
}

.iv2__feature-title {
	font-family: "Inter Tight", sans-serif;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: -0.01em;
	margin: 0 0 16px;
	color: #fff;
}

.iv2__feature-dek {
	font-family: "Arimo", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 20px;
}

.iv2__feature-meta {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	font-family: "Inter Tight", sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 24px;
}

.iv2__feature-cta {
	font-family: "Inter Tight", sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--secondary-color, #C6A563);
	transition: gap .2s;
}

.iv2__feature:hover .iv2__feature-cta { color: #d8bf85; }

.iv2__chip {
	display: inline-flex;
	align-items: center;
	font-family: "Inter Tight", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.iv2__trending {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.iv2__trending-label {
	font-family: "Inter Tight", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #6a708a;
}

.iv2__trending-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.iv2__chip--trend {
	background: rgba(52, 97, 225, 0.08);
	color: var(--main-color, #3461E1);
	text-decoration: none;
	transition: background .2s, color .2s;
	font-size: 12px;
}

.iv2__chip--trend:hover {
	background: var(--main-color, #3461E1);
	color: #fff;
}

.iv2__chip--trend.is-active {
	background: var(--primary-color, #132354);
	color: #fff;
}

.iv2__filters {
	display: flex;
	gap: 14px;
	align-items: flex-end;
	flex-wrap: wrap;
	padding: 22px 0 28px;
	border-top: 1px solid #e7e9f1;
	border-bottom: 1px solid #e7e9f1;
	margin-bottom: 48px;
}

.iv2__filter-group { display: flex; gap: 14px; flex-wrap: wrap; }

.iv2__filter {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 200px;
}

.iv2__filter-label {
	font-family: "Inter Tight", sans-serif;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6a708a;
	font-weight: 600;
}

.iv2__filter select {
	appearance: none;
	-webkit-appearance: none;
	background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23132354' d='M5 6L0 0h10z'/></svg>") no-repeat right 14px center;
	border: 1px solid #d8dbe7;
	border-radius: 8px;
	padding: 12px 38px 12px 14px;
	font-family: "Arimo", sans-serif;
	font-size: 15px;
	color: var(--primary-color, #132354);
	cursor: pointer;
}

.iv2__filter select:disabled { opacity: .5; cursor: not-allowed; }

.iv2__clear {
	font-family: "Inter Tight", sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--main-color, #3461E1);
	text-decoration: underline;
	margin-left: auto;
	padding-bottom: 14px;
}

.iv2__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

@media (max-width: 1023px) { .iv2__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px)  { .iv2__grid { grid-template-columns: 1fr; } }

.iv2__card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #ebedf3;
	transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
}

.iv2__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(19, 35, 84, 0.10);
	border-color: transparent;
}

.iv2__card-img {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f4f5fa;
	position: relative;
}

.iv2__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s cubic-bezier(.2,.7,.3,1);
}

.iv2__card:hover .iv2__card-img img { transform: scale(1.05); }

.iv2__card-fallback {
	position: absolute; inset: 0;
	background:
		linear-gradient(135deg, rgba(198, 165, 99, 0.16) 0%, rgba(52, 97, 225, 0.10) 100%),
		repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(19, 35, 84, 0.04) 14px, rgba(19, 35, 84, 0.04) 15px);
}

.iv2__card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; }

.iv2__card .iv2__chip {
	background: rgba(52, 97, 225, 0.08);
	color: var(--main-color, #3461E1);
	align-self: flex-start;
}

.iv2__card-title {
	font-family: "Inter Tight", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.28;
	letter-spacing: -0.005em;
	color: var(--primary-color, #132354);
	margin: 0;
	transition: color .2s;
}

.iv2__card:hover .iv2__card-title { color: var(--main-color, #3461E1); }

.iv2__card-meta {
	display: flex;
	gap: 8px;
	font-family: "Arimo", sans-serif;
	font-size: 13px;
	color: #6a708a;
}

.iv2__more {
	margin-top: 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.iv2__btn {
	font-family: "Inter Tight", sans-serif;
	font-weight: 600;
	font-size: 15px;
	padding: 14px 32px;
	border: 1px solid var(--primary-color, #132354);
	border-radius: 8px;
	background: transparent;
	color: var(--primary-color, #132354);
	cursor: pointer;
}

.iv2__btn:disabled { opacity: .5; cursor: not-allowed; }

.iv2__more-hint {
	font-family: "Arimo", sans-serif;
	font-size: 12px;
	color: #8a90a8;
	font-style: italic;
}

.iv2__empty { text-align: center; padding: 48px 0; color: #6a708a; }

@media (max-width: 767px) {
	.iv2__feature { grid-template-columns: 1fr; }
	.iv2__feature-body { padding: 32px 24px 32px; }
	.iv2__filters { gap: 10px; }
	.iv2__filter { min-width: calc(50% - 5px); }
}


/* ============================================================== */
/* V3 — MAGAZINE / SHAPES                                          */
/* Earlier exploration. Not yet aligned to the real site language. */
/* ============================================================== */

.iv-page.iv3 {
	background:
		radial-gradient(circle at 12% -10%, rgba(198, 165, 99, 0.10), transparent 40%),
		radial-gradient(circle at 95% 8%, rgba(52, 97, 225, 0.06), transparent 35%),
		#fafaf7;
}

.iv3__masthead {
	max-width: 880px;
	margin: 0 0 64px;
}

.iv3__rule {
	width: 88px;
	height: 4px;
	background: var(--secondary-color, #C6A563);
	margin-bottom: 28px;
}

.iv3__eyebrow {
	display: inline-block;
	font-family: "Inter Tight", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--primary-color, #132354);
	margin-bottom: 22px;
}

.iv3__title {
	font-family: "Inter Tight", sans-serif;
	font-size: clamp(54px, 8.5vw, 120px);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.035em;
	color: var(--primary-color, #132354);
	margin: 0 0 22px;
}

.iv3__title span { display: block; }
.iv3__title-em {
	font-style: italic;
	font-weight: 500;
	color: var(--secondary-color, #C6A563);
}

.iv3__dek {
	font-family: "Arimo", sans-serif;
	font-size: 19px;
	line-height: 1.55;
	color: #4a526e;
	max-width: 600px;
	margin: 0;
}

/* Hero block --------------------------------------------------- */
.iv3__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
	gap: 40px;
	margin-bottom: 80px;
}

.iv3__lead {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

.iv3__lead-shape {
	position: relative;
	aspect-ratio: 5 / 4;
	background: #e9e7df;
	border-radius: 280px 280px 18px 18px;
	overflow: hidden;
	margin-bottom: 28px;
}

.iv3__lead-shape img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2,.7,.3,1);
}

.iv3__lead:hover .iv3__lead-shape img { transform: scale(1.04); }

.iv3__lead-tag {
	position: absolute;
	top: 24px;
	left: 24px;
	font-family: "Inter Tight", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--primary-color, #132354);
	background: var(--secondary-color, #C6A563);
	padding: 7px 13px;
	border-radius: 999px;
}

.iv3__lead-title {
	font-family: "Inter Tight", sans-serif;
	font-size: clamp(28px, 3.4vw, 44px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--primary-color, #132354);
	margin: 12px 0 14px;
	transition: color .2s;
}

.iv3__lead:hover .iv3__lead-title { color: var(--main-color, #3461E1); }

.iv3__lead-dek {
	font-family: "Arimo", sans-serif;
	font-size: 17px;
	line-height: 1.55;
	color: #4a526e;
	margin: 0 0 18px;
	max-width: 640px;
}

.iv3__lead-cta {
	font-family: "Inter Tight", sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--main-color, #3461E1);
}

.iv3__secondary {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	padding-top: 24px;
}

.iv3__secondary-shape {
	aspect-ratio: 1;
	background: #ece9df;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 22px;
	max-width: 320px;
}

.iv3__secondary-shape img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2,.7,.3,1);
}

.iv3__secondary:hover .iv3__secondary-shape img { transform: scale(1.06); }

.iv3__secondary-title {
	font-family: "Inter Tight", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.22;
	letter-spacing: -0.005em;
	color: var(--primary-color, #132354);
	margin: 10px 0 0;
	transition: color .2s;
}

.iv3__secondary:hover .iv3__secondary-title { color: var(--main-color, #3461E1); }

/* Meta — shared by lead, secondary, shape, tail. */
.iv3__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-family: "Inter Tight", sans-serif;
	font-size: 12px;
	color: #6a708a;
	margin-bottom: 4px;
}

.iv3__chip {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(52, 97, 225, 0.10);
	color: var(--main-color, #3461E1);
}

.iv3__meta-sep { width: 3px; height: 3px; border-radius: 50%; background: #c9cdde; }

/* Shape row ---------------------------------------------------- */
.iv3__shapes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px;
	margin-bottom: 96px;
}

.iv3__shape {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

.iv3__shape-art {
	aspect-ratio: 4 / 5;
	background: #ece9df;
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
}

.iv3__shape-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s cubic-bezier(.2,.7,.3,1);
}

.iv3__shape:hover .iv3__shape-art img { transform: scale(1.06); }

.iv3__shape--arch .iv3__shape-art { border-radius: 200px 200px 14px 14px; }

.iv3__shape--circle .iv3__shape-art {
	aspect-ratio: 1;
	border-radius: 50%;
}

.iv3__shape--slant .iv3__shape-art {
	clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
	border-radius: 14px;
}

.iv3__shape-title {
	font-family: "Inter Tight", sans-serif;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.005em;
	color: var(--primary-color, #132354);
	margin: 8px 0 0;
	transition: color .2s;
}

.iv3__shape:hover .iv3__shape-title { color: var(--main-color, #3461E1); }

.iv3__feature {
	position: relative;
	background: var(--primary-color, #132354);
	color: #fff;
	padding: 80px 64px;
	border-radius: 18px;
	margin-bottom: 96px;
	overflow: hidden;
}

.iv3__feature-corner {
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(198, 165, 99, 0.45) 0%, transparent 70%);
	pointer-events: none;
}

.iv3__feature-quote {
	font-family: "Inter Tight", sans-serif;
	font-size: clamp(26px, 3.4vw, 42px);
	font-weight: 500;
	line-height: 1.22;
	letter-spacing: -0.015em;
	margin: 0 0 32px;
	max-width: 920px;
	position: relative;
	z-index: 1;
}

.iv3__feature-link {
	display: inline-flex;
	flex-direction: column;
	gap: 6px;
	text-decoration: none;
	color: #fff;
	position: relative;
	z-index: 1;
}

.iv3__feature-link span {
	font-family: "Inter Tight", sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
}

.iv3__feature-link em {
	font-family: "Inter Tight", sans-serif;
	font-style: normal;
	font-size: 15px;
	font-weight: 600;
	color: var(--secondary-color, #C6A563);
	transition: color .2s;
}

.iv3__feature-link:hover em { color: #d8bf85; }

.iv3__tail-title {
	font-family: "Inter Tight", sans-serif;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--primary-color, #132354);
	margin: 0 0 32px;
	padding-bottom: 18px;
	border-bottom: 2px solid var(--secondary-color, #C6A563);
	display: inline-block;
}

.iv3__tail-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
}

@media (max-width: 1199px) { .iv3__tail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 767px)  { .iv3__tail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px)  { .iv3__tail-grid { grid-template-columns: 1fr; } }

.iv3__tail-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }

.iv3__tail-art {
	aspect-ratio: 4 / 3;
	background: #ece9df;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 14px;
}

.iv3__tail-art img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .5s cubic-bezier(.2,.7,.3,1);
}

.iv3__tail-card:hover .iv3__tail-art img { transform: scale(1.05); }

.iv3__tail-headline {
	font-family: "Inter Tight", sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--primary-color, #132354);
	margin: 6px 0 0;
	transition: color .2s;
}

.iv3__tail-card:hover .iv3__tail-headline { color: var(--main-color, #3461E1); }

.iv3__lead-shape:not(:has(img))::after,
.iv3__secondary-shape:not(:has(img))::after,
.iv3__shape-art:not(:has(img))::after,
.iv3__tail-art:not(:has(img))::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(198, 165, 99, 0.45), transparent 55%),
		linear-gradient(135deg, #2a3b73 0%, #132354 100%);
}

@media (max-width: 1023px) {
	.iv3__hero { grid-template-columns: 1fr; gap: 32px; }
	.iv3__secondary { padding-top: 0; }
	.iv3__shapes { gap: 24px; }
	.iv3__feature { padding: 56px 36px; }
}

@media (max-width: 600px) {
	.iv3__shapes { grid-template-columns: 1fr; gap: 28px; }
	.iv3__feature { padding: 44px 24px; border-radius: 12px; }
	.iv3__feature-corner { width: 220px; height: 220px; top: -90px; right: -90px; }
}
