.bth-header,
.bth-header * {
	box-sizing: border-box;
}

.bth-header {
	position: relative;
	z-index: 20;
	width: 100%;
	background: #fff;
	color: #111;
	font-family: "Outfit", Arial, sans-serif;
}

.bth-header--full-bleed {
	width: 100vw;
	max-width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.bth-header__inner {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.bth-header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 81px;
	padding: 24px 32px;
	border-bottom: 1px solid #eaeaea;
}

.bth-header__logo {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	color: #111;
	text-decoration: none;
}

.bth-header__logo:hover,
.bth-header__logo:focus {
	color: inherit;
}

.bth-header__logo-text {
	font-family: "Outfit", Arial, sans-serif;
	font-size: 26px;
	font-weight: 900;
	line-height: 33px;
	white-space: nowrap;
	text-transform: uppercase;
}

.bth-header__logo-image {
	display: block;
	width: 222px;
	max-width: 100%;
	height: auto;
}

.bth-header__meta {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
}

.bth-header__edition {
	color: #888;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 14px;
	text-transform: uppercase;
	white-space: nowrap;
}

.bth-header__search-toggle,
.bth-header__search-link,
.bth-header__menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #111;
	text-decoration: none;
	cursor: pointer;
	appearance: none;
}

.bth-header__search-toggle:hover,
.bth-header__search-toggle:focus,
.bth-header__search-link:hover,
.bth-header__search-link:focus,
.bth-header__menu-toggle:hover,
.bth-header__menu-toggle:focus {
	background: transparent;
	color: inherit;
}

.bth-header__search-toggle:focus-visible,
.bth-header__search-link:focus-visible,
.bth-header__menu-toggle:focus-visible,
.bth-header__nav-link:focus-visible,
.bth-header__language-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.bth-header__search-icon {
	display: block;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bth-header__nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 52px;
	padding: 18px 32px;
	border-bottom: 2px solid #111;
}

.bth-header__navigation {
	min-width: 0;
}

.bth-header__nav-list {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bth-header__nav-item {
	margin: 0;
	padding: 0;
}

.bth-header__nav-link {
	display: inline-flex;
	align-items: center;
	color: #111;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 16px;
	text-decoration: none;
	white-space: nowrap;
	text-transform: uppercase;
	transition: color 160ms ease;
}

.bth-header__nav-link:hover,
.bth-header__nav-link:focus-visible,
.bth-header__nav-link.is-active {
	color: #e03f54;
}

.bth-header__languages {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	margin-left: 32px;
}

.bth-header__language-link {
	color: #888;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 16px;
	text-decoration: none;
	text-transform: uppercase;
}

.bth-header__language-link.is-active {
	color: #111;
	font-weight: 700;
}

.bth-header__menu-toggle {
	display: none;
}

.bth-header__menu-lines {
	display: grid;
	gap: 4px;
	width: 20px;
}

.bth-header__menu-lines span {
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.bth-header.is-menu-open .bth-header__menu-lines span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.bth-header.is-menu-open .bth-header__menu-lines span:nth-child(2) {
	opacity: 0;
}

.bth-header.is-menu-open .bth-header__menu-lines span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.bth-header__search-panel {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 30;
	padding: 18px 32px;
	border-bottom: 1px solid #eaeaea;
	background: #fff;
	box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.bth-header__search-panel[hidden] {
	display: none;
}

.bth-header__search-form {
	display: flex;
	align-items: center;
	max-width: 760px;
	margin-left: auto;
}

.bth-header__search-input {
	width: 100%;
	height: 46px;
	padding: 0 48px 0 16px;
	border: 1px solid #d8d8d8;
	border-radius: 0;
	background: #fff;
	color: #111;
	font: inherit;
	outline: none;
}

.bth-header__search-input:focus {
	border-color: #111;
}

.bth-header__search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-left: -46px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	cursor: pointer;
}

.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;
}

@media (prefers-reduced-motion: reduce) {
	.bth-header__nav-link,
	.bth-header__menu-lines span {
		transition: none;
	}
}

/* Les trois variantes permettent de choisir le breakpoint depuis Elementor. */
@media (max-width: 1200px) {
	.bth-breakpoint-1200 .bth-header__top {
		padding-right: 32px;
		padding-left: 32px;
	}
	.bth-breakpoint-1200 .bth-header__menu-toggle { display: inline-flex; }
	.bth-breakpoint-1200 .bth-header__nav-row { display: none; padding: 8px 32px 24px; }
	.bth-breakpoint-1200.is-menu-open .bth-header__nav-row { display: flex; }
	.bth-breakpoint-1200 .bth-header__nav-row,
	.bth-breakpoint-1200 .bth-header__nav-list { flex-direction: column; align-items: flex-start; }
	.bth-breakpoint-1200 .bth-header__nav-list { width: 100%; gap: 0; }
	.bth-breakpoint-1200 .bth-header__navigation { width: 100%; }
	.bth-breakpoint-1200 .bth-header__nav-link { width: 100%; padding: 12px 0; }
	.bth-breakpoint-1200 .bth-header__languages { margin: 18px 0 0; }
	.bth-breakpoint-1200 .bth-header__search-panel { padding-right: 32px; padding-left: 32px; }
	.bth-breakpoint-1200.bth-header--hide-edition-mobile .bth-header__edition { display: none; }
}

@media (max-width: 1024px) {
	.bth-breakpoint-1024 .bth-header__top {
		padding-right: 24px;
		padding-left: 24px;
	}
	.bth-breakpoint-1024 .bth-header__menu-toggle { display: inline-flex; }
	.bth-breakpoint-1024 .bth-header__nav-row { display: none; padding: 8px 24px 24px; }
	.bth-breakpoint-1024.is-menu-open .bth-header__nav-row { display: flex; }
	.bth-breakpoint-1024 .bth-header__nav-row,
	.bth-breakpoint-1024 .bth-header__nav-list { flex-direction: column; align-items: flex-start; }
	.bth-breakpoint-1024 .bth-header__nav-list { width: 100%; gap: 0; }
	.bth-breakpoint-1024 .bth-header__navigation { width: 100%; }
	.bth-breakpoint-1024 .bth-header__nav-link { width: 100%; padding: 12px 0; }
	.bth-breakpoint-1024 .bth-header__languages { margin: 18px 0 0; }
	.bth-breakpoint-1024 .bth-header__search-panel { padding-right: 24px; padding-left: 24px; }
	.bth-breakpoint-1024.bth-header--hide-edition-mobile .bth-header__edition { display: none; }
}


/* Keep the brand against the left edge and the mobile actions against the right edge. */
.bth-header__top {
	width: 100%;
}

.bth-header__logo {
	margin-right: auto;
}

.bth-header__meta {
	margin-left: auto;
}

@media (max-width: 767px) {
	.bth-header__top {
		min-height: 68px;
	}

	.bth-header__logo-text {
		font-size: 21px;
		line-height: 1.2;
	}

	.bth-header__meta {
		gap: 8px;
	}

	.bth-breakpoint-767 .bth-header__top {
		padding: 18px 16px;
	}
	.bth-breakpoint-767 .bth-header__menu-toggle { display: inline-flex; }
	.bth-breakpoint-767 .bth-header__nav-row { display: none; padding: 8px 16px 20px; }
	.bth-breakpoint-767.is-menu-open .bth-header__nav-row { display: flex; }
	.bth-breakpoint-767 .bth-header__nav-row,
	.bth-breakpoint-767 .bth-header__nav-list { flex-direction: column; align-items: flex-start; }
	.bth-breakpoint-767 .bth-header__nav-list { width: 100%; gap: 0; }
	.bth-breakpoint-767 .bth-header__navigation { width: 100%; }
	.bth-breakpoint-767 .bth-header__nav-link { width: 100%; padding: 12px 0; }
	.bth-breakpoint-767 .bth-header__languages { margin: 18px 0 0; }
	.bth-breakpoint-767 .bth-header__search-panel { padding: 16px; }
	.bth-breakpoint-767.bth-header--hide-edition-mobile .bth-header__edition { display: none; }
}
.atelier-led-hero,
.atelier-led-hero * {
	box-sizing: border-box;
}

.atelier-led-hero {
	--alh-visual-width: 752px;
	--alh-content-width: 480px;
	width: 100%;
	overflow: hidden;
	background: #fff;
}

.atelier-led-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, var(--alh-visual-width)) minmax(0, var(--alh-content-width));
	align-items: center;
	justify-content: center;
	gap: 48px;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 48px 80px 64px;
}

.atelier-led-hero__visual {
	position: relative;
	width: 100%;
	height: 580px;
	min-width: 0;
	overflow: hidden;
	border-radius: 4px;
	background: #f4f4f4;
}

.atelier-led-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: center center;
}

.atelier-led-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	width: 100%;
	gap: 24px;
}

.atelier-led-hero__tag {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 4px 10px;
	border-radius: 3px;
	background: rgba(224, 63, 84, 0.08);
	color: #e03f54;
	font-family: "Outfit", sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 14px;
	text-transform: uppercase;
}

.atelier-led-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	gap: 16px;
}

.atelier-led-hero__title {
	width: 100%;
	margin: 0;
	padding: 0;
	color: #111;
	font-family: "Outfit", sans-serif;
	font-size: 44px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0;
}

