/**
 * Blog Webstart France — premium dark / glass / neon rose (scoped).
 */

:root {
	--wsf-blog-neon: #ff29d0;
	--wsf-blog-bg: #000000;
	--wsf-blog-surface: #0b0b0b;
	--wsf-blog-card: rgba(255, 255, 255, 0.035);
	--wsf-blog-border: rgba(255, 255, 255, 0.08);
	--wsf-blog-text-muted: rgba(255, 255, 255, 0.72);
	--wsf-blog-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--wsf-blog-dur: 340ms;
}

body.blog-wsf-premium {
	background-color: var(--wsf-blog-bg);
}

body.blog-wsf-premium main {
	overflow-x: clip;
}

.wsf-blog--premium {
	position: relative;
	z-index: 1;
	color: var(--white);
}

.wsf-blog--premium a {
	color: inherit;
}

.screen-reader-text,
.wsf-blog .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/*
 * Vertical rhythm on sections that also use `.wrapper`:
 * `css/media.css` applies `.wrapper { padding: 0 20px }` (≤1024px), which resets
 * `padding-top` / `padding-bottom` from single-class rules — these selectors win cascade.
 */
body.blog-wsf-premium .wsf-blog-hero.wrapper {
	padding-top: clamp(48px, 7vw, 104px);
	padding-bottom: clamp(32px, 5.5vw, 64px);
}

body.blog-wsf-premium .wsf-blog-hero .wsf-blog-search {
	margin-bottom: clamp(16px, 4vw, 28px);
}

body.blog-wsf-premium .wsf-blog-featured.wrapper {
	padding-top: clamp(20px, 4vw, 36px);
	padding-bottom: clamp(44px, 7vw, 96px);
}

body.blog-wsf-premium .wsf-blog-filters.wrapper {
	padding-top: clamp(28px, 6vw, 44px);
	padding-bottom: clamp(28px, 4vw, 48px);
}

body.blog-wsf-premium .wsf-blog-grid-section.wrapper {
	padding-top: clamp(28px, 6vw, 44px);
	padding-bottom: clamp(48px, 7vw, 96px);
}

body.blog-wsf-premium .wsf-blog-newsletter.wrapper {
	padding-top: clamp(16px, 4vw, 28px);
	padding-bottom: clamp(56px, 8vw, 104px);
}

body.blog-wsf-premium .wsf-blog-trust.wrapper {
	padding-top: clamp(12px, 3vw, 24px);
	padding-bottom: clamp(72px, 10vw, 120px);
}

/* Hero */
.wsf-blog-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
}

.wsf-blog-hero__label {
	margin: 0 0 14px;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wsf-blog-neon);
	font-weight: 600;
}

.wsf-blog-hero__title {
	margin: 0 0 18px;
	font-size: clamp(2.35rem, 5vw, 3.8rem);
	line-height: 1.02;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.wsf-blog-hero__title-accent {
	display: inline-block;
	color: var(--wsf-blog-neon);
	text-shadow: 0 0 42px rgba(255, 41, 208, 0.28);
}

.wsf-blog-hero__lead {
	margin: 0 0 clamp(22px, 3vw, 32px);
	max-width: 38rem;
	font-size: clamp(1rem, 1.25vw, 1.14rem);
	line-height: 1.72;
	color: rgba(255, 255, 255, 0.74);
}

.wsf-blog-search__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

/* Hero recherche — carte glass + champ CF7 (.inps_) + bouton rond rose */
.wsf-blog-search {
	position: relative;
	max-width: min(580px, 100%);
}

.wsf-blog-search__inner {
	position: relative;
	display: flex;
	align-items: flex-end;
	gap: clamp(12px, 2vw, 18px);
	width: 100%;
	padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.5vw, 24px);
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background:
		radial-gradient(ellipse 85% 75% at 12% 12%, rgba(255, 41, 208, 0.18), transparent 58%),
		radial-gradient(ellipse 70% 60% at 92% 78%, rgba(255, 41, 208, 0.06), transparent 52%),
		linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
	box-shadow:
		0 22px 60px rgba(0, 0, 0, 0.38),
		0 0 0 1px rgba(255, 41, 208, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transition:
		border-color var(--wsf-blog-dur) var(--wsf-blog-ease),
		box-shadow var(--wsf-blog-dur) var(--wsf-blog-ease);
}

.wsf-blog-search__inner::before {
	content: "";
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle at 25% 35%, rgba(255, 41, 208, 0.22), transparent 55%);
	filter: blur(48px);
	opacity: 0.45;
	pointer-events: none;
	z-index: 0;
}

