/**
 * Blog — fil des articles, archives de catégories (v0.23.0), partage (v0.24.0), page article (v0.25.0), contenus réservés et logos (v0.26.0), actions rapides (v0.27.0), brèves (v0.28.0).
 *
 * Chargée uniquement sur ces pages et sur la page article (functions.php), après style.css.
 * Couleurs et rayons : variables du design system de style.css
 * (--green, --surface2, --border, --text-body, --text-muted, --white, --r, --r-lg).
 * Points de rupture alignés sur le thème : 769px et 1025px. Mobile d'abord.
 *
 * @package alspeed-v2
 */

/* En-tête ---------------------------------------------------------------- */

.als-blog__intro {
	max-width: 68ch;
	margin: -8px 0 20px;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.6;
}

/* Filtres : défilement horizontal sur mobile, retour à la ligne au-delà ---- */

.als-blog__filters {
	margin-bottom: 22px;
}

.als-blog__chips {
	display: flex;
	gap: 8px;
	padding-bottom: 4px;
	list-style: none;
	overflow-x: auto;
	scrollbar-width: thin;
}

.als-blog__chip {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--white);
	color: var(--text-body);
	font-size: 13.5px;
	font-weight: 500;
	white-space: nowrap;
}

.als-blog__chip:hover {
	border-color: var(--green);
	color: var(--green);
}

.als-blog__chip.is-active {
	border-color: var(--green);
	background: var(--surface2);
	color: var(--green);
	font-weight: 600;
}

@media (min-width: 769px) {
	.als-blog__chips {
		flex-wrap: wrap;
		overflow-x: visible;
	}
}

/* Fil ----------------------------------------------------------------------- */

.als-blog__feed {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
}

@media (min-width: 769px) {
	.als-blog--grid .als-blog__feed {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1025px) {
	.als-blog--grid .als-blog__feed {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.als-blog--list .als-blog__feed {
	max-width: 900px;
}

/* Carte --------------------------------------------------------------------- */

.als-post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	background: var(--white);
	transition: border-color 0.2s ease;
}

.als-post-card:hover,
.als-post-card:focus-within,
.als-post-card--sticky {
	border-color: var(--green);
}

.als-post-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--surface);
}

.als-post-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.als-post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 18px 20px 20px;
}

.als-post-card__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.als-post-card__badge {
	padding: 3px 8px;
	border-radius: var(--r);
	background: var(--surface2);
	color: var(--green);
	font-size: 12px;
	font-weight: 600;
}

.als-post-card__cat {
	color: var(--green);
	font-size: 13px;
	font-weight: 600;
}

.als-post-card__cat:hover {
	text-decoration: underline;
}

.als-post-card__title {
	font-family: var(--font-head);
	font-size: 16.5px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--text-body);
}

.als-post-card__title a:hover {
	color: var(--green);
}

.als-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
	color: var(--text-muted);
	font-size: 12.5px;
}

.als-post-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	color: var(--text-body);
	font-size: 14px;
	line-height: 1.6;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

.als-post-card__more {
	align-self: flex-start;
	margin-top: auto;
	padding-top: 6px;
	color: var(--green);
	font-size: 14px;
	font-weight: 600;
}

.als-post-card__more:hover {
	text-decoration: underline;
}

/* Première publication de la première page : sur toute la largeur, image à
   gauche — l'équivalent de la publication épinglée d'une page Facebook. */
@media (min-width: 1025px) {
	body:not(.paged) .als-blog--grid .als-blog__feed > .als-post-card:first-child {
		grid-column: 1 / -1;
		flex-direction: row;
	}

	body:not(.paged) .als-blog--grid .als-blog__feed > .als-post-card:first-child .als-post-card__media {
		flex: 0 0 55%;
		aspect-ratio: auto;
		min-height: 320px;
	}

	body:not(.paged) .als-blog--grid .als-blog__feed > .als-post-card:first-child .als-post-card__body {
		justify-content: center;
		padding: 32px;
	}

	body:not(.paged) .als-blog--grid .als-blog__feed > .als-post-card:first-child .als-post-card__title {
		font-size: 22px;
	}
}

