/**
 * Insights (blog) listing page — hero, filters, popular topics,
 * latest insights grid, newsletter, closing CTA.
 *
 * @package Skavend
 */

.page-template-templates-insights-php .site-main,
.ins-page {
	background: #fdfbf7;
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
	width: 100% !important;
	overflow-x: hidden;
}

body.page-template-templates-insights-php .site-header {
	margin-top: 12px;
	background: linear-gradient(180deg, rgba(253, 252, 247, 0.88), rgba(249, 247, 242, 0.7));
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.75) inset,
		0 10px 28px rgba(46, 60, 52, 0.05);
}

.ins-page {
	--ins-cream: #f8f1e7;
	--ins-cream-2: #f2e9db;
	--ins-green: #0b4232;
	--ins-green-2: #062c21;
	--ins-green-3: #0a3d2d;
	--ins-gold: #b58a55;
	--ins-gold-light: #e2bd80;
	--ins-text: #152520;
	--ins-muted: #5c6560;
	--serif: var(--font-serif, 'Playfair Display', Georgia, serif);
	--sans: var(--font-sans, 'DM Sans', system-ui, sans-serif);
	--ins-space: var(--section-space, 7%);
	--ins-gap: 20px;
}

.ins-page *,
.ins-page *::before,
.ins-page *::after {
	box-sizing: border-box;
}

.ins-shell {
	width: var(--shell-width, 90%);
	margin: 0 auto;
}

/* Single-sided rhythm: every section only pushes space AFTER itself, so
   stacked sections never double up their gap. */
.ins-section {
	padding-top: 0;
	padding-bottom: 0;
}

.ins-page [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.ins-page [data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

.ins-kicker {
	margin: 0 0 14px;
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ins-gold);
}

.ins-kicker--on-dark { color: var(--ins-gold-light); }

.ins-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 52px;
	padding: 0 26px;
	border-radius: 10px;
	background: linear-gradient(180deg, var(--ins-green), var(--ins-green-2));
	color: #f5e8d3;
	font-family: var(--sans);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(6, 44, 33, 0.22);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	border: none;
	cursor: pointer;
}

.ins-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ins-btn:hover { transform: translateY(-2px); color: #f5e8d3; text-decoration: none; box-shadow: 0 14px 28px rgba(6, 44, 33, 0.28); }

.ins-btn--ghost {
	background: transparent;
	color: var(--ins-text);
	border: 1.5px solid var(--ins-gold);
	box-shadow: none;
}
.ins-btn--ghost:hover { background: rgba(181, 138, 85, 0.1); color: var(--ins-text); box-shadow: none; }

/* Any plain <button> using .ins-btn (e.g. Load More) needs the same
   specificity guard as the global button reset in style.css. The
   ghost override is listed second so it wins when both classes apply. */
.ins-page button.ins-btn {
	background: linear-gradient(180deg, var(--ins-green), var(--ins-green-2));
	color: #f5e8d3;
	border: none;
}
.ins-page button.ins-btn:hover { background: linear-gradient(180deg, var(--ins-green), var(--ins-green-2)); color: #f5e8d3; }

.ins-page button.ins-btn--ghost {
	background: transparent;
	color: var(--ins-text);
	border: 1.5px solid var(--ins-gold);
	box-shadow: none;
}
.ins-page button.ins-btn--ghost:hover { background: rgba(181, 138, 85, 0.1); color: var(--ins-text); box-shadow: none; }

/* ═══════════════ HERO ═══════════════ */
.ins-hero {
	background: linear-gradient(112deg, var(--ins-cream) 0%, #f5ede2 46%, var(--ins-cream-2) 100%);
}

.ins-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	gap: 48px;
	align-items: center;
}

.ins-hero__title {
	margin: 0 0 20px;
	font-family: var(--serif);
	font-size: clamp(34px, 3.8vw, 48px);
	font-weight: 700;
	line-height: 1.14;
	color: var(--ins-text);
}

.ins-hero__title em { font-style: normal; color: var(--ins-gold); }

.ins-hero__lead {
	margin: 0 0 32px;
	max-width: 46ch;
	font-family: var(--sans);
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--ins-muted);
}

.ins-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.ins-hero__visual {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 18px;
	min-height: 340px;
}

/* No photo strip available (e.g. no thumbnails yet) — let the featured
   card take the full width instead of leaving a dead column. */
.ins-hero__visual:has(.ins-featured-card:only-child) {
	grid-template-columns: 1fr;
}

/* Featured insight card */
.ins-featured-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 26px 22px;
	border-radius: 20px;
	background: linear-gradient(160deg, #0c4433 0%, #052018 100%);
	color: #f4ece0;
	text-decoration: none;
	box-shadow: 0 24px 48px rgba(6, 32, 24, 0.28);
	overflow: hidden;
}

.ins-featured-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 15% 10%, rgba(226, 189, 128, 0.16), transparent 45%);
	pointer-events: none;
}