@supports (backdrop-filter: blur(12px)) {
	.wsf-blog-search__inner {
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
	}
}

.wsf-blog-search:focus-within .wsf-blog-search__inner {
	border-color: rgba(255, 41, 208, 0.38);
	box-shadow:
		0 24px 64px rgba(0, 0, 0, 0.42),
		0 0 0 1px rgba(255, 41, 208, 0.18),
		0 0 48px rgba(255, 41, 208, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wsf-blog-search__icon,
.wsf-blog-search__field,
.wsf-blog-search__submit {
	position: relative;
	z-index: 1;
}

.wsf-blog-search__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	margin-bottom: 3px;
	color: rgba(255, 255, 255, 0.88);
	filter: drop-shadow(0 0 14px rgba(255, 41, 208, 0.28));
	transition: color var(--wsf-blog-dur) var(--wsf-blog-ease);
}

.wsf-blog-search:focus-within .wsf-blog-search__icon {
	color: var(--pink);
}

.wsf-blog-search__field {
	flex: 1;
	min-width: 0;
	background: transparent;
	border-radius: 0;
}

/* Champ CF7 (.inps_ dans style.css) — souligné sur fond sombre */
.wsf-blog--premium .wsf-blog-search__input.inps_.sto_ {
	display: block;
	width: 100%;
	margin: 0;
	font-family: inherit;
	line-height: 1.35;
	flex: 1 1 auto;
	min-width: 0;
	background: transparent;
	border-bottom-color: rgba(255, 255, 255, 0.42);
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	padding-bottom: 20px;
}

.wsf-blog--premium .wsf-blog-search__input.inps_::placeholder {
	color: var(--gray);
	opacity: 1;
}

.wsf-blog--premium .wsf-blog-search__input.inps_:focus {
	border-bottom-color: var(--pink);
	box-shadow: none;
	outline: none;
}

.wsf-blog-search__input[type="search"]::-webkit-search-cancel-button,
.wsf-blog-search__input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
	appearance: none;
}

.wsf-blog-search__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background-color: var(--pink);
	color: var(--white);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition:
		transform var(--wsf-blog-dur) var(--wsf-blog-ease),
		box-shadow var(--wsf-blog-dur) var(--wsf-blog-ease);
	box-shadow: 0 10px 28px rgba(255, 41, 208, 0.35);
}

.wsf-blog-search__submit-arr {
	display: block;
	transform: translateX(1px);
}

.wsf-blog-search__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(255, 41, 208, 0.45);
}

.wsf-blog-search__submit:focus-visible {
	outline: 2px solid var(--white);
	outline-offset: 3px;
}

.wsf-blog-hero__visual {
	position: relative;
	min-width: 0;
}

.wsf-blog-hero__visual-frame {
	position: relative;
	z-index: 1;
	overflow: visible;
	border: none;
	box-shadow: none;
	background: transparent;
	aspect-ratio: 341 / 243;
	max-width: 100%;
	margin-inline: auto;
}

@media (prefers-reduced-motion: no-preference) {
	.wsf-blog-hero__visual-frame {
		animation: wsf-blog-float 14s ease-in-out infinite;
	}
}

@keyframes wsf-blog-float {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -10px, 0);
	}
}

.wsf-blog-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}

/* Section titles */
.wsf-blog-section-head {
	margin-bottom: clamp(22px, 3vw, 34px);
}

