/* Phocea — design tokens.
   Every top-level Phocea section must be listed here: a section left out gets
   no custom properties at all, so `var(--phocea-navy-dark)` resolves to
   nothing and its dark elements silently render as invisible/unstyled. */
.phocea-header, .phocea-hero, .phocea-news, .phocea-footer, .phocea-article,
.phocea-engage, .phocea-comments, .phocea-related, .phocea-archive-hero {
	--phocea-steel: #5D8CAE;
	--phocea-steel-light: #7BB0D2;
	--phocea-navy-dark: #10181f;
	--phocea-ink: #1b1b1b;
	--phocea-bg-light: #f6f7f8;
	--phocea-muted: #62727a;
	--phocea-font-heading: 'Special Gothic Expanded One', Arial, sans-serif;
	--phocea-font-body: 'Satoshi', Arial, sans-serif;
	--phocea-hover: #9FCBE6;
	--phocea-hover-on-light: #3E6884;
	box-sizing: border-box;
}
.phocea-header *, .phocea-hero *, .phocea-news *, .phocea-footer *, .phocea-article *,
.phocea-engage *, .phocea-comments * {
	box-sizing: border-box;
}

/* The article template is a standalone document (no theme chrome), so it owns
   the page-level reset the theme would normally provide. */
body.phocea-single {
	margin: 0;
	background: #fff;
	font-family: var(--phocea-font-body, 'Satoshi', Arial, sans-serif);
	-webkit-font-smoothing: antialiased;
}