.ins-featured-card__eyebrow {
	position: relative;
	margin-bottom: 14px;
	font-family: var(--sans);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--ins-gold-light);
}

.ins-featured-card h2 {
	position: relative;
	margin: 0 0 12px;
	font-family: var(--serif);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.28;
	color: #fff;
}

.ins-featured-card p {
	position: relative;
	margin: 0 0 auto;
	padding-bottom: 20px;
	font-family: var(--sans);
	font-size: 12.5px;
	line-height: 1.6;
	color: rgba(244, 236, 224, 0.78);
}

.ins-featured-card__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 700;
	color: var(--ins-gold-light);
}

.ins-featured-card__link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform 0.2s ease; }
.ins-featured-card:hover .ins-featured-card__link svg { transform: translateX(3px); }

/* Photo strip / fanned collage */
.ins-strip {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.ins-strip__track {
	display: flex;
	gap: 4px;
	height: 100%;
	min-height: 340px;
}

.ins-strip__frame {
	position: relative;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	transform: rotate(calc((var(--i, 0) - 1) * 4deg)) scale(1.08);
	transition: transform 0.4s ease, flex-grow 0.4s ease;
}

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

.ins-strip__frame:hover { flex-grow: 1.4; transform: rotate(0deg) scale(1.08); }

.ins-strip__nav {
	position: absolute;
	left: 14px;
	bottom: 14px;
	display: flex;
	gap: 8px;
	z-index: 2;
}

.ins-page button.ins-strip__prev,
.ins-page button.ins-strip__next {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border-radius: 50%;
	border: none;
	background: rgba(4, 20, 14, 0.55);
	color: #f4ece0;
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: background 0.2s ease, transform 0.2s ease;
}

.ins-page button.ins-strip__next { background: var(--ins-gold); color: #0a3d2d; }
.ins-page button.ins-strip__prev:hover { background: rgba(4, 20, 14, 0.55); transform: translateY(-2px); }
.ins-page button.ins-strip__next:hover { background: var(--ins-gold); transform: translateY(-2px); }

.ins-strip__prev svg,
.ins-strip__next svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; }

/* ═══════════════ FILTERS ═══════════════ */
.ins-filters-wrap { padding: 0 0 var(--ins-space); }

.ins-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: #fff;
	border: 1px solid rgba(6, 44, 33, 0.08);
	border-radius: 16px;
	box-shadow: 0 14px 34px rgba(10, 48, 36, 0.06);
}

.ins-filters__search {
	position: relative;
	flex: 1 1 260px;
	min-width: 200px;
}

.ins-filters__search-ico {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--ins-muted);
	display: grid;
}

.ins-filters__search input {
	width: 100%;
	height: 46px;
	padding: 0 14px 0 42px;
	border: 1px solid rgba(6, 44, 33, 0.1);
	border-radius: 10px;
	background: var(--ins-cream);
	font-family: var(--sans);
	font-size: 14px;
	color: var(--ins-text);
}

.ins-filters__search input:focus {
	outline: none;
	border-color: var(--ins-gold);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(181, 138, 85, 0.14);
}