.wsf-blog-section-head__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.wsf-blog-section-head__title {
	margin: 0;
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.wsf-blog-section-head__title::before {
	content: "";
	display: inline-block;
	width: 34px;
	height: 3px;
	border-radius: 3px;
	margin-right: 12px;
	vertical-align: middle;
	background: linear-gradient(90deg, var(--wsf-blog-neon), transparent);
	opacity: 0.85;
}

.wsf-blog-section-head__link {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	transition: color var(--wsf-blog-dur) var(--wsf-blog-ease), transform var(--wsf-blog-dur) var(--wsf-blog-ease);
}

.wsf-blog-section-head__link:hover {
	color: var(--wsf-blog-neon);
	transform: translateX(3px);
}

/* Featured */
.wsf-blog-featured__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 22px);
}

.wsf-blog-card {
	position: relative;
}

.wsf-blog-card__link {
	display: block;
	height: 100%;
	text-decoration: none;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(255, 255, 255, 0.02);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
	transition:
		transform var(--wsf-blog-dur) var(--wsf-blog-ease),
		box-shadow var(--wsf-blog-dur) var(--wsf-blog-ease),
		border-color var(--wsf-blog-dur) var(--wsf-blog-ease);
}

.wsf-blog-card--featured .wsf-blog-card__link:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 41, 208, 0.42);
	box-shadow:
		0 34px 100px rgba(0, 0, 0, 0.52),
		0 0 0 1px rgba(255, 41, 208, 0.18),
		0 0 46px rgba(255, 41, 208, 0.14);
}

.wsf-blog-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.wsf-blog-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms var(--wsf-blog-ease);
}

.wsf-blog-card__link:hover .wsf-blog-card__img {
	transform: scale(1.06);
}

.wsf-blog-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.82));
	opacity: 0.92;
}

.wsf-blog-card__placeholder {
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 30% 25%, rgba(255, 41, 208, 0.22), transparent 55%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.45));
}

.wsf-blog-card__body {
	padding: clamp(16px, 2vw, 20px);
	position: relative;
	z-index: 1;
}

.wsf-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.58);
}

.wsf-blog-card__cat {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 41, 208, 0.35);
	color: rgba(255, 255, 255, 0.92);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 11px;
}

.wsf-blog-card__dot {
	opacity: 0.55;
}

.wsf-blog-card__title {
	margin: 0 0 10px;
	font-size: clamp(1.05rem, 1.35vw, 1.2rem);
	line-height: 1.28;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--white);
	overflow-wrap: anywhere;
	hyphens: auto;
}

.wsf-blog-card__excerpt {
	margin: 0 0 14px;
	font-size: 0.94rem;
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.68);
}

.wsf-blog-card__cta {
	font-size: 13px;
	font-weight: 600;
	color: var(--wsf-blog-neon);
	letter-spacing: 0.02em;
}

.wsf-blog-card__read {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.72);
}

/* Filters */
.wsf-blog-filters__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.wsf-blog-filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.03);
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.84);
	text-decoration: none;
	transition:
		border-color var(--wsf-blog-dur) var(--wsf-blog-ease),
		background var(--wsf-blog-dur) var(--wsf-blog-ease),
		box-shadow var(--wsf-blog-dur) var(--wsf-blog-ease),
		transform var(--wsf-blog-dur) var(--wsf-blog-ease);
}

.wsf-blog-filter:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 41, 208, 0.45);
	box-shadow: 0 16px 42px rgba(255, 41, 208, 0.14);
}

.wsf-blog-filter.is-active {
	background-color: var(--pink);
	border-color: var(--pink);
	color: var(--white);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
	text-shadow: none;
}

/* Grid compact */
.wsf-blog-grid-section.is-loading .wsf-blog-grid,
.wsf-blog-grid-section.is-loading #wsf-blog-pagination-root {
	opacity: 0.46;
	pointer-events: none;
	filter: saturate(0.94);
	transition: opacity 0.22s ease;
}

.wsf-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 18px);
}