/* ---------- Header ---------- */
.phocea-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 20px 48px;
	background: none;
}
.phocea-header__inner {
	max-width: 1360px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.phocea-header__logo {
	display: flex;
	align-items: center;
}

/* Shared inline SVG logo: recolors via `color` (paths use fill="currentColor") */
.phocea-logo {
	display: inline-flex;
	align-items: center;
	color: inherit;
}
/* The shipped logo/icon SVGs don't hardcode fill="currentColor" on their
   paths (Illustrator export), so force it here — except the .st0/.st1
   classes, which are the letterforms' negative/hidden shapes and must stay
   untouched (fill:none / display:none) or the glyphs render as solid blobs. */
.phocea-logo svg :is(path, polygon, rect, circle, ellipse):not(.st0):not(.st1) {
	fill: currentColor;
}
.phocea-logo svg,
.phocea-logo img {
	display: block;
	height: 30px;
	width: auto;
	fill: currentColor;
}
.phocea-header__nav {
	display: flex;
	align-items: center;
	gap: 4px;
	background: rgba(93, 140, 174, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	padding: 6px;
	flex-wrap: wrap;
}
.phocea-header__nav-link {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.3px;
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	padding: 10px 18px;
	border-radius: 999px;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.phocea-header__nav-link.is-active {
	background: var(--phocea-steel-light);
	color: #fff;
}
.phocea-header__nav-link.is-active:hover {
	background: var(--phocea-hover);
	color: var(--phocea-navy-dark);
}
.phocea-header__nav-link:not(.is-active):hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}
.phocea-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}
.phocea-header__account {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}
.phocea-header__account:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: #fff;
}
.phocea-header__subscribe {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 13px;
	color: #fff;
	background: var(--phocea-navy-dark);
	border: 1px solid var(--phocea-navy-dark);
	border-radius: 999px;
	padding: 12px 24px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.phocea-header__subscribe:hover {
	background: var(--phocea-hover);
	border-color: var(--phocea-hover);
	color: var(--phocea-navy-dark);
}

/* ---------- Hero ---------- */
.phocea-hero {
	position: relative;
	min-height: 800px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 0 24px 96px;
	overflow: hidden;
	background-color: var(--phocea-navy-dark);
}
.phocea-hero__bg {
	position: absolute;
	inset: 0;
}
/* Specificity bumped (ancestor class added) to beat Elementor's own global
   `.elementor img { height: auto; }` reset (frontend.min.css) — same
   specificity tier as a bare `.foo img` rule, tied on source order, and
   Elementor's stylesheet loads after ours. */
.phocea-hero .phocea-hero__bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.phocea-hero__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 24, 31, 0) 0%, rgba(16, 24, 31, 0.35) 45%, rgba(10, 14, 18, 0.92) 82%, rgba(6, 9, 12, 1) 100%);
}
.phocea-hero__content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
}
.phocea-hero__badges {
	display: flex;
	gap: 10px;
}
.phocea-badge {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #fff;
	background: rgba(93, 140, 174, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	padding: 7px 16px;
}
.phocea-hero__title {
	font-family: var(--phocea-font-heading);
	font-weight: 400;
	font-size: 42px;
	line-height: 1.22;
	color: #fff;
	margin: 0;
}
.phocea-hero__title-link {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.phocea-hero__title-link:hover {
	color: var(--phocea-hover);
	text-decoration: underline;
}
.phocea-hero__description {
	font-family: var(--phocea-font-body);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	max-width: 700px;
}
.phocea-hero__meta {
	font-family: var(--phocea-font-body);
	font-weight: 600;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}
.phocea-hero__scroll {
	position: absolute;
	bottom: 56px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1.5px solid rgba(255, 255, 255, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

/* ---------- News grid ---------- */
.phocea-news {
	background: var(--phocea-bg-light);
	padding: 72px 48px 96px;
}
.phocea-news__header {
	max-width: 1360px;
	margin: 0 auto 36px;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
}
.phocea-news__title {
	font-family: var(--phocea-font-heading);
	font-weight: 400;
	font-size: 32px;
	color: var(--phocea-ink);
	margin: 0;
}
.phocea-news__see-all {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.4px;
	color: var(--phocea-steel);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}
.phocea-news__see-all:hover {
	color: var(--phocea-hover-on-light);
	text-decoration: underline;
}
.phocea-news__grid {
	max-width: 1360px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* Cards: the whole tile is the article photo, with a bottom-to-top dark
   gradient overlay so the white text stays readable directly on top of it. */
.phocea-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 12px;
	min-height: 310px;
	padding: 16px;
	border-radius: 20px;
	overflow: hidden;
	background-color: #1b1b1b;
	text-decoration: none;
	color: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* Same specificity bump as .phocea-hero__bg img, see comment above. */
.phocea-news .phocea-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.phocea-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
	pointer-events: none;
}
.phocea-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.phocea-card:hover .phocea-card__title {
	color: var(--phocea-hover);
}
.phocea-card:hover .phocea-card__arrow {
	color: var(--phocea-hover);
}
.phocea-card > *:not(.phocea-card__img) {
	position: relative;
	z-index: 1;
}
.phocea-card__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 85px;
	padding: 7px 16px;
	border-radius: 100px;
	background: linear-gradient(180deg, rgba(168, 226, 255, 0.5) 0%, rgba(129, 187, 216, 0.5) 100%);
	color: #fff;
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.2px;
	text-transform: uppercase;
}
.phocea-card__title {
	font-family: var(--phocea-font-heading);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
	color: #fff;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s ease;
}
.phocea-card__footer {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.phocea-card__meta {
	font-family: var(--phocea-font-body);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
	color: #fff;
	margin: 0;
}
.phocea-card__arrow {
	display: flex;
	flex-shrink: 0;
	color: #fff;
	transition: color 0.2s ease;
}

/* ---------- Footer ---------- */
.phocea-footer {
	background: #eef0f1;
	padding: 72px 48px;
}
.phocea-footer__inner {
	max-width: 1360px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 48px;
}
.phocea-footer__logo {
	margin-bottom: 16px;
}
.phocea-footer__logo .phocea-logo svg,
.phocea-footer__logo .phocea-logo img {
	height: 32px;
}
.phocea-footer__desc {
	font-family: var(--phocea-font-body);
	font-size: 14px;
	line-height: 1.6;
	color: var(--phocea-muted);
	max-width: 360px;
	margin: 0;
}
.phocea-footer__col-title {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.4px;
	color: var(--phocea-steel);
	margin: 0 0 20px;
}
.phocea-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.phocea-footer__links a {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 14px;
	color: var(--phocea-ink);
	text-decoration: none;
	transition: color 0.2s ease;
}
.phocea-footer__links a:hover {
	color: var(--phocea-hover-on-light);
}

.phocea-footer__bottom {
	max-width: 1360px;
	margin: 56px auto 0;
	padding-top: 24px;
	border-top: 1px solid rgba(27, 27, 27, 0.12);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: var(--phocea-font-body);
	font-size: 12px;
	color: var(--phocea-muted);
}
.phocea-footer__bottom a {
	color: var(--phocea-muted);
	text-decoration: none;
	transition: color 0.2s ease;
}
.phocea-footer__bottom a:hover {
	color: var(--phocea-hover-on-light);
}

/* ==========================================================================
   Archive page (category / tag)
   ========================================================================== */

/* Same standalone-document, dark-band-hero pattern as the article page's
   "no image" variant — a category has no photo, so this is the whole hero. */
body.phocea-archive {
	margin: 0;
	background: #fff;
	font-family: var(--phocea-font-body, 'Satoshi', Arial, sans-serif);
	-webkit-font-smoothing: antialiased;
}
.phocea-archive-hero {
	background: var(--phocea-navy-dark);
	padding: 160px 48px 56px;
}
.phocea-archive-hero__inner {
	max-width: 1360px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}
.phocea-archive-hero__title {
	font-family: var(--phocea-font-heading);
	font-weight: 400;
	font-size: 44px;
	line-height: 1.16;
	color: #fff;
	margin: 0;
}
.phocea-archive-hero__desc {
	font-family: var(--phocea-font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.75);
	max-width: 700px;
	margin: 0;
}
.phocea-archive-hero__count {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	color: var(--phocea-hover);
	margin: 0;
}

/* List grid reuses .phocea-news / .phocea-card as-is — same tiles as the
   landing's "Dernières actualités". Only the empty-state and pagination
   below are specific to the archive. */
.phocea-archive-empty {
	max-width: 1360px;
	margin: 0 auto;
	font-family: var(--phocea-font-body);
	font-size: 15px;
	color: var(--phocea-muted);
}
.phocea-pagination {
	max-width: 1360px;
	margin: 48px auto 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.phocea-pagination span,
.phocea-pagination a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border-radius: 999px;
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	color: var(--phocea-ink);
	background: #fff;
	border: 1px solid rgba(27, 27, 27, 0.14);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.phocea-pagination a:hover {
	border-color: var(--phocea-steel);
	color: var(--phocea-hover-on-light);
}
.phocea-pagination span.current {
	background: var(--phocea-steel-light);
	border-color: var(--phocea-steel-light);
	color: #fff;
}
.phocea-pagination span.dots {
	background: none;
	border: none;
}

/* ==========================================================================
   Article page (single post)
   ========================================================================== */

/* One column width shared by the hero text, the credit bar and the body, so
   everything lines up on the same left edge as in the mockup. */
.phocea-article__container {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Article hero ---------- */
.phocea-article__hero {
	position: relative;
	background: #06090c;
	padding-bottom: 56px;
}
.phocea-article__media {
	position: relative;
	height: 520px;
	overflow: hidden;
}
.phocea-article .phocea-article__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	display: block;
}
/* Top veil keeps the fixed white header legible over a bright photo; bottom
   fade dissolves the photo into the dark title block. */
.phocea-article__media-fade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(6, 9, 12, 0.65) 0%, rgba(6, 9, 12, 0) 22%),
		linear-gradient(180deg, rgba(6, 9, 12, 0) 55%, rgba(6, 9, 12, 0.85) 88%, #06090c 100%);
}
.phocea-article__hero--noimage {
	padding-top: 160px;
}
.phocea-article__hero-inner {
	position: relative;
	z-index: 2;
	max-width: 860px;
	margin: -60px auto 0;
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
}
.phocea-article__hero--noimage .phocea-article__hero-inner {
	margin-top: 0;
}
.phocea-article__hero-top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.phocea-article__badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.phocea-article__badges .phocea-badge {
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}
.phocea-article__badges .phocea-badge:hover {
	background: rgba(159, 203, 230, 0.55);
	border-color: #fff;
}
.phocea-article__breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--phocea-font-body);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}
.phocea-article__breadcrumb a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.2s ease;
}
.phocea-article__breadcrumb a:hover {
	color: var(--phocea-hover);
}
.phocea-article__title {
	font-family: var(--phocea-font-heading);
	font-weight: 400;
	font-size: 44px;
	line-height: 1.16;
	color: #fff;
	margin: 0;
}
.phocea-article__chapo {
	font-family: var(--phocea-font-body);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
	max-width: 66ch;
}
.phocea-article__meta {
	font-family: var(--phocea-font-body);
	font-weight: 500;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.phocea-article__sep {
	color: rgba(255, 255, 255, 0.3);
}
.phocea-article__reading {
	font-weight: 700;
	color: #fff;
}

/* ---------- Credit + share bar ---------- */
.phocea-article__creditbar {
	background: #fff;
	padding: 22px 0;
	border-bottom: 1px solid rgba(27, 27, 27, 0.08);
}
.phocea-article__creditbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.phocea-article__credit {
	font-family: var(--phocea-font-body);
	font-size: 12px;
	line-height: 1.5;
	color: var(--phocea-muted);
	margin: 0;
	flex: 1 1 320px;
}

/* ---------- Share rail ---------- */
.phocea-share {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}
.phocea-share__label {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 12px;
	color: var(--phocea-muted);
	margin-right: 4px;
}
.phocea-share__btn {
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	border-radius: 999px;
	border: 0;
	padding: 0;
	background: var(--phocea-navy-dark);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.phocea-share__btn:hover {
	background: var(--phocea-hover);
	color: var(--phocea-navy-dark);
	transform: translateY(-2px);
}
.phocea-share__btn.is-copied {
	background: var(--phocea-steel);
	color: #fff;
}

/* ---------- Article body ---------- */
.phocea-article__content {
	padding: 48px 0 8px;
	font-family: var(--phocea-font-body);
	font-size: 16px;
	line-height: 1.85;
	color: #2b3238;
}
.phocea-article__content > *:first-child {
	margin-top: 0;
}
.phocea-article__content p {
	margin: 0 0 26px;
}
.phocea-article__content h2 {
	font-family: var(--phocea-font-heading);
	font-weight: 400;
	font-size: 30px;
	line-height: 1.25;
	color: var(--phocea-ink);
	margin: 48px 0 22px;
	max-width: 22ch;
}
.phocea-article__content h3 {
	font-family: var(--phocea-font-heading);
	font-weight: 400;
	font-size: 22px;
	line-height: 1.3;
	color: var(--phocea-ink);
	margin: 36px 0 16px;
}
.phocea-article__content a {
	color: var(--phocea-steel);
	text-decoration: none;
	border-bottom: 1px solid rgba(93, 140, 174, 0.4);
	transition: color 0.2s ease, border-color 0.2s ease;
}
.phocea-article__content a:hover {
	color: var(--phocea-hover-on-light);
	border-bottom-color: currentColor;
}
.phocea-article__content ul,
.phocea-article__content ol {
	margin: 0 0 26px;
	padding-left: 22px;
}
.phocea-article__content li {
	margin-bottom: 10px;
}
.phocea-article__content img,
.phocea-article__content iframe {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
}
.phocea-article__content figure {
	margin: 34px 0;
}
.phocea-article__content figcaption {
	font-size: 12px;
	color: var(--phocea-muted);
	margin-top: 10px;
}

/* Pull quote — [phocea_citation] card, and the same look for plain
   <blockquote> so an editor gets it without learning the shortcode. */
.phocea-quote {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	align-items: stretch;
	gap: 0;
	margin: 40px 0;
	background: #d9dcde;
	border-radius: 20px;
	overflow: hidden;
}
.phocea-quote--noimage,
.phocea-article__content blockquote:not(.phocea-quote__text) {
	display: block;
	background: #d9dcde;
	border-radius: 20px;
	margin: 40px 0;
	padding: 40px;
	border: 0;
}
.phocea-quote__media {
	position: relative;
	min-height: 260px;
}
.phocea-quote .phocea-quote__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	filter: grayscale(1);
}
.phocea-quote__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 24px;
	padding: 44px 40px;
	text-align: right;
}
.phocea-quote__text,
.phocea-article__content blockquote:not(.phocea-quote__text) p {
	font-family: var(--phocea-font-heading);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.4;
	color: var(--phocea-ink);
	margin: 0;
	padding: 0;
	border: 0;
	quotes: none;
}
.phocea-quote__author,
.phocea-article__content blockquote:not(.phocea-quote__text) cite {
	font-family: var(--phocea-font-body);
	font-weight: 500;
	font-style: normal;
	font-size: 14px;
	color: var(--phocea-muted);
}

/* ---------- Article footer (meta, share, taxonomies) ---------- */
.phocea-article__end {
	padding: 8px 0 64px;
}
.phocea-article__meta--end {
	color: var(--phocea-muted);
	margin-bottom: 26px;
}
.phocea-article__end-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.phocea-article__taxonomies {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.phocea-pill {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(180deg, rgba(168, 226, 255, 0.9) 0%, rgba(129, 187, 216, 0.9) 100%);
	border-radius: 999px;
	padding: 8px 16px;
	text-decoration: none;
	transition: filter 0.2s ease;
}
.phocea-pill:hover {
	filter: brightness(1.08);
}
.phocea-pill--tag {
	text-transform: none;
	letter-spacing: 0;
	font-size: 12px;
}

/* ---------- "À lire aussi" horizontal rail ---------- */
.phocea-related {
	background: var(--phocea-bg-light);
	padding: 64px 0 72px 48px;
	overflow: hidden;
}
.phocea-related .phocea-news__header {
	max-width: 1312px;
	margin: 0 0 28px;
}
.phocea-related__rail {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	padding-bottom: 12px;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}
.phocea-related__rail .phocea-card {
	flex: 0 0 400px;
	scroll-snap-align: start;
}
/* .phocea-card__img is positioned by a `.phocea-news .phocea-card__img` rule;
   the rail is inside .phocea-news too, so it already applies here. */

/* ---------- Newsletter + app ---------- */
.phocea-engage {
	background: var(--phocea-bg-light);
	padding: 8px 48px 72px;
}
.phocea-engage__inner {
	max-width: 1360px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 24px;
}
/* No app yet: the newsletter card takes the full row rather than leaving a
   hole where the store card would go. */
.phocea-engage__inner--single {
	grid-template-columns: 1fr;
}
/* Honeypot: off-screen rather than display:none, which some bots detect. */
.phocea-engage__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.phocea-engage__notice {
	font-family: var(--phocea-font-body);
	font-size: 13px;
	font-weight: 700;
	margin: -4px 0 0;
	padding: 10px 18px;
	border-radius: 999px;
}
.phocea-engage__notice--success {
	color: #14532d;
	background: #dcfce7;
}
.phocea-engage__notice--error {
	color: #7f1d1d;
	background: #fee2e2;
}
.phocea-engage__card {
	background: #fff;
	border-radius: 18px;
	padding: 34px 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
}
.phocea-engage__title {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 16px;
	color: var(--phocea-ink);
	margin: 0;
}
.phocea-engage__sub {
	font-family: var(--phocea-font-body);
	font-size: 13px;
	color: var(--phocea-muted);
	margin: -8px 0 0;
}
.phocea-engage__form {
	width: 100%;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}
.phocea-engage__row {
	display: flex;
	gap: 12px;
	width: 100%;
}
.phocea-engage__form input,
.phocea-comments__form textarea,
.phocea-comments__form input[type="text"],
.phocea-comments__form input[type="email"],
.phocea-comments__form input[type="url"] {
	width: 100%;
	font-family: var(--phocea-font-body);
	font-size: 13px;
	color: var(--phocea-ink);
	background: #f3f5f6;
	border: 1px solid transparent;
	border-radius: 10px;
	padding: 12px 14px;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}
.phocea-engage__form input::placeholder,
.phocea-comments__form textarea::placeholder {
	color: #9aa6ad;
}
.phocea-engage__form input:focus,
.phocea-comments__form textarea:focus,
.phocea-comments__form input:focus {
	outline: none;
	background: #fff;
	border-color: var(--phocea-steel-light);
}
/* Specificity bumped past the theme's own `input[type=submit]` / `.button`
   rules (OceanWP), which otherwise repaint these buttons in its brand blue. */
.phocea-engage .phocea-engage__submit,
.phocea-comments .phocea-engage__submit,
.phocea-engage__submit {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #fff;
	background: var(--phocea-navy-dark);
	border: 1px solid var(--phocea-navy-dark);
	border-radius: 999px;
	padding: 12px 32px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.phocea-engage .phocea-engage__submit:hover,
.phocea-comments .phocea-engage__submit:hover,
.phocea-engage__submit:hover {
	background: var(--phocea-hover);
	border-color: var(--phocea-hover);
	color: var(--phocea-navy-dark);
}
.phocea-engage__stores {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}
.phocea-store {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--phocea-navy-dark);
	color: #fff;
	border-radius: 10px;
	padding: 9px 16px;
	text-decoration: none;
	font-family: var(--phocea-font-body);
	transition: background-color 0.2s ease, color 0.2s ease;
}
.phocea-store:hover {
	background: var(--phocea-hover);
	color: var(--phocea-navy-dark);
}
.phocea-store span {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	text-align: left;
}
.phocea-store__small {
	font-size: 9px;
	opacity: 0.75;
}
.phocea-store strong {
	font-size: 13px;
	font-weight: 700;
}

/* ---------- Comments ---------- */
.phocea-comments {
	background: #fff;
	padding: 72px 48px;
}
/* Same column as the article body, not the wide 1360px grid used by the
   related rail — the thread reads as part of the article, and the form no
   longer hugs the left edge of an over-wide block. */
.phocea-comments__inner {
	max-width: 860px;
	margin: 0 auto;
}
.phocea-comments__title {
	font-family: var(--phocea-font-heading);
	font-weight: 400;
	font-size: 32px;
	color: var(--phocea-ink);
	margin: 0 0 28px;
}
.phocea-comments__card {
	background: #cfe6f5;
	border-radius: 20px;
	padding: 28px 32px;
}
.phocea-comments__list,
.phocea-comments__list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}
.phocea-comments__list .children {
	margin-top: 18px;
	padding-left: 44px;
}
.phocea-comment {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(27, 27, 27, 0.08);
}
.phocea-comment:last-child {
	border-bottom: 0;
}
.phocea-comment__avatar img {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	display: block;
}
.phocea-comment__author {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 13px;
	color: var(--phocea-ink);
	margin: 0 0 6px;
}
.phocea-comment__pending {
	font-family: var(--phocea-font-body);
	font-size: 11px;
	font-weight: 700;
	font-style: italic;
	color: var(--phocea-hover-on-light);
	margin: 0 0 6px;
}
.phocea-comment__text {
	font-family: var(--phocea-font-body);
	font-size: 13px;
	line-height: 1.6;
	color: #33414a;
}
.phocea-comment__text p {
	margin: 0 0 8px;
}
.phocea-comment__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 8px;
	font-family: var(--phocea-font-body);
	font-size: 11px;
	color: var(--phocea-muted);
}
.phocea-comment__actions a {
	color: var(--phocea-hover-on-light);
	font-weight: 700;
	text-decoration: none;
}
.phocea-comment__actions a:hover {
	text-decoration: underline;
}
.phocea-comments__form {
	margin: 36px auto 0;
}
.phocea-comments__form-title {
	font-family: var(--phocea-font-body);
	font-weight: 700;
	font-size: 15px;
	color: var(--phocea-ink);
	margin: 0 0 16px;
}
.phocea-comments__form p {
	margin: 0 0 12px;
}
.phocea-comments__form .form-submit {
	margin-top: 4px;
}