.ins-filters__select {
	position: relative;
	flex: 0 0 auto;
}

.ins-filters__sort {
	position: relative;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.ins-filters__select select,
.ins-filters__sort select {
	appearance: none;
	-webkit-appearance: none;
	height: 46px;
	padding: 0 32px 0 14px;
	border: 1px solid rgba(6, 44, 33, 0.1);
	border-radius: 10px;
	background: var(--ins-cream);
	font-family: var(--sans);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ins-text);
	cursor: pointer;
}

.ins-filters__select-ico {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--ins-gold);
	pointer-events: none;
	display: grid;
}

.ins-filters__sort label {
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 600;
	color: var(--ins-muted);
	white-space: nowrap;
}

/* ═══════════════ POPULAR TOPICS ═══════════════ */
.ins-topics {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: var(--ins-gap);
}

.ins-page button.ins-topic {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	height: auto;
	padding: 22px 18px;
	background: #fff;
	color: inherit;
	border: 1px solid rgba(6, 44, 33, 0.08);
	border-radius: 16px;
	text-align: left;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	font-family: var(--sans);
	box-shadow: none;
}

.ins-page button.ins-topic:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(10, 48, 36, 0.1); background: #fff; }
.ins-page button.ins-topic.is-active { box-shadow: 0 0 0 2px var(--ins-gold) inset; }

.ins-topic__ico {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 14px;
	border-radius: 50%;
}

.ins-topic--green .ins-topic__ico { background: var(--ins-green); color: var(--ins-gold-light); }
.ins-topic--gold .ins-topic__ico { background: var(--ins-gold); color: #fff; }

.ins-topic h3 {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 700;
	color: var(--ins-text);
	line-height: 1.3;
}

.ins-topic p {
	margin: 0 0 16px;
	font-size: 12px;
	line-height: 1.55;
	color: var(--ins-muted);
}

.ins-topic__count {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ins-green);
}

.ins-topic__count svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform 0.2s ease; }
.ins-topic:hover .ins-topic__count svg { transform: translateX(3px); }

/* ═══════════════ LATEST INSIGHTS ═══════════════ */
.ins-latest {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: var(--ins-gap);
	margin-bottom: 40px;
}

.ins-latest__feature {
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(6, 44, 33, 0.08);
	text-decoration: none;
	box-shadow: 0 14px 34px rgba(10, 48, 36, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ins-latest__feature:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(10, 48, 36, 0.12); }

.ins-latest__media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: linear-gradient(150deg, #0f5b44, #062f24);
}

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

.ins-latest__badge {
	position: absolute;
	left: 16px;
	top: 16px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(4, 20, 14, 0.62);
	color: #f4ece0;
	font-family: var(--sans);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.ins-latest__body { padding: 26px 26px 24px; }

.ins-latest__body h3 {
	margin: 0 0 10px;
	font-family: var(--serif);
	font-size: clamp(19px, 2vw, 24px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--ins-text);
}

.ins-latest__body p {
	margin: 0 0 20px;
	font-family: var(--sans);
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--ins-muted);
}

.ins-latest__byline {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 18px;
	border-top: 1px solid rgba(6, 44, 33, 0.08);
}

.ins-latest__byline img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }

.ins-latest__byline b { display: block; font-family: var(--sans); font-size: 12.5px; font-weight: 700; color: var(--ins-text); }
.ins-latest__byline span { display: block; font-family: var(--sans); font-size: 11px; color: var(--ins-muted); }

.ins-latest__meta {
	margin-left: auto;
	font-family: var(--sans);
	font-size: 11.5px;
	color: var(--ins-muted);
	white-space: nowrap;
}

.ins-latest__list { display: flex; flex-direction: column; gap: 14px; }

.ins-list-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px;
	background: #fff;
	border: 1px solid rgba(6, 44, 33, 0.08);
	border-radius: 14px;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ins-list-card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(10, 48, 36, 0.08); }