.atelier-led-hero__flourish {
	width: 100%;
	margin: 0;
	color: #e03f54;
	font-family: "Fraunces", Georgia, serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.4;
}

.atelier-led-hero__excerpt {
	width: 100%;
	margin: 0;
	color: #4a4a4a;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
}

.atelier-led-hero__excerpt > :first-child {
	margin-top: 0;
}

.atelier-led-hero__excerpt > :last-child {
	margin-bottom: 0;
}

.atelier-led-hero__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 100%;
	color: #111;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 13px;
	line-height: 17px;
}

.atelier-led-hero__author {
	color: #111;
	font-weight: 700;
}

.atelier-led-hero__reading-time {
	color: #888;
	font-weight: 400;
}

.atelier-led-hero__meta-separator {
	display: block;
	flex: 0 0 auto;
	width: 12px;
	height: 2px;
	background: #eaeaea;
}

.atelier-led-hero__cta {
	display: inline-flex;
	align-items: flex-start;
	max-width: 100%;
	padding: 0 0 4px;
	border: 0;
	border-bottom: 2px solid #111;
	color: #111;
	font-family: "Outfit", sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 16px;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease, border-color 180ms ease;
}

.atelier-led-hero__cta:hover,
.atelier-led-hero__cta:focus-visible {
	border-bottom-color: #e03f54;
	color: #e03f54;
	text-decoration: none;
}

.atelier-led-hero__cta:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.atelier-led-hero--reverse .atelier-led-hero__visual {
	grid-column: 2;
	grid-row: 1;
}

.atelier-led-hero--reverse .atelier-led-hero__content {
	grid-column: 1;
	grid-row: 1;
}

@media (max-width: 1024px) {
	.atelier-led-hero--stack-tablet .atelier-led-hero__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.atelier-led-hero--stack-tablet .atelier-led-hero__visual,
	.atelier-led-hero--stack-tablet .atelier-led-hero__content,
	.atelier-led-hero--stack-tablet.atelier-led-hero--reverse .atelier-led-hero__visual,
	.atelier-led-hero--stack-tablet.atelier-led-hero--reverse .atelier-led-hero__content {
		grid-column: 1;
		grid-row: auto;
	}

	.atelier-led-hero--stack-tablet.atelier-led-hero--stack-image-top .atelier-led-hero__visual {
		order: 1;
	}

	.atelier-led-hero--stack-tablet.atelier-led-hero--stack-image-top .atelier-led-hero__content {
		order: 2;
	}

	.atelier-led-hero--stack-tablet.atelier-led-hero--stack-image-bottom .atelier-led-hero__visual {
		order: 2;
	}

	.atelier-led-hero--stack-tablet.atelier-led-hero--stack-image-bottom .atelier-led-hero__content {
		order: 1;
	}
}

@media (max-width: 767px) {
	.atelier-led-hero--stack-mobile .atelier-led-hero__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.atelier-led-hero--stack-mobile .atelier-led-hero__visual,
	.atelier-led-hero--stack-mobile .atelier-led-hero__content,
	.atelier-led-hero--stack-mobile.atelier-led-hero--reverse .atelier-led-hero__visual,
	.atelier-led-hero--stack-mobile.atelier-led-hero--reverse .atelier-led-hero__content {
		grid-column: 1;
		grid-row: auto;
	}

	.atelier-led-hero--stack-mobile.atelier-led-hero--stack-image-top .atelier-led-hero__visual {
		order: 1;
	}

	.atelier-led-hero--stack-mobile.atelier-led-hero--stack-image-top .atelier-led-hero__content {
		order: 2;
	}

	.atelier-led-hero--stack-mobile.atelier-led-hero--stack-image-bottom .atelier-led-hero__visual {
		order: 2;
	}

	.atelier-led-hero--stack-mobile.atelier-led-hero--stack-image-bottom .atelier-led-hero__content {
		order: 1;
	}

	.atelier-led-hero__title {
		font-size: 32px;
	}

	.atelier-led-hero__meta {
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.atelier-led-hero__cta {
		transition: none;
	}
}
.alaune-section,
.alaune-section * {
	box-sizing: border-box;
}

.alaune-section {
	width: 100%;
	padding: 48px 80px 64px;
	background: #f9f9f9;
}

.alaune-container {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.alaune-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 0 0 8px;
	border-bottom: 1px solid #eaeaea;
}

.alaune-heading-group {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
	min-width: 0;
}

.alaune-heading,
.alaune-subtitle,
.alaune-card-title,
.alaune-card-description {
	margin: 0;
}

.alaune-heading {
	color: #111;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
}

.alaune-subtitle {
	color: #e03f54;
	font-family: "Fraunces", Georgia, serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.22;
}

.alaune-cta {
	flex: 0 0 auto;
	color: #111;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease;
}

.alaune-cta:hover,
.alaune-cta:focus-visible {
	color: #e03f54;
}

.alaune-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	width: 100%;
}

.alaune-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}

.alaune-image-wrap {
	position: relative;
	height: 300px;
	overflow: hidden;
	border-radius: 4px;
	background: #ececec;
}

.alaune-image-wrap > img,
.alaune-image-wrap > .alaune-image-link,
.alaune-image-wrap > .alaune-image-link img {
	display: block;
	width: 100%;
	height: 100%;
}

.alaune-image-wrap img {
	object-fit: cover;
	transition: transform 350ms ease;
}

.alaune-image-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: -3px;
}

.alaune-image-link:hover img,
.alaune-image-link:focus-visible img {
	transform: scale(1.03);
}

.alaune-card-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
}

.alaune-tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	padding: 4px 10px;
	border-radius: 3px;
	background: rgba(224, 63, 84, 0.08);
	color: #e03f54;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.27;
	text-transform: uppercase;
}

.alaune-card-title {
	width: 100%;
	color: #111;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
}

.alaune-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 180ms ease;
}

.alaune-card-title a:hover,
.alaune-card-title a:focus-visible {
	color: #e03f54;
}

