/**
 * PIXIMIXI — homepage sections.
 *
 * Hero, the two character cards, the role-swap loop, the Toy Journey timeline,
 * the problem statement, how-it-works, the donation programme, and the closing
 * call to action.
 *
 * These styles are also loaded in the block editor, because every section here
 * is registered as a block pattern — an author who inserts "Meet PIXI and MIXI"
 * should see it looking like itself while editing.
 *
 * @package PIXIMIXI
 */

/* ==========================================================================
   Hero
   ==========================================================================
   Sized to what it holds rather than to the viewport: a 100vh opener pushes
   the page itself out of the first frame, which is exactly the frame that a
   shared link, a preview thumbnail and a skimming parent all get.
   ========================================================================== */

.pm-hero {
	position: relative;
	padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem);
	background-color: var(--surface-sunken);
	background-image: var(--mesh);
	overflow: hidden;
}

.pm-hero__inner {
	display: grid;
	gap: clamp(2rem, 1rem + 4vw, 3.5rem);
	align-items: center;
	grid-template-columns: 1fr;
}

@media (min-width: 62rem) {
	.pm-hero__inner {
		grid-template-columns: 1.05fr 0.95fr;
	}
}

.pm-hero__copy {
	text-align: center;
}

@media (min-width: 62rem) {
	.pm-hero__copy {
		text-align: start;
	}
}

.pm-hero__title {
	margin-block: 0 0.75rem;
	font-size: var(--step-5);
	line-height: 1.02;
}

[dir="rtl"] .pm-hero__title {
	line-height: 1.3;
}

/* "Meet" sits above the wordmark, so the eye lands on the name. */
.pm-hero__title .pm-hero__meet {
	display: block;
	font-size: 0.5em;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--ink-soft);
}

/* The wordmark, gradient-filled. `background-clip: text` needs a fallback
   colour for the handful of engines that ignore it, or the word disappears. */
.pm-hero__wordmark {
	display: block;
	color: var(--red-solid);
	font-family: var(--font-latin);
	letter-spacing: 0.02em;
	direction: ltr;
	unicode-bidi: isolate;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
	.pm-hero__wordmark {
		background-image: linear-gradient(100deg, #dc2a21, #ff3b30 45%, #e0a100);
		background-clip: text;
		-webkit-background-clip: text;
		color: transparent;
	}
}

.pm-hero__subtitle {
	max-inline-size: 34ch;
	margin-block: 0 1.75rem;
	margin-inline: auto;
	color: var(--ink-soft);
	font-size: var(--step-2);
	font-weight: 600;
	line-height: 1.4;
}

@media (min-width: 62rem) {
	.pm-hero__subtitle {
		margin-inline: 0;
	}
}

.pm-hero .pm-btn-row {
	justify-content: center;
}

@media (min-width: 62rem) {
	.pm-hero .pm-btn-row {
		justify-content: flex-start;
	}
}

/* Trust marks. Three short facts, each with a mark that is not colour alone. */
.pm-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.25rem;
	justify-content: center;
	padding: 0;
	margin-block: 1.75rem 0;
	list-style: none;
	font-size: var(--step--1);
	font-weight: 700;
	color: var(--ink-soft);
}

@media (min-width: 62rem) {
	.pm-hero__trust {
		justify-content: flex-start;
	}
}

.pm-hero__trust li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.pm-hero__trust svg {
	flex: none;
	inline-size: 1.1rem;
	block-size: 1.1rem;
	color: var(--success-ink);
}

/* ==========================================================================
   The handover scene
   ==========================================================================
   PIXI lets a toy go and MIXI catches it. The row is a plain flex row, so
   under `dir="rtl"` it reverses on its own and the giving still reads as
   moving forward along the line of text rather than backwards against it.
   Each figure also carries `pm-icon-directional`, so the arm that offers the
   toy keeps pointing inward, at the other character.
   ========================================================================== */

.pm-handover {
	position: relative;
	inline-size: 100%;
	max-inline-size: 30rem;
	margin-inline: auto;
}

.pm-handover__blob {
	position: absolute;
	inset: 1rem;
	z-index: -1;
	border-radius: var(--radius-blob);
	background: rgba(255, 255, 255, 0.7);
	filter: blur(18px);
	animation: pm-blob-morph 14s ease-in-out infinite;
}

.pm-handover__row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.25rem;
}

@media (min-width: 40rem) {
	.pm-handover__row {
		gap: 0.5rem;
	}
}

.pm-handover__arc {
	flex: none;
	inline-size: 90px;
	block-size: 70px;
	margin-block-end: 2rem;
}