.ins-list-card__media {
	position: relative;
	flex: 0 0 76px;
	width: 76px;
	height: 64px;
	border-radius: 10px;
	overflow: hidden;
	background: linear-gradient(150deg, #0f5b44, #062f24);
}

.ins-list-card__media .ins-card__fallback svg { width: 18px; height: 18px; }

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

.ins-list-card__body { flex: 1; min-width: 0; }

.ins-list-card__tag {
	display: block;
	margin-bottom: 4px;
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--ins-gold);
}

.ins-list-card__body h4 {
	margin: 0 0 4px;
	font-family: var(--sans);
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--ins-text);
}

.ins-list-card__meta {
	display: block;
	font-family: var(--sans);
	font-size: 11px;
	color: var(--ins-muted);
}

.ins-list-card__save {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	color: var(--ins-muted);
}

/* ═══════════════ BROWSE / GRID ═══════════════ */
.ins-h {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(24px, 2.6vw, 30px);
	font-weight: 700;
	line-height: 1.25;
	color: var(--ins-text);
}

.ins-browse__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
}

.ins-browse__head .ins-kicker { margin-bottom: 8px; }

.ins-browse__count {
	flex-shrink: 0;
	padding-bottom: 4px;
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 600;
	color: var(--ins-muted);
}

.ins-browse__more {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.ins-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ins-gap);
}

.ins-card {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(6, 44, 33, 0.08);
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.25s ease;
	box-shadow: 0 10px 24px rgba(10, 48, 36, 0.04);
}

.ins-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(10, 48, 36, 0.1); }

.ins-card.is-hidden,
.ins-card.is-paginated { display: none; }

.ins-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: linear-gradient(150deg, #0f5b44, #062f24);
}

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

.ins-card__fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: var(--ins-gold-light);
}

.ins-card__tag {
	position: absolute;
	left: 12px;
	top: 12px;
	padding: 4px 11px;
	border-radius: 999px;
	background: rgba(4, 20, 14, 0.6);
	color: #f4ece0;
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 700;
}

.ins-card__body { padding: 18px 18px 16px; display: flex; flex-direction: column; flex: 1; }

.ins-card__body h4 {
	margin: 0 0 8px;
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--ins-text);
}

.ins-card__body p {
	margin: 0 0 auto;
	padding-bottom: 14px;
	font-family: var(--sans);
	font-size: 12.5px;
	line-height: 1.55;
	color: var(--ins-muted);
}

.ins-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid rgba(6, 44, 33, 0.07);
	font-family: var(--sans);
	font-size: 11.5px;
	color: var(--ins-muted);
}

.ins-cards__empty {
	margin: 40px 0 0;
	text-align: center;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--ins-muted);
}

/* ═══════════════ NEWSLETTER ═══════════════ */
.ins-newsletter-wrap { padding-top: 0; }

.ins-newsletter {
	position: relative;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	padding: 34px 40px;
	border-radius: 22px;
	background: linear-gradient(135deg, #0a3d2d 0%, #062a1f 55%, #07301f 100%);
	overflow: hidden;
}

.ins-newsletter::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 10% 20%, rgba(201, 164, 107, 0.14), transparent 45%),
		radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.06), transparent 40%);
	pointer-events: none;
}

.ins-newsletter__ico {
	position: relative;
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: rgba(226, 189, 128, 0.14);
	border: 1px solid rgba(226, 189, 128, 0.4);
	color: var(--ins-gold-light);
}

.ins-newsletter__copy { position: relative; flex: 1 1 320px; min-width: 240px; }

.ins-newsletter__copy h2 {
	margin: 0 0 6px;
	font-family: var(--serif);
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 700;
	color: #fff;
}

.ins-newsletter__copy > p {
	margin: 0;
	max-width: 50ch;
	font-family: var(--sans);
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.75);
}

.ins-newsletter__form {
	position: relative;
	display: flex;
	gap: 10px;
	flex: 1 1 380px;
	min-width: 280px;
}

.ins-newsletter__form input {
	flex: 1;
	height: 52px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-family: var(--sans);
	font-size: 14px;
}

.ins-newsletter__form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.ins-newsletter__form input:focus { outline: none; border-color: var(--ins-gold-light); background: rgba(255, 255, 255, 0.1); }