/* Disposition « liste » : image à gauche dès la tablette. */
@media (min-width: 769px) {
	.als-blog--list .als-post-card {
		flex-direction: row;
	}

	.als-blog--list .als-post-card__media {
		flex: 0 0 38%;
		aspect-ratio: auto;
		min-height: 200px;
	}
}

/* Pagination ------------------------------------------------------------------ */

.als-blog__pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
}

.als-blog__pager a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 28px;
	border: 2px solid var(--green);
	border-radius: var(--r);
	color: var(--green);
	font-weight: 600;
}

.als-blog__pager a:hover {
	background: var(--surface2);
}

.als-blog__empty {
	padding: 48px 0;
	color: var(--text-muted);
	text-align: center;
}

/* Partage (page article) --------------------------------------------------- */

.als-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
}

.als-share--top {
	margin-bottom: 18px;
}

.als-share--bottom {
	flex-direction: column;
	align-items: flex-start;
	margin: 28px 0 8px;
	padding: 18px 20px;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	background: var(--surface);
}

.als-share__title {
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 600;
}

.als-share--bottom .als-share__title {
	color: var(--text-body);
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 700;
}

.als-share__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
}

.als-share__btn {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--white);
	color: var(--text-body);
	font: inherit;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
}

.als-share__btn:hover {
	border-color: var(--green);
	color: var(--green);
}

.als-share__btn--primary {
	border-color: var(--green);
	background: var(--green);
	color: var(--white);
}

.als-share__btn--primary:hover {
	background: var(--surface2);
	color: var(--green);
}

.als-share__btn:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 2px;
}

.als-share--top .als-share__btn {
	min-height: 34px;
	padding: 0 12px;
	font-size: 12.5px;
}

/* Page article (v0.25.0) ------------------------------------------------------
   Colonne de lecture de 740 px (~70 caractères par ligne). Mise en page
   « sidebar » : colonne latérale de 300 px dès 1100 px, sinon une colonne. */

.als-article-page {
	--als-read: 740px;
	--als-aside: 300px;
	--als-col-gap: 56px;
}

.als-article-page .crumb,
.als-article-grid,
.als-post-nav {
	max-width: var(--als-read);
	margin-left: auto;
	margin-right: auto;
}

.als-article-grid article.single-post {
	min-width: 0;
	max-width: none;
}

.als-article-aside {
	display: none;
}

@media (min-width: 1100px) {
	.als-article-page--sidebar .crumb,
	.als-article-page--sidebar .als-article-grid,
	.als-article-page--sidebar .als-post-nav {
		max-width: calc(var(--als-read) + var(--als-col-gap) + var(--als-aside));
	}

	.als-article-page--sidebar .als-article-grid {
		display: grid;
		grid-template-columns: minmax(0, var(--als-read)) var(--als-aside);
		gap: var(--als-col-gap);
		align-items: start;
	}

	.als-article-page--sidebar .als-article-aside {
		display: block;
		height: 100%;
	}

	.als-article-page--sidebar .als-toc--inline,
	.als-article-page--sidebar .als-cta--inline {
		display: none;
	}
}

/* La colonne s'arrête 96 px au-dessus du bas de l'écran, pour ne pas passer
   sous les bulles flottantes (WhatsApp, « Contactez-nous ») ; un long sommaire
   défile alors dans son propre cadre et l'encadré conseil reste visible. */
.als-article-aside__inner {
	position: sticky;
	top: var(--als-sticky, 120px);
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-height: calc(100vh - var(--als-sticky, 120px) - 96px);
}

/* En-tête de l'article */

.als-article__header {
	margin-bottom: 24px;
}

.als-article__title {
	margin: 0 0 12px;
	font-size: clamp(24px, 1.1rem + 1.4vw, 34px);
	line-height: 1.22;
	letter-spacing: -0.01em;
	text-wrap: balance;
}

.als-article__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 16px;
	margin: 0 0 16px;
	color: var(--text-muted);
	font-size: 13.5px;
}

.als-article__cats a {
	color: var(--green);
	font-weight: 600;
}

.als-article__header .als-share--top {
	margin-bottom: 0;
}

.als-article__cover {
	margin: 0 0 28px;
}

/* Corps du texte */