.wsf-blog-card--compact .wsf-blog-card__horiz {
	display: grid;
	grid-template-columns: minmax(0, 132px) minmax(0, 1fr);
	gap: clamp(14px, 2vw, 18px);
	align-items: center;
	padding: clamp(14px, 2vw, 16px);
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
	box-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
	text-decoration: none;
	transition:
		transform var(--wsf-blog-dur) var(--wsf-blog-ease),
		border-color var(--wsf-blog-dur) var(--wsf-blog-ease),
		box-shadow var(--wsf-blog-dur) var(--wsf-blog-ease);
}

.wsf-blog-card--compact .wsf-blog-card__horiz:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 41, 208, 0.28);
	box-shadow:
		0 26px 72px rgba(0, 0, 0, 0.46),
		0 0 0 1px rgba(255, 41, 208, 0.12);
}

.wsf-blog-card__thumb {
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.25);
}

.wsf-blog-card__thumb .wsf-blog-card__img {
	aspect-ratio: 1 / 1;
	height: 100%;
	transform: none;
}

.wsf-blog-card--compact .wsf-blog-card__horiz:hover .wsf-blog-card__thumb .wsf-blog-card__img {
	transform: scale(1.05);
}

.wsf-blog-card__placeholder--small {
	aspect-ratio: 1 / 1;
}

.wsf-blog-card__content .wsf-blog-card__title {
	margin: 8px 0 0;
	font-size: clamp(1rem, 1.2vw, 1.12rem);
	overflow-wrap: anywhere;
	hyphens: auto;
}

.wsf-blog-empty {
	grid-column: 1 / -1;
	padding: 28px;
	border-radius: 18px;
	border: 1px dashed rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.62);
	text-align: center;
}

/* Pagination */
.wsf-blog-pagination {
	display: flex;
	justify-content: center;
	margin-top: clamp(28px, 4vw, 44px);
}

.wsf-blog-pagination ul.page-numbers,
.wsf-blog-pagination .pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.wsf-blog-pagination a.page-numbers,
.wsf-blog-pagination span.page-numbers,
.wsf-blog-pagination .page-numbers li > a,
.wsf-blog-pagination .page-numbers li > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	min-height: 46px;
	padding: 0 14px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	font-weight: 600;
	transition:
		background var(--wsf-blog-dur) var(--wsf-blog-ease),
		border-color var(--wsf-blog-dur) var(--wsf-blog-ease),
		transform var(--wsf-blog-dur) var(--wsf-blog-ease),
		box-shadow var(--wsf-blog-dur) var(--wsf-blog-ease);
}

.wsf-blog-pagination a.page-numbers:hover,
.wsf-blog-pagination .page-numbers li > a:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 41, 208, 0.45);
	box-shadow: 0 14px 38px rgba(255, 41, 208, 0.14);
}

.wsf-blog-pagination span.page-numbers.current,
.wsf-blog-pagination .page-numbers li > span.current {
	background-color: var(--pink);
	border-color: var(--pink);
	color: var(--white);
}

/* Newsletter */
.wsf-blog-newsletter__card {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background:
		radial-gradient(ellipse 90% 80% at 88% 18%, rgba(255, 41, 208, 0.22), transparent 55%),
		radial-gradient(ellipse 70% 60% at 12% 88%, rgba(255, 41, 208, 0.08), transparent 52%),
		linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	box-shadow:
		0 28px 80px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(255, 41, 208, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wsf-blog-newsletter__card::before {
	content: "";
	position: absolute;
	inset: -35%;
	background: radial-gradient(circle at 72% 28%, rgba(255, 41, 208, 0.26), transparent 58%);
	filter: blur(56px);
	opacity: 0.55;
	pointer-events: none;
	z-index: 0;
}

@supports (backdrop-filter: blur(14px)) {
	.wsf-blog-newsletter__card {
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
	}
}

.wsf-blog-newsletter__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) minmax(0, min(440px, 100%));
	gap: clamp(18px, 3vw, 32px);
	align-items: center;
	justify-items: stretch;
	padding: clamp(22px, 3vw, 36px);
}

.wsf-blog-newsletter__copy {
	min-width: 0;
}

.wsf-blog-newsletter__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	background: transparent;
	color: var(--white);
}

.wsf-blog-newsletter__title {
	margin: 0 0 8px;
	font-size: clamp(1rem, 1.55vw, 1.25rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--white);
}