@media (min-width: 40rem) {
	.pm-handover__arc {
		inline-size: 120px;
		block-size: 90px;
	}
}

.pm-character {
	flex: none;
	overflow: visible;
}

.pm-character--float {
	animation: pm-float 7s ease-in-out infinite;
}

.pm-character--float-late {
	animation: pm-float 7s ease-in-out 1.4s infinite;
}

/* ==========================================================================
   Character cards
   ==========================================================================
   One component, two variants. PIXI and MIXI can never drift apart in spacing
   or hierarchy because they are the same box with a different palette.
   ========================================================================== */

.pm-characters__grid {
	display: grid;
	gap: 1.25rem;
	margin-block-start: 2.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 56rem) {
	.pm-characters__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.pm-character-card {
	position: relative;
	display: flex;
	flex-direction: column;
	block-size: 100%;
	padding: clamp(1.25rem, 1rem + 1vw, 2rem);
	border: 1px solid;
	border-radius: var(--radius-2xl);
	overflow: hidden;
}

.pm-character-card--pixi {
	border-color: rgba(255, 59, 48, 0.2);
	background-image: var(--pixi-glow);
}

.pm-character-card--mixi {
	border-color: rgba(255, 217, 61, 0.4);
	background-image: var(--mixi-glow);
}

.pm-character-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.pm-character-card__name {
	margin: 0;
	font-family: var(--font-latin);
	font-size: 1.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	direction: ltr;
	unicode-bidi: isolate;
}

.pm-character-card--pixi .pm-character-card__name {
	color: var(--red-ink);
}

.pm-character-card--mixi .pm-character-card__name {
	color: var(--sun-ink);
}

.pm-character-card__role {
	margin-block: 0.25rem 0;
	color: var(--ink-muted);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

[dir="rtl"] .pm-character-card__role {
	letter-spacing: 0;
}

.pm-character-card__portrait {
	flex: none;
	margin-block-start: -0.5rem;
}

.pm-character-card__line {
	margin-block: 1.25rem 0;
	font-size: var(--step-1);
	font-weight: 800;
	line-height: 1.35;
	color: var(--ink);
}

.pm-character-card__body {
	margin-block: 0.65rem 0;
	color: var(--ink-soft);
	font-size: var(--step--1);
	line-height: 1.65;
}

.pm-character-card__traits {
	margin-block: 1.25rem 0;
}

.pm-character-card--pixi .pm-character-card__traits li {
	background: rgba(255, 59, 48, 0.1);
	color: var(--red-ink);
}

.pm-character-card--mixi .pm-character-card__traits li {
	background: rgba(255, 217, 61, 0.3);
	color: var(--sun-ink);
}

.pm-character-card__traits li {
	padding: 0.28rem 0.75rem;
	border-radius: var(--radius-pill);
	font-size: 0.75rem;
	font-weight: 800;
}

.pm-character-card__cta {
	margin-block-start: auto;
	padding-block-start: 1.5rem;
}

/* ==========================================================================
   Role swap
   ==========================================================================
   Drawn as a closed loop rather than a list, because a list has an end and
   this does not. The numbers are real information here — the steps happen in
   that order — which is the only reason they earn a place.
   ========================================================================== */

.pm-roleswap {
	margin-block-start: 1.25rem;
}

.pm-roleswap__title {
	max-inline-size: 42rem;
	margin-block: 0.5rem 0;
	font-size: var(--step-2);
}

.pm-roleswap__body {
	max-inline-size: 42rem;
	margin-block: 0.85rem 0;
	color: var(--ink-soft);
	line-height: 1.65;
}

.pm-roleswap__steps {
	display: grid;
	gap: 0.75rem;
	padding: 0;
	margin-block: 1.75rem 0;
	list-style: none;
	grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
	.pm-roleswap__steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 62rem) {
	.pm-roleswap__steps {
		grid-template-columns: repeat(4, 1fr);
	}
}

.pm-roleswap__step {
	padding: 1rem;
	border: 1px solid;
	border-radius: var(--radius-lg);
}

.pm-roleswap__step--pixi {
	border-color: rgba(255, 59, 48, 0.25);
	background: rgba(255, 59, 48, 0.05);
}

.pm-roleswap__step--mixi {
	border-color: rgba(255, 217, 61, 0.45);
	background: rgba(255, 217, 61, 0.14);
}

.pm-roleswap__step--neutral {
	border-color: var(--hairline);
	background: var(--surface-sunken);
}

.pm-roleswap__num {
	font-size: 0.7rem;
	font-weight: 900;
	font-variant-numeric: tabular-nums;
}

.pm-roleswap__step--pixi .pm-roleswap__num {
	color: var(--red-ink);
}

.pm-roleswap__step--mixi .pm-roleswap__num {
	color: var(--sun-ink);
}

.pm-roleswap__step--neutral .pm-roleswap__num {
	color: var(--ink-muted);
}

.pm-roleswap__step p {
	margin-block: 0.3rem 0;
	font-size: var(--step--1);
	font-weight: 800;
	line-height: 1.4;
}

/* ==========================================================================
   Toy Journey
   ==========================================================================
   One toy's history, shown as the chain of people it passed through rather
   than as a list of dates. This is the argument the brand rests on: the bear
   is not second-hand, it is well-travelled — and you can count the hands.
   ========================================================================== */

.pm-journey__head {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: flex-end;
	justify-content: space-between;
}

.pm-journey__label {
	margin: 0;
	color: var(--red-ink);
	font-family: var(--font-latin);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

[dir="rtl"] .pm-journey__label {
	font-family: var(--font-fa);
	letter-spacing: 0;
}

/* The catalogue number stays left-to-right in both languages: bidi otherwise
   moves the `#` to the far side of the digits in Persian. */
.pm-journey__code {
	font-variant-numeric: tabular-nums;
	direction: ltr;
	unicode-bidi: isolate;
}

.pm-journey__name {
	margin-block: 0.5rem 0;
	font-size: var(--step-2);
}

/* A `dl` may only hold `dt`/`dd` pairs, and `dt` must come first — so the
   number is lifted above its label with `column-reverse` rather than by
   reordering the markup and breaking the association. */
.pm-journey__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	margin: 0;
}

.pm-journey__stat {
	display: flex;
	flex-direction: column-reverse;
}

.pm-journey__stat dt {
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--ink-muted);
}

.pm-journey__stat dd {
	margin: 0;
	font-size: var(--step-1);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: var(--ink);
}

/* The chain scrolls rather than wraps: a wrapped timeline reads as two
   separate journeys, which is the one thing it must not say. */
.pm-journey__scroll {
	margin-block-start: 1.75rem;
	margin-inline: -0.5rem;
	padding: 0 0.5rem 0.5rem;
	overflow-x: auto;
	scrollbar-width: thin;
}

.pm-journey__chain {
	display: flex;
	align-items: stretch;
	gap: 0.5rem;
	min-inline-size: max-content;
	padding: 0;
	margin: 0;
	list-style: none;
}

@media (min-width: 40rem) {
	.pm-journey__chain {
		gap: 0.75rem;
	}
}

.pm-journey__stop {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

@media (min-width: 40rem) {
	.pm-journey__stop {
		gap: 0.75rem;
	}
}

.pm-journey__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	inline-size: 104px;
	padding: 1rem 0.75rem;
	border: 1px solid;
	border-radius: var(--radius-lg);
	text-align: center;
}

@media (min-width: 40rem) {
	.pm-journey__card {
		inline-size: 124px;
	}
}

.pm-journey__card--pixi {
	border-color: rgba(255, 59, 48, 0.25);
	background: rgba(255, 59, 48, 0.06);
}

.pm-journey__card--mixi {
	border-color: rgba(255, 217, 61, 0.45);
	background: rgba(255, 217, 61, 0.16);
}

.pm-journey__who {
	margin: 0;
	font-family: var(--font-latin);
	font-size: var(--step--1);
	font-weight: 800;
	letter-spacing: 0.1em;
	direction: ltr;
	unicode-bidi: isolate;
}

.pm-journey__card--pixi .pm-journey__who {
	color: var(--red-ink);
}

.pm-journey__card--mixi .pm-journey__who {
	color: var(--sun-ink);
}

.pm-journey__what {
	margin: 0;
	font-size: 0.68rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--ink-muted);
}