.als-article__content {
	color: var(--text-body);
	font-size: 17px;
	line-height: 1.75;
}

.als-article__content p {
	margin: 0 0 1.1em;
}

.als-article__content h2 {
	margin: 1.9em 0 0.6em;
	font-size: clamp(20px, 1rem + 0.7vw, 25px);
	line-height: 1.3;
	scroll-margin-top: var(--als-sticky, 120px);
}

.als-article__content h3 {
	margin: 1.5em 0 0.5em;
	font-size: 19px;
	line-height: 1.35;
	scroll-margin-top: var(--als-sticky, 120px);
}

.als-article__content h4 {
	margin: 1.3em 0 0.4em;
	font-family: var(--font-head);
	font-size: 17px;
}

.als-article__content > :first-child {
	margin-top: 0;
}

.als-article__content ul,
.als-article__content ol {
	margin: 0 0 1.2em;
	padding-left: 1.3em;
}

.als-article__content li {
	margin-bottom: 0.45em;
	padding-left: 0.2em;
}

.als-article__content li::marker {
	color: var(--green);
	font-weight: 700;
}

.als-article__content a {
	color: var(--green);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.als-article__content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--r);
}

.als-article__content blockquote {
	margin: 1.5em 0;
	padding: 14px 20px;
	border-left: 3px solid var(--green);
	border-radius: 0 var(--r) var(--r) 0;
	background: var(--surface);
}

@media (max-width: 768px) {
	.als-article__content {
		font-size: 16px;
	}
}

/* Sommaire */

.als-toc__title {
	margin: 0 0 8px;
	color: var(--text-body);
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
}

.als-toc__list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: als-toc;
}

.als-toc__list li {
	counter-increment: als-toc;
}

.als-toc__list a {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 4px;
	padding: 6px 0;
	color: var(--text-body);
	font-size: 14px;
	line-height: 1.4;
}

.als-toc__list a::before {
	content: counter(als-toc) ".";
	color: var(--text-muted);
	font-variant-numeric: tabular-nums;
}

.als-toc__list a:hover,
.als-toc__list a.is-current,
.als-toc__list a.is-current::before {
	color: var(--green);
}

.als-toc__list a.is-current {
	font-weight: 600;
}

.als-toc--side {
	display: flex;
	flex: 0 1 auto;
	flex-direction: column;
	min-height: 0;
	padding: 18px 20px 14px;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	background: var(--white);
}

.als-toc--side .als-toc__list {
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	border-left: 2px solid var(--border);
}

.als-cta--side {
	flex: none;
}

.als-toc--side .als-toc__list a {
	margin-left: -2px;
	padding-left: 12px;
	border-left: 2px solid transparent;
}

.als-toc--side .als-toc__list a.is-current {
	border-left-color: var(--green);
}

.als-toc--inline {
	margin: 0 0 28px;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	background: var(--surface);
}

.als-toc--inline summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 14px 18px;
	list-style: none;
	cursor: pointer;
}

.als-toc--inline summary::-webkit-details-marker {
	display: none;
}

.als-toc--inline summary::after {
	content: "+";
	color: var(--green);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.als-toc--inline[open] summary::after {
	content: "–";
}

.als-toc--inline .als-toc__list {
	padding: 0 18px 14px;
}

/* Encadré conseil */

.als-cta {
	padding: 20px;
	border-radius: var(--r-lg);
	background: var(--surface2);
}

.als-cta--inline {
	margin-top: 32px;
}

.als-cta__title {
	margin: 0 0 6px;
	color: var(--text-body);
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 700;
}

.als-cta__text {
	margin: 0 0 14px;
	color: var(--text-body);
	font-size: 14px;
	line-height: 1.55;
}

.als-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: var(--r);
	background: var(--green);
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.als-cta__btn:hover {
	filter: brightness(0.9);
}

.als-cta--side .als-cta__btn {
	width: 100%;
}

/* Mots-clés : pastilles */

.als-article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 24px 0 0;
}

.als-article__tags a {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--text-muted);
	font-size: 12.5px;
}

.als-article__tags a:hover {
	border-color: var(--green);
	color: var(--green);
}