.ins-page .ins-newsletter__form button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 52px;
	padding: 0 22px;
	border: none;
	border-radius: 10px;
	background: linear-gradient(135deg, #d4a95a 0%, #c9a46b 100%);
	color: #0a3d2d;
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.25s ease;
}

.ins-page .ins-newsletter__form button:hover { background: linear-gradient(135deg, #d4a95a 0%, #c9a46b 100%); transform: translateY(-2px); }
.ins-page .ins-newsletter__form button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }

.ins-newsletter__note {
	position: relative;
	width: 100%;
	margin: 10px 0 0 78px;
	font-family: var(--sans);
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.5);
}

.ins-newsletter__form-status {
	font-family: var(--sans);
	font-size: 12.5px;
	color: var(--ins-gold-light);
}

/* ═══════════════ BOTTOM CTA ═══════════════ */
.ins-cta-wrap { padding-top: 0; }

.ins-cta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
	padding: 36px 0;
	border-top: 1px solid rgba(6, 44, 33, 0.08);
}

.ins-cta__copy h2 {
	margin: 0 0 12px;
	font-family: var(--serif);
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--ins-text);
}

.ins-cta__text {
	margin: 0 0 24px;
	max-width: 44ch;
	font-family: var(--sans);
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--ins-muted);
}

.ins-cta__points { display: flex; flex-direction: column; gap: 18px; }

.ins-cta__point {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.ins-cta__point span {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ins-cream);
	color: var(--ins-gold);
}

.ins-cta__point b {
	display: block;
	margin-bottom: 3px;
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 700;
	color: var(--ins-text);
}

.ins-cta__point p {
	margin: 0;
	font-family: var(--sans);
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--ins-muted);
}

@media (prefers-reduced-motion: reduce) {
	.ins-page [data-reveal] { transition: none; }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1280px) {
	.ins-topics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.ins-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
	.ins-hero__grid { grid-template-columns: 1fr; }
	.ins-hero__visual { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
	.ins-strip__track { min-height: 220px; }

	.ins-latest { grid-template-columns: 1fr; }
	.ins-cta { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) and (min-width: 901px) {
	.ins-filters {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		align-items: stretch;
	}

	.ins-filters__search {
		grid-column: 1 / -1;
		width: 100%;
		min-width: 0;
	}

	.ins-filters__select {
		width: 100%;
	}

	.ins-filters__select select {
		width: 100%;
	}

	.ins-filters__sort {
		grid-column: 1 / -1;
		margin-left: 0;
		width: 100%;
	}

	.ins-filters__sort select {
		flex: 1;
		width: 100%;
	}
}

@media (max-width: 900px) {
	.ins-shell { width: calc(100% - 40px); }

	.ins-filters {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 14px;
	}

	.ins-filters__search {
		flex: none;
		width: 100%;
		min-width: 0;
	}

	.ins-filters__search input {
		height: 44px;
		font-size: 14px;
	}

	.ins-filters__select {
		width: 100%;
	}

	.ins-filters__select select {
		width: 100%;
		height: 44px;
	}

	.ins-filters__sort {
		margin-left: 0;
		width: 100%;
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		gap: 10px;
	}

	.ins-filters__sort select {
		width: 100%;
		height: 44px;
		min-width: 0;
	}

	.ins-filters__sort .ins-filters__select-ico {
		right: 10px;
	}
}

@media (max-width: 600px) {
	.ins-filters {
		padding: 12px;
		gap: 8px;
	}

	.ins-filters__search-ico {
		left: 12px;
	}

	.ins-filters__search input {
		padding-left: 38px;
	}
}

@media (max-width: 760px) {
	.ins-topics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ins-newsletter { padding: 28px; }
	.ins-newsletter__note { margin-left: 0; }
	.ins-newsletter__form { flex-direction: column; }
	.ins-newsletter__form button { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
	.ins-cards { grid-template-columns: 1fr; }
	.ins-topics { grid-template-columns: 1fr; }
}