.alaune-card-description {
	width: 100%;
	color: #4a4a4a;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

@media (max-width: 1024px) {
	.alaune-section {
		padding: 40px;
	}

	.alaune-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alaune-image-wrap {
		height: 280px;
	}
}

@media (max-width: 767px) {
	.alaune-section {
		padding: 32px 20px 40px;
	}

	.alaune-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.alaune-heading-group {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.alaune-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.alaune-image-wrap {
		height: 240px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.alaune-image-wrap img,
	.alaune-card-title a,
	.alaune-cta {
		transition: none;
	}
}
.longevite-widget,
.longevite-widget * {
	box-sizing: border-box;
}

.longevite-widget {
	width: 100%;
	background: #fdf8f7;
	padding: 80px;
}

.longevite-widget__inner {
	display: flex;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	gap: 64px;
	align-items: center;
}

.longevite-widget--image-left .longevite-widget__inner {
	flex-direction: row-reverse;
}

.longevite-widget__content {
	display: flex;
	flex: 0 0 480px;
	max-width: 480px;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.longevite-widget__eyebrow,
.longevite-widget__title,
.longevite-widget__quote,
.longevite-widget__description,
.longevite-widget__description p {
	margin: 0;
}

.longevite-widget__eyebrow {
	font-family: Outfit, Arial, sans-serif;
	font-size: 14px;
	font-weight: 900;
	line-height: 18px;
	text-transform: uppercase;
	color: #e03f54;
}

.longevite-widget__title {
	width: 100%;
	font-family: Outfit, Arial, sans-serif;
	font-size: 38px;
	font-weight: 800;
	line-height: 1.15;
	color: #111;
}

.longevite-widget__quote {
	width: 100%;
	font-family: Fraunces, Georgia, serif;
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.4;
	color: #4a4a4a;
}

.longevite-widget__description {
	width: 100%;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: #4a4a4a;
}

.longevite-widget__description > * + * {
	margin-top: 0.75em;
}

.longevite-widget__button-wrap {
	display: flex;
	width: 100%;
	justify-content: flex-start;
}

.longevite-widget__button {
	display: inline-flex;
	width: 280px;
	max-width: 100%;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border: 0;
	border-radius: 2px;
	background: #111;
	color: #fff;
	font-family: Outfit, Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.longevite-widget__button:hover,
.longevite-widget__button:focus-visible {
	background: #e03f54;
	color: #fff;
	text-decoration: none;
}

.longevite-widget__button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.longevite-widget__media {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	height: 450px;
	overflow: hidden;
	border-radius: 4px;
}

.longevite-widget__media img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 1024px) {
	.longevite-widget {
		padding: 56px 40px;
	}

	.longevite-widget__inner {
		gap: 40px;
	}

	.longevite-widget__content {
		flex-basis: 42%;
		max-width: 42%;
	}

	.longevite-widget__title {
		font-size: 34px;
	}

	.longevite-widget__media {
		height: 400px;
	}
}

@media (max-width: 767px) {
	.longevite-widget {
		padding: 40px 24px;
	}

	.longevite-widget__inner,
	.longevite-widget--image-left .longevite-widget__inner {
		flex-direction: column;
		gap: 32px;
		align-items: stretch;
	}

	.longevite-widget--mobile-image-first .longevite-widget__media {
		order: -1;
	}

	.longevite-widget__content {
		flex: 0 0 auto;
		width: 100%;
		max-width: 100% !important;
	}

	.longevite-widget__title {
		font-size: 30px;
	}

	.longevite-widget__quote {
		font-size: 18px;
	}

	.longevite-widget__media {
		width: 100%;
		height: 280px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.longevite-widget__button {
		transition: none;
	}
}
.cct-comparatifs {
	--cct-accent: #e03f54;
	--cct-category-color: var(--cct-accent);
	--cct-rating-active: var(--cct-accent);
	--cct-rating-empty: #eaeaea;
	--cct-star-size: 12px;
	box-sizing: border-box;
	width: 100%;
}

.cct-comparatifs *,
.cct-comparatifs *::before,
.cct-comparatifs *::after {
	box-sizing: border-box;
}

.cct-comparatifs__inner {
	width: 100%;
	margin-inline: auto;
}

.cct-comparatifs__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 8px;
	border-bottom: 0 solid transparent;
}

.cct-header-border-yes .cct-comparatifs__header {
	border-bottom-width: 1px;
	border-bottom-color: #eaeaea;
}

.cct-comparatifs__header-content {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
}

.cct-comparatifs__heading {
	margin: 0;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
}

.cct-comparatifs__subtitle {
	font-family: "Fraunces", Georgia, serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.22;
}

.cct-comparatifs__grid {
	display: grid;
	align-items: stretch;
}

.cct-comparatifs__card {
	display: flex;
	min-width: 0;
	height: 100%;
	min-height: 347px;
	flex-direction: column;
	align-items: stretch;
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 4px;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cct-comparatifs__media {
	position: relative;
	width: 100%;
	flex: 0 0 auto;
	overflow: hidden;
	background: #f4f4f4;
}

.cct-comparatifs__image {
	display: block;
	width: 100%;
	height: 100%;
	object-position: center;
}

.cct-comparatifs__content {
	display: flex;
	min-width: 0;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
}

.cct-comparatifs__meta {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.cct-comparatifs__category {
	min-width: 0;
	color: var(--cct-item-accent, var(--cct-category-color));
	font-family: "Outfit", Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.cct-comparatifs__rating {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
}

.cct-star {
	position: relative;
	display: inline-block;
	flex: 0 0 auto;
	width: var(--cct-star-size);
	height: var(--cct-star-size);
}

.cct-star svg {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.cct-star__base path {
	fill: none;
	stroke: var(--cct-rating-empty);
	stroke-width: 2.2;
	stroke-linejoin: round;
}

.cct-star__fill {
	position: absolute;
	inset: 0 auto 0 0;
	display: block;
	overflow: hidden;
}

.cct-star__fill svg {
	width: var(--cct-star-size);
	max-width: none;
}

.cct-star__fill path {
	fill: none;
	stroke: var(--cct-item-accent, var(--cct-rating-active));
	stroke-width: 2.2;
	stroke-linejoin: round;
}

.cct-comparatifs__product-title {
	margin: 0;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.28;
}

.cct-comparatifs__price {
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.31;
}

.cct-comparatifs__footer {
	display: flex;
	min-height: 24px;
	flex: 0 0 auto;
	align-items: center;
	border-top: 1px solid #eaeaea;
}

.cct-comparatifs__link {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 160ms ease;
}

.cct-comparatifs__link--static {
	cursor: default;
}

.cct-comparatifs__arrow {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	transition: transform 160ms ease;
}

.cct-comparatifs__link:hover .cct-comparatifs__arrow,
.cct-comparatifs__link:focus-visible .cct-comparatifs__arrow {
	transform: translateX(3px);
}

.cct-comparatifs__link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

@media (max-width: 767px) {
	.cct-comparatifs__header-content {
		align-items: flex-start;
		flex-direction: column;
	}

	.cct-comparatifs__heading {
		font-size: 23px;
	}

	.cct-comparatifs__subtitle {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cct-comparatifs__card,
	.cct-comparatifs__link,
	.cct-comparatifs__arrow {
		transition: none;
	}
}
.tdm-widget,
.tdm-widget * {
	box-sizing: border-box;
}

.tdm-widget {
	width: 100%;
	padding: 72px 80px;
	background: #fff;
	border-width: 1px 0;
	border-style: solid;
	border-color: #eaeaea;
}

.tdm-layout {
	--tdm-strip-width: 320px;
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	background: #fff;
}

.tdm-main {
	position: relative;
	isolation: isolate;
	flex: 1 1 auto;
	min-width: 0;
	min-height: 560px;
	overflow: hidden;
	background-color: #101d27;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.tdm-main::before {
	position: absolute;
	z-index: 0;
	inset: 0;
	content: "";
	pointer-events: none;
	background-color: #07131d;
	opacity: 0.22;
}

.tdm-overlay {
	--tdm-gradient-angle: 90deg;
	--tdm-gradient-start: #e03f54;
	--tdm-gradient-end: rgba(224, 63, 84, 0.8);
	position: absolute;
	z-index: 1;
	top: 72px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	min-height: 246px;
	padding: 24px;
	background: linear-gradient(var(--tdm-gradient-angle), var(--tdm-gradient-start) 0%, var(--tdm-gradient-end) 100%);
	box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.102);
	border-radius: 4px;
}

.tdm-headline {
	width: 100%;
	margin: 0;
	color: #fff;
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp(48px, 5vw, 72px);
	font-style: normal;
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: -0.02em;
	overflow-wrap: anywhere;
}

.tdm-strip {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 0 0 var(--tdm-strip-width);
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	width: var(--tdm-strip-width);
	min-width: 0;
	padding: 24px;
	gap: 16px;
	background: #e03f54;
}

.tdm-widget--strip-left .tdm-strip {
	order: -1;
}

.tdm-label {
	display: inline-flex;
	align-items: center;
	width: max-content;
	max-width: 100%;
	padding: 6px 12px;
	border-radius: 3px;
	background: #fff;
	color: #e03f54;
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.27;
	text-transform: uppercase;
}

.tdm-strip-content {
	display: flex;
	flex: 0 1 auto;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	min-width: 0;
	gap: 12px;
}

.tdm-teaser {
	width: 100%;
	margin: 0;
	color: #fff;
	font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.tdm-cta {
	display: inline-flex;
	align-items: center;
	width: max-content;
	max-width: 100%;
	padding: 0 0 4px;
	border: 0;
	border-bottom: 2px solid #fff;
	background: transparent;
	color: #fff;
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.23;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.tdm-cta:hover,
.tdm-cta:focus-visible {
	color: #fff;
	border-bottom-color: #fff;
	opacity: 0.78;
	text-decoration: none;
}

.tdm-cta:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

@media (max-width: 1024px) {
	.tdm-widget {
		padding: 48px 32px;
	}

	.tdm-layout {
		--tdm-strip-width: 280px;
	}

	.tdm-main {
		min-height: 500px;
	}

	.tdm-overlay {
		top: 48px;
		min-height: 220px;
	}

	.tdm-headline {
		font-size: clamp(44px, 6vw, 60px);
	}
}

@media (max-width: 767px) {
	.tdm-widget {
		padding: 32px 20px;
	}

	.tdm-layout {
		--tdm-strip-width: 100%;
		flex-direction: column;
	}

	.tdm-main {
		width: 100%;
		min-height: 420px;
	}

	.tdm-overlay {
		top: 32px;
		min-height: 0;
		padding: 20px;
	}

	.tdm-headline {
		font-size: clamp(38px, 11vw, 52px);
		line-height: 0.96;
	}

	.tdm-strip,
	.tdm-widget--strip-left .tdm-strip {
		order: 0;
		flex: 0 0 auto;
		width: 100%;
		min-height: 0;
	}
}
.mrew-section,
.mrew-section * {
	box-sizing: border-box;
}

.mrew-section {
	--mrew-divider-color: #eaeaea;
	--mrew-divider-width: 1px;
	--mrew-item-padding: 24px;
	width: 100%;
	padding: 64px 80px;
	background: #f9f9f9;
}

.mrew-container {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
}

.mrew-header {
	width: 100%;
	padding-bottom: 8px;
	border-bottom: 1px solid #eaeaea;
}

.mrew-header__content {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
}

.mrew-header__title,
.mrew-header__subtitle {
	margin: 0;
}

.mrew-header__title {
	font-family: "Outfit", Arial, sans-serif;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
	color: #111;
}

.mrew-header__subtitle {
	font-family: "Fraunces", Georgia, serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.4;
	color: #e03f54;
}

.mrew-items {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	column-gap: 32px;
	row-gap: 32px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mrew-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	min-width: 0;
	margin: 0;
	padding: 0 0 0 var(--mrew-item-padding);
	border-inline-start: var(--mrew-divider-width) solid var(--mrew-divider-color);
}

/* Un nouveau bloc de cinq recommence sans séparateur gauche. */
.mrew-item:nth-child(5n + 1) {
	padding-inline-start: 0;
	border-inline-start: 0;
}

.mrew-item__number {
	display: block;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 48px;
	font-weight: 900;
	line-height: 1.25;
	color: #e03f54;
}

.mrew-item__link {
	display: block;
	width: 100%;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.mrew-item__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	width: 100%;
	min-width: 0;
}

.mrew-item__category,
.mrew-item__title {
	display: block;
	width: 100%;
}

.mrew-item__category {
	font-family: "Outfit", Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	color: #e03f54;
}

.mrew-item__title {
	font-family: "Outfit", Arial, sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	color: #111;
	transition: color 160ms ease;
}

.mrew-item__link:hover .mrew-item__title,
.mrew-item__link:focus-visible .mrew-item__title {
	color: #e03f54;
}

.mrew-item__link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

@media (max-width: 1024px) {
	.mrew-section {
		padding: 48px 32px;
	}

	.mrew-items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mrew-item {
		padding-inline-start: var(--mrew-item-padding);
		border-inline-start: var(--mrew-divider-width) solid var(--mrew-divider-color);
	}

	.mrew-item:nth-child(odd) {
		padding-inline-start: 0;
		border-inline-start: 0;
	}
}

@media (max-width: 767px) {
	.mrew-section {
		padding: 36px 20px;
	}

	.mrew-header__content {
		align-items: flex-start;
		flex-direction: column;
	}

	.mrew-items {
		grid-template-columns: 1fr;
		row-gap: 0;
	}

	.mrew-item,
	.mrew-item:nth-child(odd) {
		padding: 24px 0 0;
		border-inline-start: 0;
		border-top: var(--mrew-divider-width) solid var(--mrew-divider-color);
	}

	.mrew-item:first-child {
		padding-top: 0;
		border-top: 0;
	}
}
.btn-newsletter,
.btn-newsletter * {
	box-sizing: border-box;
}

.btn-newsletter {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	min-height: 280px;
	padding: 80px;
	gap: 64px;
	background: #111111;
}

.btn-newsletter__copy {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	gap: 12px;
}

.btn-newsletter__eyebrow {
	font-family: "Outfit", sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	color: #e03f54;
}

.btn-newsletter__title {
	width: 100%;
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-size: 36px;
	font-weight: 900;
	line-height: 1.15;
	color: #ffffff;
}

.btn-newsletter__description,
.btn-newsletter__description p {
	margin: 0;
}

.btn-newsletter__description {
	width: 100%;
	font-family: "DM Sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.7);
}

.btn-newsletter__form-wrap {
	flex: 0 1 480px;
	width: 480px;
	max-width: 100%;
}

.btn-newsletter__form {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 16px;
}

.btn-newsletter__row {
	display: flex;
	align-items: stretch;
	width: 100%;
	gap: 12px;
}

.btn-newsletter__input {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 46px;
	padding: 12px 16px;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	outline: 0;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-newsletter__input::placeholder {
	color: rgba(255, 255, 255, 0.6);
	opacity: 1;
}

.btn-newsletter__input:focus {
	border-color: #e03f54;
	box-shadow: 0 0 0 2px rgba(224, 63, 84, 0.2);
}

.btn-newsletter__button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 14px 24px;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	white-space: nowrap;
	color: #ffffff;
	background: #e03f54;
	border: 0;
	border-radius: 2px;
	cursor: pointer;
	transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.btn-newsletter__button:hover,
.btn-newsletter__button:focus-visible {
	background: #c93247;
}

.btn-newsletter__button:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.btn-newsletter__button:active {
	transform: translateY(1px);
}

.btn-newsletter__button[disabled] {
	cursor: wait;
	opacity: 0.7;
}

.btn-newsletter__spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: btn-newsletter-spin 0.7s linear infinite;
}

.btn-newsletter__button.is-loading .btn-newsletter__button-label {
	display: none;
}

.btn-newsletter__button.is-loading .btn-newsletter__spinner {
	display: block;
}

.btn-newsletter__legal,
.btn-newsletter__legal p,
.btn-newsletter__consent {
	margin: 0;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 14px;
	color: rgba(255, 255, 255, 0.4);
}

.btn-newsletter__consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	cursor: pointer;
}

.btn-newsletter__consent input {
	flex: 0 0 auto;
	margin: 1px 0 0;
}

.btn-newsletter__consent a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.btn-newsletter__status {
	display: none;
	min-height: 18px;
	margin: -6px 0 0;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	line-height: 1.4;
}

.btn-newsletter__status:not(:empty) {
	display: block;
}

.btn-newsletter__status.is-success {
	color: #8fd6a3;
}

.btn-newsletter__status.is-error {
	color: #ff8292;
}

.btn-newsletter__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@keyframes btn-newsletter-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
	.btn-newsletter {
		flex-direction: column;
		align-items: flex-start;
		padding: 56px 48px;
		gap: 36px;
	}

	.btn-newsletter__form-wrap {
		flex-basis: auto;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.btn-newsletter {
		padding: 40px 24px;
		gap: 28px;
	}

	.btn-newsletter__title {
		font-size: 30px;
	}

	.btn-newsletter__row {
		flex-direction: column;
	}

	.btn-newsletter__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.btn-newsletter__button,
	.btn-newsletter__input {
		transition: none;
	}
}
.btfe-footer,
.btfe-footer *,
.btfe-footer *::before,
.btfe-footer *::after {
	box-sizing: border-box;
}

.btfe-footer {
	width: 100%;
	padding: 80px 80px 40px;
	background: #fff;
}

.btfe-footer__inner {
	display: flex;
	flex-direction: column;
	gap: 64px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.btfe-footer__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 64px;
	width: 100%;
}

.btfe-footer__brand {
	display: flex;
	flex: 0 1 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 360px;
	max-width: 100%;
}

.btfe-footer__brand-title {
	width: 100%;
	margin: 0;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 24px;
	font-weight: 900;
	font-style: normal;
	line-height: 1.25;
	text-transform: uppercase;
	color: #111;
}

.btfe-footer__brand-title a,
.btfe-footer__brand-link {
	color: inherit;
	text-decoration: none;
}

.btfe-footer__brand-description {
	width: 100%;
	margin: 0;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	color: #4a4a4a;
}

.btfe-footer__columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 150px));
	align-items: start;
	column-gap: 64px;
	row-gap: 40px;
	margin: 0;
}

.btfe-footer__column {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.btfe-footer__column-title {
	margin: 0;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 12px;
	font-weight: 900;
	font-style: normal;
	line-height: 1.25;
	text-transform: uppercase;
	color: #111;
}

.btfe-footer__column--1 .btfe-footer__column-title {
	color: #e03f54;
}

.btfe-footer__links,
.btfe-footer__legal-links {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.btfe-footer__links {
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.btfe-footer__links li,
.btfe-footer__legal-links li {
	margin: 0;
	padding: 0;
}

.btfe-footer__link {
	display: inline-block;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.3077;
	color: #4a4a4a;
	text-decoration: none;
	transition: color 160ms ease;
}

a.btfe-footer__link:hover,
a.btfe-footer__link:focus-visible {
	color: #e03f54;
}

.btfe-footer__divider {
	width: 100%;
	height: 0;
	border: 0;
	border-top: 1px solid #eaeaea;
}

.btfe-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	width: 100%;
}

.btfe-footer__copyright {
	min-width: 0;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.3333;
	color: #888;
}

.btfe-footer__copyright p {
	margin: 0;
}

.btfe-footer__legal {
	flex: 0 0 auto;
}

.btfe-footer__legal-links {
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 24px;
}

.btfe-footer__legal-link {
	display: inline-block;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.3333;
	white-space: nowrap;
	color: #888;
	text-decoration: none;
	transition: color 160ms ease;
}

a.btfe-footer__legal-link:hover,
a.btfe-footer__legal-link:focus-visible {
	color: #111;
}

.btfe-footer a:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.btfe-footer {
		padding: 64px 40px 36px;
	}

	.btfe-footer__inner {
		gap: 48px;
	}

	.btfe-footer__top {
		gap: 48px;
	}

	.btfe-footer__columns {
		column-gap: 32px;
	}
}

@media (max-width: 860px) {
	.btfe-footer__top {
		flex-direction: column;
	}

	.btfe-footer__brand {
		width: min(100%, 520px);
	}

	.btfe-footer__columns {
		width: 100%;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.btfe-footer {
		padding: 48px 24px 32px;
	}

	.btfe-footer__inner {
		gap: 40px;
	}

	.btfe-footer__top {
		gap: 40px;
	}

	.btfe-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 28px;
	}

	.btfe-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.btfe-footer__legal {
		width: 100%;
	}

	.btfe-footer__legal-links {
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}

@media (max-width: 520px) {
	.btfe-footer__columns {
		grid-template-columns: 1fr;
	}

	.btfe-footer__column {
		gap: 14px;
	}

	.btfe-footer__links {
		gap: 12px;
	}
}
.bt-category-banner,
.bt-category-banner * {
	box-sizing: border-box;
}

.bt-category-banner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding: 64px 80px 48px;
	gap: 20px;
	background: #fff;
}

.bt-category-banner__eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 14px;
}

.bt-category-banner__eyebrow-line {
	display: block;
	flex: 0 0 auto;
	width: 40px;
	height: 0;
	border: 0;
	border-top: 2px solid #e03f54;
}

.bt-category-banner__eyebrow-text {
	font-family: "Outfit", sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	line-height: 14px;
	text-transform: uppercase;
	color: #e03f54;
}

.bt-category-banner__text-row {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	width: 100%;
	gap: 48px;
}

.bt-category-banner__title {
	flex: 0 0 480px;
	max-width: 480px;
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-size: 56px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.267857;
	text-transform: uppercase;
	overflow-wrap: anywhere;
	color: #111;
}

.bt-category-banner__description {
	flex: 1 1 auto;
	min-width: 0;
	font-family: "DM Sans", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #4a4a4a;
}

.bt-category-banner__description > :first-child {
	margin-top: 0;
}

.bt-category-banner__description > :last-child {
	margin-bottom: 0;
}

.bt-category-banner__divider {
	width: 100%;
	height: 0;
	border: 0;
	border-top: 1px solid #eaeaea;
}

@media (max-width: 1024px) {
	.bt-category-banner {
		padding: 48px 40px 36px;
	}

	.bt-category-banner__text-row {
		align-items: flex-start;
		gap: 32px;
	}

	.bt-category-banner__title {
		flex-basis: 42%;
		max-width: 42%;
		font-size: 44px;
		line-height: 1.15;
	}
}

@media (max-width: 767px) {
	.bt-category-banner {
		padding: 32px 20px 28px;
	}

	.bt-category-banner__text-row {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.bt-category-banner__title {
		flex-basis: 100%;
		max-width: 100%;
		font-size: 36px;
		line-height: 1.15;
	}

	.bt-category-banner__description {
		font-size: 16px;
	}
}
.efc-filter-bar-container,
.efc-filter-bar-container * {
	box-sizing: border-box;
}

.efc-filter-bar-container {
	width: 100%;
}

.efc-filter-bar {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	border-bottom-style: solid;
	min-width: 0;
}

.efc-filter-chip {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: auto;
	margin: 0;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.efc-filter-chip:hover,
.efc-filter-chip:focus,
.efc-filter-chip:active {
	text-decoration: none;
}

.efc-filter-chip:focus-visible {
	outline: 2px solid;
	outline-offset: 2px;
}

.efc-filter-chip:active {
	transform: translateY(1px);
}

.efc-filter-empty {
	margin: 16px 0 0;
}

.efc-filter-target-hidden {
	display: none !important;
}

@media (max-width: 767px) {
	.efc-mobile-scroll .efc-filter-bar {
		justify-content: flex-start !important;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x proximity;
	}

	.efc-mobile-scroll .efc-filter-chip {
		scroll-snap-align: start;
	}

	.efc-mobile-wrap .efc-filter-bar {
		flex-wrap: wrap;
		overflow: visible;
	}

	.efc-hide-scrollbar-yes .efc-filter-bar {
		scrollbar-width: none;
	}

	.efc-hide-scrollbar-yes .efc-filter-bar::-webkit-scrollbar {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.efc-filter-chip {
		transition: none;
	}
}
.oai-article-grid,
.oai-article-grid * {
	box-sizing: border-box;
}

.oai-article-grid {
	width: 100%;
	padding: 0 0 64px;
}

.oai-article-grid__inner {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

.oai-article-grid__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 32px;
	row-gap: 48px;
}

.oai-article-grid__card {
	min-width: 0;
	background: transparent;
	overflow: hidden;
	transition-property: transform, box-shadow, border-color, background-color;
	transition-timing-function: ease;
	transition-duration: 250ms;
}

.oai-article-grid__link {
	position: relative;
	z-index: 1;
	pointer-events: auto;
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.oai-article-grid__link:hover,
.oai-article-grid__link:focus,
.oai-article-grid__link:visited {
	color: inherit;
	text-decoration: none;
}

.oai-article-grid__link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.oai-article-grid__image-link,
.oai-article-grid__title-link {
	color: inherit;
	text-decoration: none;
}

.oai-article-grid__image-link {
	display: block;
	width: 100%;
}

.oai-article-grid__title-link {
	display: inline;
}

.oai-article-grid__image-link:hover,
.oai-article-grid__image-link:focus,
.oai-article-grid__image-link:visited,
.oai-article-grid__title-link:hover,
.oai-article-grid__title-link:focus,
.oai-article-grid__title-link:visited {
	color: inherit;
	text-decoration: none;
}

.oai-article-grid__image-link:focus-visible,
.oai-article-grid__title-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.oai-article-grid__image {
	position: relative;
	width: 100%;
	height: 280px;
	flex: 0 0 auto;
	overflow: hidden;
	border-radius: 4px;
	background: #f2f4f7;
}

.oai-article-grid__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition-property: transform;
	transition-timing-function: ease;
	transition-duration: 250ms;
}

.oai-article-grid__image--empty {
	display: grid;
	place-items: center;
}

.oai-article-grid__placeholder-icon {
	font-size: 40px;
	opacity: 0.35;
}

.oai-article-grid__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 16px;
}

.oai-article-grid__category {
	display: inline-flex;
	align-items: center;
	width: auto;
	max-width: 100%;
	padding: 4px 10px;
	margin: 0 0 10px;
	border-radius: 3px;
	background: rgba(224, 63, 84, 0.08);
	color: #e03f54;
	font-family: "Outfit", sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.27;
	letter-spacing: 0;
	text-transform: uppercase;
}

.oai-article-grid__title {
	width: 100%;
	padding: 0;
	margin: 0 0 10px;
	color: #111;
	font-family: "Outfit", sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
	transition: color 200ms ease;
}

.oai-article-grid__excerpt {
	width: 100%;
	margin: 0 0 10px;
	color: #4a4a4a;
	font-family: "DM Sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
}

.oai-article-grid__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	width: 100%;
	padding-top: 4px;
	margin-top: auto;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.31;
}

.oai-article-grid__author {
	color: #111;
}

.oai-article-grid__reading {
	color: #888;
}

.oai-article-grid__separator {
	display: inline-block;
	width: 8px;
	height: 1px;
	background: #eaeaea;
}

.oai-article-grid__empty {
	padding: 24px;
	border: 1px dashed #ccd0d4;
	border-radius: 4px;
	background: #fff;
	color: #646970;
	text-align: center;
}

@media (max-width: 1024px) {
	.oai-article-grid__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.oai-article-grid__items {
		grid-template-columns: minmax(0, 1fr);
	}

	.oai-article-grid__image {
		height: 230px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.oai-article-grid__card,
	.oai-article-grid__image img,
	.oai-article-grid__title {
		transition: none !important;
	}
}
.epd-pagination {
	display: flex;
	width: 100%;
	box-sizing: border-box;
	justify-content: center;
	align-items: flex-start;
	padding: 0 80px 80px;
}

.epd-pagination__inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 0;
	flex-wrap: nowrap;
}

.epd-pagination__page,
.epd-pagination__nav {
	box-sizing: border-box;
	text-decoration: none;
}

.epd-pagination__page {
	display: inline-flex;
	flex: 0 0 36px;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border-radius: 50%;
	border: 0;
	background: transparent;
	color: #111111;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	transition-property: color, background-color, border-color, box-shadow, transform;
	transition-duration: 0.2s;
	transition-timing-function: ease;
}

.epd-pagination__page.is-current {
	background: #e03f54;
	color: #ffffff;
	cursor: default;
}

.epd-pagination__ellipsis {
	color: #111111;
	cursor: default;
	user-select: none;
}

.epd-pagination__nav {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	min-height: 36px;
	white-space: nowrap;
	color: #111111;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 17px;
	text-transform: uppercase;
	transition-property: color, opacity;
	transition-duration: 0.2s;
	transition-timing-function: ease;
}

.epd-pagination__nav.is-disabled {
	color: #888888;
	cursor: default;
}

.epd-pagination a:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

@media (max-width: 1024px) {
	.epd-pagination {
		padding-right: 32px;
		padding-bottom: 56px;
		padding-left: 32px;
	}

	.epd-pagination__inner {
		gap: 12px;
		flex-wrap: wrap;
	}
}

@media (max-width: 767px) {
	.epd-pagination {
		padding-right: 16px;
		padding-bottom: 40px;
		padding-left: 16px;
	}

	.epd-pagination__inner {
		gap: 8px;
		flex-wrap: wrap;
	}
}
.pah-article-header,
.pah-article-header * {
	box-sizing: border-box;
}

.pah-article-header {
	width: 100%;
	padding: 80px 80px 48px;
	background: #fff;
	color: #111;
}

.pah-article-header__inner {
	display: flex;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.pah-header-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	max-width: 100%;
	font-family: Outfit, Arial, sans-serif;
}

.pah-category-tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	background: rgba(224, 63, 84, 0.08);
	border-radius: 3px;
	color: #e03f54;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	white-space: nowrap;
}

.pah-meta-dot {
	width: 4px;
	height: 4px;
	flex: 0 0 4px;
	border-radius: 50%;
	background: #e03f54;
}

.pah-updated-date {
	color: #4a4a4a;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.pah-article-title {
	width: 100%;
	max-width: 1000px;
	margin: 0;
	color: #111;
	font-family: Fraunces, Georgia, serif;
	font-size: clamp(2.125rem, 4vw, 3.25rem);
	font-weight: 900;
	line-height: 1.1;
	text-align: center;
	text-wrap: balance;
}

.pah-article-deck {
	width: 100%;
	max-width: 800px;
	margin: 0;
	color: #4a4a4a;
	font-family: Lora, Georgia, serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

.pah-article-deck > :first-child {
	margin-top: 0;
}

.pah-article-deck > :last-child {
	margin-bottom: 0;
}

.pah-author-row {
	display: flex;
	max-width: 100%;
	align-items: center;
	justify-content: center;
	gap: 16px;
	font-family: Outfit, Arial, sans-serif;
}

.pah-author-photo {
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	border-radius: 50%;
	object-fit: cover;
}

.pah-author-meta-text {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}

.pah-author-name,
.pah-author-role,
.pah-reading-time {
	display: block;
}

.pah-author-name {
	color: #111;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.pah-author-role {
	color: #888;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.25;
}

.pah-author-separator {
	width: 1px;
	height: 16px;
	flex: 0 0 1px;
	background: #eaeaea;
}

.pah-reading-time {
	color: #888;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.25;
	white-space: nowrap;
}

.pah-article-toolbar {
	display: flex;
	width: 100%;
	max-width: 1280px;
	min-height: 60px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 24px;
	border-width: 1px 0;
	border-style: solid;
	border-color: #111;
	font-family: Outfit, Arial, sans-serif;
}

.pah-audio-player {
	--pah-progress: 0%;
	--pah-progress-bg: #eaeaea;
	--pah-progress-active: #111;
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 12px;
}

.pah-play-btn,
.pah-speed-badge,
.pah-ai-button {
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
}

.pah-play-btn {
	display: inline-flex;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #111;
	color: #fff;
	cursor: pointer;
}

.pah-play-btn:disabled,
.pah-speed-badge:disabled,
.pah-ai-button:disabled {
	cursor: not-allowed;
	opacity: 0.45;
}

.pah-play-btn:focus-visible,
.pah-speed-badge:focus-visible,
.pah-ai-button:focus-visible,
.pah-progress-range:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.pah-icon {
	width: 12px;
	height: 12px;
}

.pah-icon-pause {
	display: none;
}

.pah-audio-player.is-playing .pah-icon-play {
	display: none;
}

.pah-audio-player.is-playing .pah-icon-pause {
	display: block;
}

.pah-audio-label {
	color: #111;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	white-space: nowrap;
}

.pah-progress-container {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 8px;
}

.pah-progress-range {
	width: 160px;
	height: 4px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 2px;
	background: linear-gradient(to right, var(--pah-progress-active) 0 var(--pah-progress), var(--pah-progress-bg) var(--pah-progress) 100%);
	cursor: pointer;
}

.pah-progress-range::-webkit-slider-runnable-track {
	height: 4px;
	border-radius: 2px;
	background: transparent;
}

.pah-progress-range::-moz-range-track {
	height: 4px;
	border-radius: 2px;
	background: transparent;
}

.pah-progress-range::-webkit-slider-thumb {
	width: 12px;
	height: 12px;
	margin-top: -4px;
	border: 0;
	border-radius: 50%;
	background: var(--pah-progress-active);
	opacity: 0;
	-webkit-appearance: none;
}

.pah-progress-range::-moz-range-thumb {
	width: 12px;
	height: 12px;
	border: 0;
	border-radius: 50%;
	background: var(--pah-progress-active);
	opacity: 0;
}

.pah-progress-range:hover::-webkit-slider-thumb,
.pah-progress-range:focus-visible::-webkit-slider-thumb,
.pah-progress-range:hover::-moz-range-thumb,
.pah-progress-range:focus-visible::-moz-range-thumb {
	opacity: 1;
}

.pah-audio-time {
	min-width: 32px;
	color: #888;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.25;
	white-space: nowrap;
}

.pah-speed-badge {
	display: inline-flex;
	min-width: 27px;
	height: 20px;
	align-items: center;
	justify-content: center;
	padding: 3px 7px;
	border: 1px solid #eaeaea;
	border-radius: 4px;
	background: #f7f4f0;
	color: #111;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.pah-ai-summary {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.pah-ai-summary-label {
	color: #4a4a4a;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	white-space: nowrap;
}

.pah-ai-brand-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: 6px;
}

.pah-ai-button {
	display: inline-flex;
	min-height: 30px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 5px 9px;
	border: 1px solid rgba(17, 17, 17, 0.14);
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pah-ai-button:hover,
.pah-ai-button:focus-visible {
	border-color: rgba(17, 17, 17, 0.28);
	background: #f7f4f0;
	color: #111;
	text-decoration: none;
	transform: translateY(-1px);
}

.pah-ai-button-mark {
	display: inline-flex;
	width: 15px;
	height: 15px;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.pah-ai-button-name {
	display: inline-block;
}

@media (max-width: 1280px) {
	.pah-article-header {
		padding-right: 32px !important;
		padding-left: 32px !important;
	}
}

@media (max-width: 1024px) {
	.pah-article-toolbar {
		flex-wrap: wrap;
	}

	.pah-audio-player {
		flex: 1 1 420px;
	}

	.pah-ai-summary {
		margin-left: auto;
	}
}

@media (max-width: 767px) {
	.pah-article-header {
		padding: 40px 20px 32px !important;
	}

	.pah-article-toolbar {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}

	.pah-ai-brand-buttons {
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		justify-content: flex-start;
		-webkit-overflow-scrolling: touch;
	}

	.pah-header-meta {
		flex-wrap: wrap;
	}

	.pah-article-deck {
		font-size: 17px;
	}

	.pah-author-row {
		flex-wrap: wrap;
		text-align: left;
	}

	.pah-author-separator {
		display: none;
	}

	.pah-reading-time {
		width: 100%;
		padding-left: 56px;
	}

	.pah-article-toolbar {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
	}

	.pah-audio-player {
		width: 100%;
		flex: 0 1 auto;
		flex-wrap: wrap;
	}

	.pah-progress-container {
		min-width: 150px;
		flex: 1 1 160px;
	}

	.pah-progress-range {
		width: 100%;
	}

	.pah-ai-summary {
		width: 100%;
		justify-content: space-between;
		margin-left: 0;
	}
}

@media (max-width: 480px) {
	.pah-header-meta {
		row-gap: 8px;
	}

	.pah-meta-dot {
		display: none;
	}

	.pah-updated-date {
		width: 100%;
		text-align: center;
	}

	.pah-audio-label {
		flex: 1 1 calc(100% - 44px);
	}

	.pah-progress-container {
		width: calc(100% - 44px);
		flex-basis: calc(100% - 44px);
		margin-left: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pah-ai-button {
		transition: none;
	}
}
.aee-layout {
	--aee-accent: #e03f54;
	--aee-heading: #111111;
	--aee-text: #4a4a4a;
	--aee-muted: #888888;
	--aee-card-bg: #faf8f5;
	--aee-note-bg: #f7f4f0;
	--aee-table-bg: #ffffff;
	--aee-table-head-bg: #f7f4f0;
	--aee-border: #eaeaea;
	--aee-sidebar-width: 280px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: minmax(0, var(--aee-sidebar-width)) minmax(0, 680px);
	align-items: start;
	justify-content: center;
	column-gap: 48px;
	width: 100%;
	max-width: 1088px;
	margin-inline: auto;
	padding: 0 0 120px;
	color: var(--aee-text);
}

.aee-layout *,
.aee-layout *::before,
.aee-layout *::after {
	box-sizing: border-box;
}

.aee-layout--no-sidebar {
	grid-template-columns: minmax(0, 680px);
}

.aee-sidebar {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 32px;
	width: 100%;
	min-width: 0;
}

.aee-sidebar.is-sticky {
	position: sticky;
	top: 32px;
}

.aee-toc {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.aee-toc-title,
.aee-advisory-title {
	font-family: Outfit, Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.27;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.aee-toc-title {
	color: var(--aee-muted);
}

.aee-toc-links {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aee-toc-link {
	display: block;
	font-family: Outfit, Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.25;
	text-decoration: none;
	color: var(--aee-text);
	transition: color 160ms ease, transform 160ms ease;
}

.aee-toc-link:hover,
.aee-toc-link:focus-visible,
.aee-toc-link.is-active {
	color: var(--aee-accent);
}

.aee-toc-link.is-active {
	font-weight: 700;
}

.aee-toc-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.aee-advisory {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
	background: var(--aee-note-bg);
	border: 1px solid var(--aee-border);
	border-radius: 4px;
}

.aee-advisory-title {
	color: var(--aee-accent);
}

.aee-advisory-text {
	margin: 0;
	font-family: Lora, Georgia, serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--aee-text);
}

.aee-reading-column {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 32px;
	width: 100%;
	min-width: 0;
}

.aee-summary-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 16px;
	padding: 24px;
	background: var(--aee-card-bg);
	border-left: 3px solid var(--aee-accent);
	border-radius: 0 4px 4px 0;
}

.aee-summary-heading {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.aee-summary-title {
	margin: 0;
	font-family: Outfit, Arial, sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
	color: var(--aee-heading);
}

.aee-summary-subtitle {
	font-family: Outfit, Arial, sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.27;
	color: var(--aee-muted);
}

.aee-summary-bullets {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aee-summary-bullets li {
	position: relative;
	margin: 0;
	padding-left: 17px;
	font-family: Outfit, Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--aee-text);
}

.aee-summary-bullets li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 800;
	color: var(--aee-accent);
}

.aee-figure {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
}

.aee-main-illustration {
	overflow: hidden;
	width: 100%;
	height: 420px;
	background: var(--aee-card-bg);
	border-radius: 4px;
}

.aee-main-illustration img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.aee-caption {
	margin: 0;
	font-family: Outfit, Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.25;
	color: var(--aee-muted);
}

.aee-intro,
.aee-body-text {
	scroll-margin-top: 24px;
}

.aee-intro {
	font-family: Lora, Georgia, serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--aee-heading);
}

.aee-intro > *:first-child::first-letter {
	float: left;
	margin: 0.03em 0.12em 0 0;
	font-family: Fraunces, Georgia, serif;
	font-size: 4.25em;
	font-weight: 900;
	line-height: 0.78;
	color: var(--aee-accent);
}

.aee-body-text {
	font-family: Lora, Georgia, serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--aee-heading);
}

.aee-intro > :first-child,
.aee-body-text > :first-child {
	margin-top: 0;
}

.aee-intro > :last-child,
.aee-body-text > :last-child {
	margin-bottom: 0;
}

.aee-pull-quote {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 8px 0 8px 24px;
	border-left: 3px solid var(--aee-accent);
}

.aee-quote-text {
	font-family: Fraunces, Georgia, serif;
	font-size: 22px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.4;
	color: var(--aee-heading);
}

.aee-quote-author {
	font-family: Outfit, Arial, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	color: var(--aee-muted);
}

.aee-table-wrap {
	overflow: hidden;
	width: 100%;
	background: var(--aee-table-bg);
	border: 1px solid var(--aee-border);
	border-radius: 4px;
}

.aee-table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	background: transparent;
}

.aee-table th,
.aee-table td {
	padding: 16px;
	border: 0;
	border-bottom: 1px solid var(--aee-border);
	vertical-align: middle;
	text-align: left;
	background: transparent;
}

.aee-table thead th {
	font-family: Outfit, Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	color: var(--aee-heading);
	background: var(--aee-table-head-bg);
}

.aee-table thead th:nth-child(1),
.aee-table thead th:nth-child(2) {
	width: 32%;
}

.aee-table thead th:nth-child(3),
.aee-table thead th:nth-child(4) {
	width: 18%;
}

.aee-table thead th:last-child,
.aee-table tbody td:last-child {
	text-align: right;
}

.aee-table tbody th {
	font-family: Outfit, Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.28;
	color: var(--aee-heading);
}

.aee-table tbody td {
	font-family: Lora, Georgia, serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.28;
	color: var(--aee-text);
}

.aee-table tbody td:nth-child(3) {
	font-family: Outfit, Arial, sans-serif;
	font-weight: 600;
	color: var(--aee-heading);
}

.aee-table tbody td:last-child strong {
	font-family: Outfit, Arial, sans-serif;
	font-weight: 800;
	color: var(--aee-accent);
}

.aee-table tbody tr:last-child > * {
	border-bottom: 0;
}

@media (max-width: 1024px) {
	.aee-layout {
		--aee-sidebar-width: 240px;
		grid-template-columns: minmax(0, var(--aee-sidebar-width)) minmax(0, 1fr);
		column-gap: 32px;
	}
}

@media (max-width: 767px) {
	.aee-layout,
	.aee-layout--no-sidebar {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 32px;
		padding-bottom: 72px;
	}

	.aee-sidebar.is-sticky {
		position: static;
	}

	.aee-summary-card {
		padding: 20px;
	}

	.aee-main-illustration {
		height: min(62vw, 420px);
	}

	.aee-intro {
		font-size: 17px;
	}

	.aee-intro > *:first-child::first-letter {
		font-size: 3.7em;
	}

	.aee-body-text {
		font-size: 16px;
	}

	.aee-quote-text {
		font-size: 20px;
	}

	.aee-table-wrap {
		overflow: visible;
		border: 0;
		background: transparent;
	}

	.aee-table,
	.aee-table thead,
	.aee-table tbody,
	.aee-table tr,
	.aee-table th,
	.aee-table td {
		display: block;
		width: 100%;
	}

	.aee-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.aee-table tbody {
		display: grid;
		gap: 16px;
	}

	.aee-table tbody tr {
		overflow: hidden;
		background: var(--aee-table-bg);
		border: 1px solid var(--aee-border);
		border-radius: 4px;
	}

	.aee-table tbody th,
	.aee-table tbody td,
	.aee-table tbody td:last-child {
		display: grid;
		grid-template-columns: minmax(100px, 38%) minmax(0, 1fr);
		gap: 16px;
		padding: 13px 16px;
		text-align: right;
	}

	.aee-table tbody th::before,
	.aee-table tbody td::before {
		content: attr(data-label);
		font-family: Outfit, Arial, sans-serif;
		font-size: 11px;
		font-weight: 700;
		line-height: 1.3;
		text-align: left;
		text-transform: uppercase;
		color: var(--aee-muted);
	}
}

@media (prefers-reduced-motion: reduce) {
	.aee-toc-link {
		transition: none;
	}
}
.bt-ai-assistant,
.bt-ai-assistant * {
	box-sizing: border-box;
}

.bt-ai-assistant {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	min-height: 503px;
	padding: 80px;
	gap: 32px;
	background: #fff;
}

.bt-ai-assistant__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 800px;
	gap: 16px;
}

.bt-ai-assistant__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 3px;
	background: rgba(201, 169, 110, 0.07);
	color: #c9a96e;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.bt-ai-assistant__title {
	width: 100%;
	margin: 0;
	color: #111;
	font-family: "Fraunces", Georgia, serif;
	font-size: 42px;
	font-weight: 400;
	line-height: 1.238;
	text-align: center;
}

.bt-ai-assistant__form {
	width: 100%;
	max-width: 860px;
	margin: 0;
}

.bt-ai-assistant__input-shell {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 60px;
	padding: 18px 24px;
	gap: 16px;
	border: 1px solid #c9a96e;
	border-radius: 100px;
	background: #faf8f5;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.bt-ai-assistant__input-shell:focus-within {
	border-color: #a8813f;
	box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.bt-ai-assistant__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #c9a96e;
	font-size: 24px;
	line-height: 1;
}

.bt-ai-assistant__icon svg,
.bt-ai-assistant__icon i {
	display: block;
	width: 100%;
	height: 100%;
}

.bt-ai-assistant__input {
	min-width: 0;
	width: 100%;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	color: #4a4a4a;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
	appearance: none;
}

.bt-ai-assistant__input::-webkit-search-cancel-button {
	cursor: pointer;
}

.bt-ai-assistant__input::placeholder {
	color: #4a4a4a;
	opacity: 1;
}

.bt-ai-assistant__input:focus {
	border: 0;
	outline: 0;
	box-shadow: none;
}

.bt-ai-assistant__suggestions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	max-width: 1280px;
	gap: 12px;
}

.bt-ai-assistant__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 31px;
	padding: 8px 16px;
	border: 1px solid #eaeaea;
	border-radius: 100px;
	background: #fff;
	color: #4a4a4a;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.bt-ai-assistant__chip:hover,
.bt-ai-assistant__chip:focus-visible {
	border-color: #c9a96e;
	background: #faf8f5;
	color: #111;
	transform: translateY(-1px);
}

.bt-ai-assistant__chip:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.bt-ai-assistant__footer {
	width: 100%;
	max-width: 600px;
	margin: 0;
	color: #888;
	font-family: "Outfit", Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.25;
	text-align: center;
}

.bt-ai-assistant__sr-only {
	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;
}

@media (max-width: 1024px) {
	.bt-ai-assistant {
		padding: 64px 32px;
	}
}

@media (max-width: 767px) {
	.bt-ai-assistant {
		min-height: auto;
		padding: 48px 20px;
		gap: 24px;
	}

	.bt-ai-assistant__title {
		font-size: 34px;
		line-height: 1.24;
	}

	.bt-ai-assistant__input-shell {
		padding: 16px 18px;
		gap: 12px;
	}

	.bt-ai-assistant__suggestions {
		gap: 8px;
	}
}

@media (max-width: 479px) {
	.bt-ai-assistant__title {
		font-size: 30px;
		line-height: 1.27;
	}

	.bt-ai-assistant__input {
		font-size: 15px;
	}

	.bt-ai-assistant__chip {
		padding-right: 13px;
		padding-left: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bt-ai-assistant__input-shell,
	.bt-ai-assistant__chip {
		transition: none;
	}
}
.aieb-block,
.aieb-block *,
.aieb-block *::before,
.aieb-block *::after {
	box-sizing: border-box;
}

.aieb-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 64px 80px;
	gap: 32px;
	background: #fff;
	border-bottom: 1px solid #eaeaea;
}

.aieb-query-pill,
.aieb-refine-form {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 800px;
}

.aieb-query-pill {
	padding: 10px 24px;
	gap: 12px;
	background: #fff;
	border: 1px solid #c9a96e;
	border-radius: 100px;
}

.aieb-query-icon,
.aieb-refine-icon,
.aieb-product-link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1;
}

.aieb-query-icon {
	width: 18px;
	height: 18px;
	color: #c9a96e;
	font-size: 16px;
}

.aieb-query-icon svg,
.aieb-refine-icon svg,
.aieb-product-link-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.aieb-query-text {
	min-width: 0;
	color: #111;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
}

.aieb-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	max-width: 960px;
	padding: 32px;
	gap: 28px;
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(17, 17, 17, 0.02);
}

.aieb-summary {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.aieb-title {
	margin: 0;
	color: #111;
	font-family: "Fraunces", Georgia, serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.25;
}

.aieb-description,
.aieb-description p {
	color: #4a4a4a;
	font-family: "Lora", Georgia, serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
}

.aieb-description p {
	margin: 0;
}

.aieb-description p + p {
	margin-top: 0.75em;
}

.aieb-products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 20px;
	width: 100%;
}

.aieb-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 8px;
}

.aieb-product-image {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
	object-position: center;
}

.aieb-product-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: stretch;
	padding: 16px;
	gap: 8px;
}