.pm-journey__arrow {
	flex: none;
	inline-size: 1.25rem;
	block-size: 1.25rem;
	color: var(--ink-faint);
}

.pm-journey__story {
	margin-block: 1.5rem 0;
	font-size: var(--step-1);
	font-weight: 800;
}

.pm-journey__philosophy {
	max-inline-size: 36rem;
	margin-block: 0.6rem 0;
	color: var(--ink-soft);
	font-size: var(--step--1);
	line-height: 1.65;
}

/* The legend is what keeps identity off colour alone: each swatch is named. */
.pm-journey__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	padding: 0;
	margin-block: 1.25rem 0;
	list-style: none;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--ink-muted);
}

.pm-journey__legend li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.pm-journey__swatch {
	inline-size: 0.625rem;
	block-size: 0.625rem;
	border-radius: var(--radius-pill);
}

.pm-journey__swatch--pixi {
	background: var(--red);
}

.pm-journey__swatch--mixi {
	background: var(--sun);
}

/* ==========================================================================
   The problem
   ==========================================================================
   Four figures. They are the point of the section, so they are set as the
   largest thing in each tile — the one place in the theme where a big number
   earns the space.
   ========================================================================== */

.pm-problem__grid {
	display: grid;
	gap: 1rem;
	margin-block-start: 2.5rem;
	grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
}