/* ---------- Mobile nav trigger ----------
   Hidden on desktop; below 900px it replaces the inline nav, which becomes a
   dropdown panel under the header bar. */
.phocea-header__burger {
	display: none;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	background: rgba(16, 24, 31, 0.35);
	color: #fff;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}
.phocea-header__burger-bars,
.phocea-header__burger-bars::before,
.phocea-header__burger-bars::after {
	display: block;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.phocea-header__burger-bars {
	position: relative;
}
.phocea-header__burger-bars::before,
.phocea-header__burger-bars::after {
	content: '';
	position: absolute;
	left: 0;
}
.phocea-header__burger-bars::before {
	top: -5px;
}
.phocea-header__burger-bars::after {
	top: 5px;
}
/* Bars morph into a cross while the panel is open. */
.phocea-header.is-open .phocea-header__burger-bars {
	background: transparent;
}
.phocea-header.is-open .phocea-header__burger-bars::before {
	transform: translateY(5px) rotate(45deg);
}
.phocea-header.is-open .phocea-header__burger-bars::after {
	transform: translateY(-5px) rotate(-45deg);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* --- Laptop / small desktop --- */
@media (max-width: 1200px) {
	.phocea-header {
		padding: 16px 24px;
	}
	.phocea-news,
	.phocea-footer {
		padding-left: 24px;
		padding-right: 24px;
	}
	.phocea-news__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.phocea-hero {
		min-height: 640px;
	}
	.phocea-article__media {
		height: 420px;
	}
	.phocea-article__title {
		font-size: 38px;
	}
	.phocea-archive-hero {
		padding: 140px 24px 48px;
	}
	.phocea-archive-hero__title {
		font-size: 38px;
	}
	.phocea-related {
		padding-left: 24px;
	}
	.phocea-engage,
	.phocea-comments {
		padding-left: 24px;
		padding-right: 24px;
	}
}

/* --- Tablet: nav collapses into the burger panel --- */
@media (max-width: 900px) {
	.phocea-header__burger {
		display: inline-flex;
	}
	.phocea-header__nav {
		position: absolute;
		top: calc(100% - 8px);
		left: 16px;
		right: 16px;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		padding: 10px;
		border-radius: 18px;
		background: rgba(16, 24, 31, 0.97);
		border-color: rgba(255, 255, 255, 0.18);
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
		display: none;
	}
	.phocea-header.is-open .phocea-header__nav {
		display: flex;
	}
	.phocea-header__nav-link {
		text-align: left;
		padding: 12px 16px;
	}
	/* The subscribe button is the one action worth keeping in the bar; the
	   account icon would crowd it next to the burger. */
	.phocea-header__account {
		display: none;
	}

	.phocea-hero {
		min-height: 520px;
		padding-bottom: 72px;
	}
	.phocea-hero__title {
		font-size: 28px;
	}
	.phocea-hero__scroll {
		bottom: 28px;
	}

	.phocea-news {
		padding: 48px 24px 64px;
	}
	.phocea-news__grid {
		grid-template-columns: 1fr;
	}
	.phocea-news__title,
	.phocea-comments__title {
		font-size: 26px;
	}

	.phocea-footer {
		padding: 48px 24px;
	}
	.phocea-footer__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.phocea-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		margin-top: 36px;
	}

	.phocea-article__media {
		height: 300px;
	}
	.phocea-archive-hero {
		padding: 120px 24px 40px;
	}
	.phocea-archive-hero__title {
		font-size: 28px;
	}
	.phocea-article__hero-inner {
		margin-top: -40px;
		gap: 14px;
	}
	.phocea-article__title {
		font-size: 28px;
	}
	/* Breadcrumb under the badges rather than pushed to the far right, where
	   it would wrap awkwardly against them. */
	.phocea-article__hero-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.phocea-article__content {
		padding-top: 32px;
		font-size: 15px;
	}
	.phocea-article__content h2 {
		font-size: 24px;
		max-width: none;
		margin-top: 36px;
	}
	.phocea-article__creditbar-inner {
		align-items: flex-start;
		gap: 14px;
	}

	.phocea-quote {
		grid-template-columns: 1fr;
	}
	.phocea-quote__media {
		min-height: 220px;
	}
	.phocea-quote__body {
		align-items: flex-start;
		text-align: left;
		padding: 28px 24px;
	}
	.phocea-quote__text,
	.phocea-article__content blockquote:not(.phocea-quote__text) p {
		font-size: 20px;
	}

	.phocea-article__end-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.phocea-article__taxonomies {
		justify-content: flex-start;
	}

	.phocea-related {
		padding: 48px 0 56px 24px;
	}
	.phocea-related__rail .phocea-card {
		flex-basis: 280px;
	}

	.phocea-engage__inner {
		grid-template-columns: 1fr;
	}
	.phocea-engage__card {
		padding: 28px 22px;
	}

	.phocea-comments {
		padding: 48px 24px;
	}
	.phocea-comments__card {
		padding: 20px 18px;
	}
	.phocea-comments__list .children {
		padding-left: 22px;
	}
}

/* --- Phone --- */
@media (max-width: 600px) {
	.phocea-header {
		padding: 14px 16px;
	}
	.phocea-header__subscribe {
		padding: 10px 16px;
		font-size: 12px;
	}
	.phocea-logo svg,
	.phocea-logo img {
		height: 24px;
	}

	.phocea-hero {
		min-height: 460px;
		padding-bottom: 56px;
	}
	.phocea-hero__title {
		font-size: 24px;
	}
	.phocea-hero__content {
		gap: 16px;
	}

	.phocea-article__container {
		padding: 0 16px;
	}
	.phocea-archive-hero {
		padding: 108px 16px 32px;
	}
	.phocea-archive-hero__title {
		font-size: 23px;
	}
	.phocea-article__hero-inner {
		padding: 0 16px;
	}
	.phocea-article__media {
		height: 240px;
	}
	.phocea-article__title {
		font-size: 23px;
	}
	.phocea-article__chapo {
		font-size: 14px;
	}
	/* Wrapping share buttons under the caption instead of squeezing them. */
	.phocea-share {
		flex-wrap: wrap;
	}

	.phocea-news,
	.phocea-comments,
	.phocea-engage {
		padding-left: 16px;
		padding-right: 16px;
	}
	.phocea-related {
		padding-left: 16px;
	}
	.phocea-related__rail .phocea-card {
		flex-basis: 82vw;
	}
	.phocea-engage__row {
		flex-direction: column;
	}
	.phocea-footer {
		padding: 40px 16px;
	}
	.phocea-comments__form .form-submit {
		text-align: left;
	}
}