/* Article précédent / suivant : deux cartes */

.als-post-nav {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
	margin-top: 40px;
	padding-top: 0;
	border-top: 0;
}

.als-post-nav .als-post-nav__link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-width: none;
	margin: 0;
	padding: 16px 18px;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	background: var(--white);
	text-align: left;
}

.als-post-nav__label {
	color: var(--text-muted);
	font-size: 12.5px;
	font-weight: 500;
}

.als-post-nav__title {
	color: var(--text-body);
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.als-post-nav .als-post-nav__link:hover {
	border-color: var(--green);
}

.als-post-nav .als-post-nav__link:hover .als-post-nav__title {
	color: var(--green);
}

@media (min-width: 769px) {
	.als-post-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.als-post-nav .post-nav-next {
		grid-column: 2;
		text-align: right;
	}
}

.als-article-page a:focus-visible,
.als-article-page summary:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 2px;
}

/* Contenus réservés aux clients pro (v0.26.0) --------------------------------- */

.als-lock {
	flex: none;
}

.als-post-card__badge--pro,
.als-article__access {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--text-body);
	color: var(--white);
}

.als-article__access {
	margin: 0 0 10px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 600;
}

/* Extrait d'un article réservé : fondu vers le bas (masque de transparence). */
.als-article--locked .als-article__content {
	-webkit-mask-image: linear-gradient(to bottom, rgb(0 0 0 / 1) 50%, rgb(0 0 0 / 0));
	mask-image: linear-gradient(to bottom, rgb(0 0 0 / 1) 50%, rgb(0 0 0 / 0));
}

.als-locked {
	margin-top: 8px;
	padding: 28px 24px;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	background: var(--surface);
	text-align: center;
}

.als-locked__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 0 10px;
	border-radius: 50%;
	background: var(--surface2);
	color: var(--green);
}

.als-locked__icon .als-lock {
	width: 20px;
	height: 20px;
}

.als-locked__title {
	margin: 0 0 6px;
	color: var(--text-body);
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 700;
}

.als-locked__text {
	max-width: 52ch;
	margin: 0 auto 16px;
	color: var(--text-body);
	font-size: 14.5px;
	line-height: 1.6;
}

.als-locked__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0;
}

.als-locked__btn {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 20px;
	border: 2px solid var(--green);
	border-radius: var(--r);
	color: var(--green);
	font-size: 14px;
	font-weight: 600;
}

.als-locked__btn--primary {
	background: var(--green);
	color: var(--white);
}

.als-locked__btn:hover {
	filter: brightness(0.92);
}

/* Partage en mode logos (v0.26.0) : pastilles rondes. */

.als-share--icons .als-share__btn {
	justify-content: center;
	width: 40px;
	height: 40px;
	min-height: 0;
	padding: 0;
	border-radius: 50%;
	background: var(--white);
	color: var(--text-body);
}

.als-share--icons .als-share__btn--primary {
	background: var(--green);
	color: var(--white);
}

.als-share__logo {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.als-share--top.als-share--icons .als-share__btn {
	width: 36px;
	height: 36px;
}

.als-share--top .als-share__logo {
	width: 20px;
	height: 20px;
}

/* TikTok et X : leurs logos fournis sont blancs (versions pour fond sombre).
   Posés sur une pastille sombre, sans modifier les fichiers (chartes des marques). */
.als-share__btn--tiktok .als-share__logo,
.als-share__btn--x .als-share__logo {
	box-sizing: border-box;
	padding: 4px;
	border-radius: 50%;
	background: var(--text-body);
}

/* Logos suivis du nom du réseau. */
.als-share--icons-labels .als-share__btn {
	gap: 8px;
	padding: 0 14px 0 10px;
}

.als-share--icons-labels .als-share__btn svg {
	flex: none;
}

/* Confirmation « Lien copié » (copie du lien, Instagram, TikTok sur ordinateur). */
.als-share__toast {
	flex-basis: 100%;
	margin: 2px 0 0;
	padding: 8px 12px;
	border-radius: var(--r);
	background: var(--surface2);
	color: var(--text-body);
	font-size: 13px;
	font-weight: 600;
}

/* Menu « ⋯ » d'actions rapides (v0.27.0) — équipe connectée uniquement ------ */

.als-post-card {
	position: relative;
}

.als-post-card--menu-open {
	z-index: 5;
	overflow: visible;
}

.als-actions {
	position: relative;
}

.als-actions--card {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
}

.als-article__metarow {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px 16px;
}

.als-article__metarow .als-article__meta {
	flex: 1 1 auto;
}

.als-actions__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: var(--white);
	color: var(--text-body);
	cursor: pointer;
}