.aieb-product-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.aieb-product-title {
	margin: 0;
	color: #111;
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	font-weight: 800;
	line-height: 19px;
}

.aieb-product-price {
	flex: 0 0 auto;
	color: #e03f54;
	font-family: "Outfit", sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 16px;
}

.aieb-product-description {
	margin: 0;
	color: #4a4a4a;
	font-family: "Lora", Georgia, serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
}

.aieb-product-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 4px;
	margin-top: auto;
	padding-top: 8px;
	color: #e03f54;
	font-family: "Outfit", sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 15px;
	text-decoration: none;
}

.aieb-product-link:hover,
.aieb-product-link:focus {
	color: #e03f54;
	text-decoration: underline;
}

.aieb-product-link-icon {
	width: 12px;
	height: 12px;
	font-size: 10px;
}

.aieb-sources-legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 16px;
	border-top: 1px solid #eaeaea;
}

.aieb-sources-wrap,
.aieb-source-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.aieb-sources-wrap {
	gap: 16px;
	min-width: 0;
}

.aieb-source-list {
	gap: 16px;
}

.aieb-sources-label {
	color: #888;
	font-family: "Outfit", sans-serif;
	font-size: 11px;
	font-weight: 800;
	line-height: 14px;
	text-transform: uppercase;
}