.pm-fact {
	padding: 1.5rem;
	border: 1px solid var(--hairline);
	border-radius: var(--radius-xl);
	background: var(--surface);
}

.pm-fact__stat {
	display: block;
	font-family: var(--font-latin);
	font-size: var(--step-3);
	font-weight: 800;
	line-height: 1.1;
	color: var(--red-ink);
	font-variant-numeric: tabular-nums;
}

[dir="rtl"] .pm-fact__stat {
	font-family: var(--font-fa);
}

.pm-fact__title {
	margin-block: 0.75rem 0;
	font-size: var(--step-0);
	font-weight: 800;
}

.pm-fact__desc {
	margin-block: 0.4rem 0;
	color: var(--ink-soft);
	font-size: var(--step--1);
	line-height: 1.55;
}

.pm-problem__prose {
	max-inline-size: var(--measure);
	margin-block-start: 2.5rem;
	margin-inline: auto;
	text-align: center;
}

.pm-problem__prose p {
	color: var(--ink-soft);
	line-height: 1.7;
}

/* ==========================================================================
   How it works
   ==========================================================================
   Six steps, numbered, because the order is the information: you cannot spend
   before you earn, and you cannot be verified before you are requested.
   ========================================================================== */

/* Three columns, not `auto-fit`.
 *
 * There are six steps, and `auto-fit` at a 15rem minimum gives four of them at
 * desktop width — leaving a row of four and a row of two with half the row
 * empty beside it. Six items want a column count they divide by: three, then
 * two, then one. The count is chosen for the content rather than for whatever
 * happens to fit. */
.pm-steps {
	display: grid;
	gap: 1rem;
	counter-reset: pm-step;
	padding: 0;
	margin-block-start: 2.5rem;
	list-style: none;
	grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
	.pm-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 62rem) {
	.pm-steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pm-step {
	position: relative;
	padding: 1.5rem;
	border: 1px solid var(--hairline);
	border-radius: var(--radius-xl);
	background: var(--surface);
	counter-increment: pm-step;
}

.pm-step::before {
	content: counter(pm-step, decimal-leading-zero);
	display: flex;
	align-items: center;
	justify-content: center;
	inline-size: 2.5rem;
	block-size: 2.5rem;
	margin-block-end: 1rem;
	border-radius: var(--radius-pill);
	background-image: var(--cta-gradient);
	color: #fff;
	font-family: var(--font-latin);
	font-size: var(--step--1);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.pm-step h3 {
	margin-block: 0 0.5rem;
	font-size: var(--step-1);
}

.pm-step p {
	margin: 0;
	color: var(--ink-soft);
	font-size: var(--step--1);
	line-height: 1.6;
}

/* ==========================================================================
   Why PIXIMIXI
   ========================================================================== */

.pm-why {
	display: grid;
	gap: clamp(1.5rem, 1rem + 3vw, 3rem);
	align-items: start;
	grid-template-columns: 1fr;
}

@media (min-width: 62rem) {
	.pm-why {
		grid-template-columns: 0.9fr 1.1fr;
	}
}

.pm-why__points {
	display: grid;
	gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
	grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
}

.pm-why__point {
	padding: 1.25rem;
	border-inline-start: 3px solid var(--sun);
	border-radius: 0 var(--radius) var(--radius) 0;
	background: var(--surface);
}

[dir="rtl"] .pm-why__point {
	border-radius: var(--radius) 0 0 var(--radius);
}

.pm-why__point h3 {
	margin-block: 0 0.4rem;
	font-size: var(--step-0);
}

.pm-why__point p {
	margin: 0;
	color: var(--ink-soft);
	font-size: var(--step--1);
	line-height: 1.6;
}

/* ==========================================================================
   Donation programme
   ==========================================================================
   Deliberately plain. The copy does not describe a child in need and there is
   no photograph of one: the programme is stated as a mechanism the owner can
   choose, which is the dignified way to put it and also the true one.
   ========================================================================== */

.pm-impact {
	background-color: var(--sun-soft);
	background-image: linear-gradient(150deg, rgba(255, 217, 61, 0.35) 0%, rgba(255, 241, 168, 0.5) 100%);
}

.pm-impact__inner {
	display: grid;
	gap: clamp(1.5rem, 1rem + 3vw, 3rem);
	align-items: center;
	grid-template-columns: 1fr;
}

@media (min-width: 56rem) {
	.pm-impact__inner {
		grid-template-columns: 1.2fr 0.8fr;
	}
}

.pm-impact__title {
	margin-block: 0;
	font-size: var(--step-3);
}

.pm-impact__body {
	max-inline-size: var(--measure);
	margin-block: 1rem 0;
	color: #4a3a05;
	line-height: 1.7;
}

.pm-impact__figure {
	padding: 1.5rem;
	border: 1px solid rgba(122, 104, 29, 0.2);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.75);
	text-align: center;
}

.pm-impact__number {
	display: block;
	font-family: var(--font-latin);
	font-size: var(--step-4);
	font-weight: 800;
	line-height: 1;
	color: var(--sun-ink);
	font-variant-numeric: tabular-nums;
}

[dir="rtl"] .pm-impact__number {
	font-family: var(--font-fa);
}

.pm-impact__caption {
	margin-block: 0.75rem 0;
	color: #4a3a05;
	font-size: var(--step--1);
	font-weight: 700;
	line-height: 1.5;
}

/* ==========================================================================
   Closing call to action
   ========================================================================== */

.pm-final {
	padding-block: var(--section-y);
	background-image: var(--cta-gradient);
	color: #fff;
	text-align: center;
}

.pm-final__inner {
	max-inline-size: 46rem;
	margin-inline: auto;
}

.pm-final h2 {
	margin-block: 0;
	color: #fff;
	font-size: var(--step-4);
}

.pm-final p {
	margin-block: 1rem 2rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: var(--step-1);
	font-weight: 600;
}

.pm-final .pm-btn--primary {
	background-image: none;
	background-color: #fff;
	box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.35);
	color: var(--red-ink);
}