.wsf-blog-newsletter__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.6;
	max-width: 46rem;
	font-size: clamp(0.92rem, 1.1vw, 1rem);
}

.wsf-blog-newsletter__form {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	justify-content: flex-end;
	align-items: flex-end;
	width: 100%;
	min-width: 0;
}

/* Champ CF7 (.inps_ dans style.css) — pas de champ « boîte blanche » local */
.wsf-blog--premium .wsf-blog-newsletter__input.inps_.sto_ {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	background: transparent;
	border-bottom-color: rgba(255, 255, 255, 0.42);
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	padding-bottom: 20px;
}

.wsf-blog--premium .wsf-blog-newsletter__input.inps_::placeholder {
	color: var(--gray);
	opacity: 1;
}

.wsf-blog--premium .wsf-blog-newsletter__input.inps_:focus {
	border-bottom-color: var(--pink);
	box-shadow: none;
	outline: none;
}

/* Bouton pilule rose : libellé uppercase + flèche ↗ (maquette) */
body.blog-wsf-premium .wsf-blog-newsletter__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	gap: 12px;
	min-height: 52px;
	padding: 14px 26px 14px 28px;
	border: none;
	border-radius: 999px;
	background-color: var(--pink);
	color: var(--white);
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	white-space: nowrap;
	transition:
		transform var(--wsf-blog-dur) var(--wsf-blog-ease),
		box-shadow var(--wsf-blog-dur) var(--wsf-blog-ease);
	box-shadow:
		0 14px 42px rgba(255, 41, 208, 0.45),
		0 0 32px rgba(255, 41, 208, 0.38);
}

body.blog-wsf-premium .wsf-blog-newsletter__btn-label {
	display: inline-block;
	line-height: 1.2;
}

body.blog-wsf-premium .wsf-blog-newsletter__btn-arr {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 0;
}

body.blog-wsf-premium .wsf-blog-newsletter__btn-arr svg {
	display: block;
	width: 18px;
	height: 18px;
}

body.blog-wsf-premium .wsf-blog-newsletter__btn:hover {
	transform: translateY(-2px);
	box-shadow:
		0 18px 52px rgba(255, 41, 208, 0.52),
		0 0 40px rgba(255, 41, 208, 0.42);
}

body.blog-wsf-premium .wsf-blog-newsletter__btn:focus-visible {
	outline: 2px solid var(--white);
	outline-offset: 3px;
}

/* Trust */
.wsf-blog-trust__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 18px);
}

.wsf-blog-trust__item {
	padding: clamp(18px, 2vw, 22px);
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(255, 255, 255, 0.025);
	box-shadow: 0 18px 54px rgba(0, 0, 0, 0.35);
	transition:
		transform var(--wsf-blog-dur) var(--wsf-blog-ease),
		border-color var(--wsf-blog-dur) var(--wsf-blog-ease);
}

.wsf-blog-trust__item:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 41, 208, 0.22);
}

.wsf-blog-trust__icon {
	display: inline-flex;
	color: var(--wsf-blog-neon);
	margin-bottom: 12px;
}

.wsf-blog-trust__title {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 700;
}

.wsf-blog-trust__desc {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.62);
}

/* Reveal */
.wsf-reveal {
	opacity: 0;
	transform: translate3d(0, 18px, 0);
	transition:
		opacity 0.75s var(--wsf-blog-ease),
		transform 0.75s var(--wsf-blog-ease);
	will-change: opacity, transform;
}

.wsf-reveal.is-visible {
	opacity: 1;
	transform: none;
	will-change: auto;
}

.wsf-reveal--delay {
	transition-delay: 90ms;
}

@media (prefers-reduced-motion: reduce) {
	.wsf-reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.wsf-blog-hero__visual-frame {
		animation: none !important;
	}
}