.als-actions__toggle:hover,
.als-actions__toggle[aria-expanded="true"] {
	border-color: var(--green);
	color: var(--green);
}

.als-actions__menu {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	z-index: 10;
	min-width: 250px;
	padding: 6px;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	background: var(--white);
	box-shadow: 0 12px 30px color-mix(in srgb, var(--text-body) 18%, transparent);
}

.als-actions__group {
	margin: 6px 10px 2px;
	color: var(--text-muted);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.als-actions__item {
	display: block;
	width: 100%;
	padding: 9px 10px;
	border: 0;
	border-radius: var(--r);
	background: none;
	color: var(--text-body);
	font: inherit;
	font-size: 14px;
	text-align: left;
	cursor: pointer;
}

.als-actions__item:hover,
.als-actions__item:focus-visible {
	background: var(--surface2);
	outline: none;
}

.als-actions__item--choice {
	padding-left: 30px;
	position: relative;
}

.als-actions__item--choice[aria-checked="true"] {
	color: var(--green);
	font-weight: 600;
	cursor: default;
}

.als-actions__item--choice[aria-checked="true"]::before {
	content: "✓";
	position: absolute;
	left: 11px;
}

.als-actions__item--danger {
	color: var(--orange);
}

.als-actions.is-busy {
	opacity: 0.6;
	pointer-events: none;
}

.als-actions-toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 1000;
	transform: translateX(-50%);
	margin: 0;
	padding: 10px 18px;
	border-radius: var(--r);
	background: var(--text-body);
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
}

/* Brèves (v0.28.0) ------------------------------------------------------------ */

.als-composer {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 22px;
	padding: 16px 18px;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	background: var(--white);
}

.als-composer__text {
	width: 100%;
	min-height: 64px;
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: var(--r);
	background: var(--surface);
	font: inherit;
	font-size: 15px;
	line-height: 1.55;
	resize: none;
}

.als-composer__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.als-composer__photos {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
}

.als-composer__photos:hover {
	border-color: var(--green);
	color: var(--green);
}

/* Champ de fichiers masqué : c'est l'étiquette qui sert de bouton. */
.als-composer__photos input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.als-composer__photos input:focus-visible + .als-composer__photos-label {
	outline: 2px solid var(--green);
	outline-offset: 4px;
}

.als-composer__hint {
	flex: 1;
	margin: 0;
	color: var(--text-muted);
	font-size: 12.5px;
}

.als-composer__submit {
	min-height: 40px;
	padding: 0 20px;
	border: 0;
	border-radius: var(--r);
	background: var(--green);
	color: var(--white);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.als-composer__submit[disabled] {
	opacity: 0.6;
	cursor: default;
}

.als-composer__status {
	margin: 0;
	color: var(--text-muted);
	font-size: 13px;
}

.als-composer__status--error {
	color: var(--orange);
}

/* Carte d'une brève : pas de titre, le texte et les photos tiennent lieu de contenu. */

.als-post-card__brief {
	color: var(--text-body);
	font-size: 15px;
	line-height: 1.6;
}

.als-post-card__brief p {
	margin: 0 0 10px;
}

.als-post-card__brief p:last-child {
	margin-bottom: 0;
}

.als-brief__figure {
	margin: 12px 0 0;
}

.als-brief__photo {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--r);
}

/* Explication sous chaque niveau de visibilité, dans le menu « ⋯ ». */
.als-actions__hint {
	display: block;
	margin-top: 2px;
	color: var(--text-muted);
	font-size: 11.5px;
	font-weight: 400;
	line-height: 1.3;
}

/* Accessibilité ------------------------------------------------------------- */

.als-blog a:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.als-post-card {
		transition: none;
	}
}