.pm-final .pm-btn--primary:hover,
.pm-final .pm-btn--primary:focus {
	background-color: #fff;
	box-shadow: 0 16px 34px -12px rgba(0, 0, 0, 0.45);
	color: var(--red-solid);
}

.pm-final .pm-btn--secondary {
	border-color: rgba(255, 255, 255, 0.7);
	background: transparent;
	color: #fff;
}

.pm-final .pm-btn--secondary:hover,
.pm-final .pm-btn--secondary:focus {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

/* ==========================================================================
   Landing pages built from patterns
   ==========================================================================
   `style.css` clamps `.entry-content > *` to the reading measure, which is right
   for an article and wrong for a page assembled from full-width sections. This
   releases that clamp; each pattern is an `alignfull` group with a constrained
   inner layout, so it sets its own width and centres its own content.
   ========================================================================== */

.pm-landing__content > * {
	max-inline-size: none;
	margin-inline: 0;
}

/* Anything the author drops in that is *not* one of the patterns — a stray
   paragraph, a heading — still gets a readable column and a side gutter, rather
   than running the full width of a desktop monitor. */
.pm-landing__content > :is(p, h1, h2, h3, h4, h5, h6, ul, ol, blockquote, figure, pre, table) {
	max-inline-size: min(var(--measure), calc(100% - 2 * var(--gutter)));
	margin-inline: auto;
}

/* ==========================================================================
   FAQ
   ==========================================================================
   Native `details`/`summary`: it is keyboard-accessible, searchable by the
   browser's own find, and works with no JavaScript at all.
   ========================================================================== */

.pm-faq {
	max-inline-size: 48rem;
	margin-block-start: 2.5rem;
	margin-inline: auto;
}

.pm-faq__item {
	border: 1px solid var(--hairline);
	border-radius: var(--radius);
	background: var(--surface);
}

.pm-faq__item + .pm-faq__item {
	margin-block-start: 0.65rem;
}

.pm-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	font-size: var(--step-0);
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.pm-faq__item summary::-webkit-details-marker {
	display: none;
}

.pm-faq__item summary::after {
	content: "+";
	flex: none;
	color: var(--red-ink);
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1;
}

.pm-faq__item[open] summary::after {
	content: "\2212";
}

.pm-faq__item[open] summary {
	border-block-end: 1px solid var(--hairline);
}

.pm-faq__answer {
	padding: 1rem 1.25rem;
	color: var(--ink-soft);
	line-height: 1.7;
}

.pm-faq__answer > :last-child {
	margin-block-end: 0;
}