/* Responsive */
@media (max-width: 1100px) {
	.wsf-blog-featured__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wsf-blog-newsletter__inner {
		grid-template-columns: 1fr;
		align-items: stretch;
	}

	.wsf-blog-newsletter__form {
		justify-content: stretch;
		flex-wrap: nowrap;
		max-width: 100%;
	}

	.wsf-blog-newsletter__input.inps_ {
		flex: 1 1 auto;
		min-width: 0;
	}

	.wsf-blog-trust__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 880px) {
	.wsf-blog-hero__grid {
		grid-template-columns: 1fr;
		gap: clamp(18px, 4vw, 28px);
	}

	body.blog-wsf-premium .wsf-blog-hero__visual {
		margin-top: clamp(10px, 3vw, 22px);
	}

	body.blog-wsf-premium .wsf-blog-hero.wrapper {
		padding-bottom: clamp(36px, 8vw, 72px);
	}

	body.blog-wsf-premium .wsf-blog-featured.wrapper {
		padding-top: clamp(16px, 5vw, 28px);
	}

	.wsf-blog-hero__visual-frame {
		max-width: min(100%, 520px);
		aspect-ratio: auto;
		min-height: 0;
	}

	/* Illustration scales with width; cap height on short viewports. */
	.wsf-blog-hero__img {
		display: block;
		width: 100%;
		height: auto;
		max-height: min(46vh, 380px);
		object-fit: contain;
		object-position: center bottom;
		margin-inline: auto;
	}

	@supports (height: 100dvh) {
		.wsf-blog-hero__img {
			max-height: min(40dvh, 380px);
		}
	}

	.wsf-blog-featured__grid {
		grid-template-columns: 1fr;
	}

	.wsf-blog-grid {
		grid-template-columns: 1fr;
	}

	.wsf-blog-card--compact .wsf-blog-card__horiz {
		grid-template-columns: 112px 1fr;
	}
}

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

	.wsf-blog-section-head__row {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.wsf-blog-section-head__link {
		align-self: flex-start;
	}

	.wsf-blog-filters__inner {
		gap: 10px;
	}

	.wsf-blog-filter {
		padding: 10px 14px;
		font-size: 13px;
	}

	.wsf-blog-newsletter__inner {
		padding: clamp(18px, 4vw, 28px);
	}

	.wsf-blog-pagination ul.page-numbers,
	.wsf-blog-pagination .pagination {
		row-gap: 12px;
	}
}

@media (max-width: 380px) {
	.wsf-blog-newsletter__form {
		flex-wrap: wrap;
	}

	.wsf-blog-newsletter__input.inps_ {
		flex: 1 1 100%;
		min-width: 100%;
	}

	body.blog-wsf-premium .wsf-blog-newsletter__btn {
		width: 100%;
		justify-content: center;
		min-height: 48px;
		padding: 12px 22px;
	}
}

@media (max-width: 520px) {
	.wsf-blog-search__inner {
		gap: 10px;
		padding: 14px 16px;
		border-radius: 18px;
	}

	.wsf-blog-search__submit {
		width: 48px;
		height: 48px;
		min-width: 48px;
		min-height: 48px;
		font-size: 20px;
	}

	.wsf-blog--premium .wsf-blog-search__input.inps_ {
		font-size: 16px;
	}

	.wsf-blog-newsletter__input.inps_ {
		font-size: 16px;
	}

	body.blog-wsf-premium .wsf-blog-newsletter__btn {
		min-height: 48px;
		padding: 12px 22px 12px 24px;
		font-size: 12px;
		gap: 10px;
	}

	body.blog-wsf-premium .wsf-blog-newsletter__btn-arr svg {
		width: 16px;
		height: 16px;
	}

	.wsf-blog-card--compact .wsf-blog-card__horiz {
		grid-template-columns: 1fr;
		align-items: stretch;
		padding: clamp(12px, 3vw, 14px);
		gap: 12px;
	}

	.wsf-blog-card__thumb {
		max-width: none;
		width: 100%;
		aspect-ratio: 16 / 10;
		align-self: stretch;
	}

	.wsf-blog-card__thumb .wsf-blog-card__img {
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
		object-fit: cover;
	}

	.wsf-blog-card__content .wsf-blog-card__meta {
		margin-bottom: 6px;
	}
}