.aieb-source-item {
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.aieb-source-item:not(:last-child)::after {
	width: 4px;
	height: 4px;
	content: "";
	background: #888;
	border-radius: 50%;
}

.aieb-source-link {
	color: #e03f54;
	font-family: "Outfit", sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 16px;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.aieb-source-link:hover,
.aieb-source-link:focus {
	color: #e03f54;
	text-decoration-thickness: 2px;
}

.aieb-legal {
	flex: 0 1 auto;
	margin: 0;
	color: #888;
	font-family: "Outfit", sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 14px;
	text-align: right;
}

.aieb-refine-form {
	gap: 12px;
	padding: 14px 24px;
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 100px;
}

.aieb-refine-input {
	min-width: 0;
	width: 100%;
	padding: 0;
	color: #888;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	outline: 0;
}

.aieb-refine-input::placeholder {
	color: #888;
	opacity: 1;
}

.aieb-refine-input::-webkit-search-cancel-button {
	appearance: none;
}

.aieb-refine-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	padding: 0;
	color: #c9a96e;
	font-size: 16px;
	background: transparent;
	border: 0;
	border-radius: 50%;
	box-shadow: none;
	cursor: pointer;
}

.aieb-refine-submit:hover,
.aieb-refine-submit:focus {
	color: #c9a96e;
	background: transparent;
	box-shadow: none;
	transform: translateY(-1px);
}

.aieb-refine-input:focus-visible,
.aieb-refine-submit:focus-visible,
.aieb-product-link:focus-visible,
.aieb-source-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.aieb-screen-reader {
	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;
}

@media (max-width: 1024px) {
	.aieb-block {
		padding: 48px 32px;
	}

	.aieb-sources-legal {
		align-items: flex-start;
		flex-direction: column;
	}

	.aieb-legal {
		text-align: left;
	}
}

@media (max-width: 767px) {
	.aieb-block {
		padding: 32px 16px;
		gap: 24px;
	}

	.aieb-card {
		padding: 22px 18px;
		gap: 22px;
	}

	.aieb-products {
		grid-template-columns: 1fr;
	}

	.aieb-query-pill,
	.aieb-refine-form {
		padding-right: 18px;
		padding-left: 18px;
	}

	.aieb-source-list,
	.aieb-sources-wrap {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.aieb-source-item {
		gap: 0;
	}

	.aieb-source-item:not(:last-child)::after {
		display: none;
	}
}

/* External AI summary service selector. */
@media (max-width: 640px) {
	.pah-ai-summary {
		align-items: flex-start;
		flex-direction: column;
	}

	.pah-ai-brand-buttons {
		justify-content: flex-start;
	}
}

.pah-audio-player.is-loading .pah-play-btn,
.pah-audio-player.is-loading .pah-speed-badge {
	cursor: wait;
	opacity: 0.55;
}

.pah-audio-player.is-loading .pah-audio-label::after {
	content: "";
	display: inline-block;
	width: 0.8em;
	height: 0.8em;
	margin-left: 0.55em;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	vertical-align: -0.1em;
	animation: beautifultech-audio-spin 0.8s linear infinite;
}

.pah-audio-player.is-error .pah-audio-label {
	color: #b42318;
	white-space: normal;
}

.pah-play-btn:disabled,
.pah-speed-badge:disabled,
.pah-progress-range:disabled {
	cursor: not-allowed;
	opacity: 0.45;
}

@keyframes beautifultech-audio-spin {
	to { transform: rotate(360deg); }
}

/* Mobile header hardening: keep the logo and action buttons in separate,
 * predictable areas and make the navigation state visible when JavaScript
 * toggles .is-menu-open. */
.bth-header__logo {
	flex: 1 1 auto;
	overflow: hidden;
}

.bth-header__meta {
	flex: 0 0 auto;
	margin-left: auto;
}

@media (max-width: 767px) {
	.bth-breakpoint-1200 .bth-header__top,
	.bth-breakpoint-1024 .bth-header__top,
	.bth-breakpoint-767 .bth-header__top {
		min-height: 68px;
		padding: 14px 16px !important;
	}

	.bth-header__logo-image {
		width: 180px;
		max-width: calc(100vw - 112px) !important;
	}

	.bth-header__logo-text {
		display: block;
		overflow: hidden;
		font-size: 20px;
		line-height: 1.2;
		text-overflow: ellipsis;
	}

	.bth-header__meta {
		gap: 4px;
	}

	.bth-header__search-toggle,
	.bth-header__search-link,
	.bth-header__menu-toggle {
		width: 36px;
		height: 36px;
	}

	.bth-header__search-icon {
		width: 18px;
		height: 18px;
	}

	.bth-breakpoint-1200 .bth-header__nav-row,
	.bth-breakpoint-1024 .bth-header__nav-row,
	.bth-breakpoint-767 .bth-header__nav-row {
		width: 100%;
		padding: 8px 16px 20px !important;
	}

	.bth-breakpoint-1200 .bth-header__search-panel,
	.bth-breakpoint-1024 .bth-header__search-panel,
	.bth-breakpoint-767 .bth-header__search-panel {
		padding: 16px !important;
	}
}

/* Mobile audio and AI toolbar: ordered, compact two-block layout. */
@media (max-width: 767px) {
	.pah-article-toolbar {
		gap: 20px;
		padding: 16px !important;
	}

	.pah-audio-player {
		display: grid;
		grid-template-columns: 28px minmax(0, 1fr) auto;
		grid-template-areas:
			"play label speed"
			". progress progress";
		width: 100%;
		align-items: center;
		column-gap: 12px;
		row-gap: 10px;
	}

	.pah-play-btn {
		grid-area: play;
	}

	.pah-audio-label {
		grid-area: label;
		min-width: 0;
		white-space: normal;
	}

	.pah-speed-badge {
		grid-area: speed;
		margin: 0;
	}

	.pah-progress-container {
		grid-area: progress;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		width: 100%;
		min-width: 0;
		margin: 0;
		gap: 8px;
	}

	.pah-progress-range {
		width: 100%;
		min-width: 0;
	}

	.pah-audio-time:empty {
		display: none;
	}

	.pah-ai-summary {
		display: flex;
		width: 100%;
		align-items: stretch;
		flex-direction: column;
		justify-content: flex-start;
		gap: 10px;
		margin-left: 0;
	}

	.pah-ai-summary-label {
		font-size: 11px;
		white-space: normal;
	}

	.pah-ai-brand-buttons {
		display: flex;
		width: 100%;
		max-width: none;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		gap: 4px;
		overflow: visible;
	}

	.pah-ai-button {
		min-width: 0;
		min-height: 28px;
		flex: 0 1 auto;
		gap: 3px;
		padding: 4px 5px;
		font-size: 9px;
	}

	.pah-ai-button-mark {
		width: 11px;
		height: 11px;
		flex: 0 0 11px;
		font-size: 10px;
	}
}

@media (max-width: 340px) {
	.pah-article-toolbar {
		padding-right: 12px !important;
		padding-left: 12px !important;
	}

	.pah-ai-brand-buttons {
		gap: 3px;
	}

	.pah-ai-button {
		gap: 2px;
		padding-right: 4px;
		padding-left: 4px;
		font-size: 8.5px;
	}
}
