/* ============================================================
   WE ARE WITH YOU — Community Portal stylesheet.
   Loads AFTER css/style.css and reuses its design tokens
   (--paper, --ink, --gold, --blue, fonts, buttons, cards).
   Nothing in here changes the public website's styling.
   ============================================================ */

/* ── page scaffold ── */
/* The site nav is fixed and transparent, so every portal page starts
   with an ink band behind it (#portal-nav), exactly like the dark
   heroes on the main site. On auth pages the band simply stays empty. */
.portal-main { min-height: 72svh; }
.portal-main > .container { padding-block: var(--space-md) var(--space-xl); }
#portal-nav { background: var(--ink); padding-top: 70px; min-height: 74px; }

/* ── portal navigation (below the main site nav) ── */
.portal-nav { background: var(--ink); border-bottom: 1px solid var(--line-d); }
.portal-nav__inner { max-width: var(--max-w); margin-inline: auto; }
.portal-nav__brand {
  align-self: center; margin-right: 0.6rem; padding: 0 0.25rem;
  font-family: var(--display); font-size: 0.92rem; color: var(--gold-2); white-space: nowrap;
}
.portal-nav__list {
  display: flex; gap: 0.15rem; align-items: stretch;
  overflow-x: auto; scrollbar-width: thin;
  padding: 0 var(--space-md);
}
.portal-nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.8rem 0.9rem; white-space: nowrap;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(250,248,243,0.72); border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.portal-nav__link:hover, .portal-nav__link:focus-visible { color: var(--gold-2); }
.portal-nav__link.is-active { color: var(--white); border-bottom-color: var(--gold); }
.portal-nav__ring { color: var(--gold); font-size: 0.5rem; }
.portal-nav__logout { margin-left: auto; color: rgba(250,248,243,0.55); }
.portal-nav__logout:hover { color: var(--gold-2); }

/* ── hero blocks ── */
.phome-hero, .pintro, .pcommunity-hero { padding-block: var(--space-lg) var(--space-sm); }
.phome-hero h1, .pintro h1, .pcommunity-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 0.4rem; }
.phome-hero__sub { color: var(--muted); }
.pintro__lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; margin-top: 0.6rem; }
.logo-chip--portal { height: 74px; max-width: 220px; margin-bottom: 1.1rem; }

/* ── sections ── */
.psection { padding-block: var(--space-md); }
.psection__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: var(--space-sm); }
.psection__head h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.psection__more { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; color: var(--blue); white-space: nowrap; }
.psection__more:hover { color: var(--gold); }

/* ── filter bar: quiet text tabs with an underline (scrolls on mobile) ── */
.pfilterbar {
  display: flex; gap: 1.1rem; flex-wrap: nowrap; overflow-x: auto;
  border-bottom: 1px solid var(--line); margin-top: 0.4rem;
  scrollbar-width: none;
}
.pfilterbar::-webkit-scrollbar { display: none; }
.pfilter {
  padding: 0.55rem 0.1rem; border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-size: 0.88rem; font-weight: 500; color: var(--muted); white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.pfilter:hover { color: var(--ink); }
.pfilter.is-active { color: var(--ink); border-bottom-color: var(--gold); font-weight: 600; }

/* ── content cards ── */
.pcards .card { gap: 0.45rem; }
.pcard__thumb {
  display: block; aspect-ratio: 16 / 9; margin: calc(var(--space-md) * -1);
  margin-bottom: 0.6rem; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(150deg, var(--ink-2), var(--ink));
  position: relative;
}
.pcard__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pcard__thumb-fallback {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(196,162,78,0.5); font-family: var(--display); font-size: 2.6rem; font-style: italic;
}
.pcard__meta { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.pcard__title { font-size: 1.18rem; }
.pcard__title a:hover { color: var(--blue); }
.pcard__communities { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); max-width: none; }
.pcard__desc { font-size: 0.92rem; color: var(--muted); max-width: none; flex: 1; }
.pcard__date { font-size: 0.78rem; color: var(--muted); max-width: none; }

/* ── progress bar ── */
.pprogress { height: 6px; border-radius: 4px; background: var(--mist); overflow: hidden; }
.pprogress__fill { height: 100%; background: var(--gold); border-radius: 4px; }

/* ── badges ── */
.pbadge {
  display: inline-flex; align-items: center; padding: 0.14rem 0.5rem; border-radius: 4px;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid transparent; white-space: nowrap;
}
.pbadge--muted { background: var(--mist); color: var(--muted); }
.pbadge--blue  { background: rgba(62,107,143,0.12); color: var(--blue); }
.pbadge--gold  { background: rgba(196,162,78,0.16); color: #8a6d24; }
.pbadge--green { background: rgba(46,125,80,0.12);  color: #2E7D50; }
.pbadge--red   { background: rgba(166,61,61,0.1);   color: #A63D3D; }

/* ── skeleton / empty / error states ── */
.pskeleton { display: grid; gap: 0.9rem; padding-block: var(--space-md); }
.pskeleton__bar {
  height: 84px; border-radius: var(--radius);
  background: linear-gradient(100deg, var(--mist) 40%, #f7f4ec 50%, var(--mist) 60%);
  background-size: 200% 100%; animation: pskeleton-sheen 1.4s infinite linear;
}
@keyframes pskeleton-sheen { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .pskeleton__bar { animation: none; } }

.pempty {
  padding: var(--space-sm) 0 var(--space-md);
  border-top: 1px solid var(--line);
  margin-block: var(--space-sm);
}
/* With You: the empty state sits directly under the quick-action rows,
   which already end in a hairline — no second rule, no empty band. */
#read-letters > .pempty { border-top: none; margin-top: 0; padding-top: 0; }
.pempty__mark { display: none; }
.pempty h3 { margin-bottom: 0.3rem; font-size: 1.1rem; }
.pempty p { color: var(--muted); margin-bottom: 0.9rem; }
.pempty--error { border-top-color: rgba(166,61,61,0.4); }

/* ── notices ── */
.pnotice {
  padding: 0.8rem 1.1rem; border-radius: var(--radius); font-size: 0.92rem;
  border: 1px solid var(--line); margin-block: 0.8rem;
}
.pnotice--good { background: rgba(46,125,80,0.07); border-color: rgba(46,125,80,0.35); color: #235c3c; }
.pnotice--bad  { background: rgba(166,61,61,0.06); border-color: rgba(166,61,61,0.4); color: #7d2f2f; }
.pnotice--info { background: rgba(62,107,143,0.07); border-color: rgba(62,107,143,0.3); color: #2d4f6a; }
.pnotice ul { margin-top: 0.4rem; padding-left: 1.1rem; list-style: disc; }

/* ── auth / form cards ── */
.pauth-card {
  max-width: 480px; margin: var(--space-md) auto; padding: var(--space-md);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
}
.pauth-card--wide { max-width: 640px; }
.pauth-card__title { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 0.3rem; }
.pauth-card__links { margin-top: 1.2rem; font-size: 0.9rem; color: var(--muted); }
.pauth-card__links a { color: var(--blue); }
.pauth-card__links a:hover { color: var(--gold); }

.psuccess { text-align: center; }
.psuccess__mark {
  width: 54px; height: 54px; margin: 0 auto 0.8rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46,125,80,0.1); color: #2E7D50; font-size: 1.5rem; font-weight: 700;
}

.pfield { margin-block: 0.9rem; }
.pfield label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.3rem; }
.pfield-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.pinput {
  width: 100%; padding: 0.7rem 0.9rem; font: inherit; font-size: 0.95rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s;
}
.pinput:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(62,107,143,0.15); }
.pinput[aria-invalid="true"] { border-color: #A63D3D; }
.pinput--sm { width: auto; padding: 0.4rem 0.6rem; font-size: 0.85rem; }
.ptextarea { resize: vertical; min-height: 90px; }
select.pinput { appearance: auto; }
.perror { font-size: 0.8rem; color: #A63D3D; margin-top: 0.3rem; min-height: 1em; max-width: none; }
.phint { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; max-width: none; }

.pcheck { display: flex; gap: 0.6rem; align-items: flex-start; margin-block: 0.55rem; font-size: 0.92rem; cursor: pointer; }
.pcheck input { margin-top: 0.28rem; accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }

.pconsent { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; margin-block: 1.2rem; }
.pconsent legend { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); padding-inline: 0.4rem; }
.pconsent__list { display: grid; gap: 0.35rem; margin-bottom: 0.8rem; }
.pconsent__list li { font-size: 0.85rem; color: var(--muted); display: flex; gap: 0.5rem; }
.pconsent__list li::before { content: '·'; color: var(--gold); }

/* ── activity lists / items ── */
.pitems { display: block; margin-top: 0.4rem; }
.pitem__link {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0.8rem 0.25rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
a.pitem__link:hover { background: var(--mist); }
.pitem__main { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.pitem__sub { font-size: 0.78rem; color: var(--muted); }
.pitem__side { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.pitem__side time { font-size: 0.78rem; color: var(--muted); }

.pactivity-list { display: grid; gap: 0.15rem; margin-top: 0.6rem; }
.pactivity-list li {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: 0.5rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem;
}
.pactivity-list li:last-child { border-bottom: none; }
.pactivity-list time, .pactivity-list strong { flex-shrink: 0; font-size: 0.78rem; color: var(--muted); }
.pactivity-list strong { color: var(--ink); font-size: 0.9rem; }

/* ── detail pages ── */
.pcontent { max-width: 760px; margin-inline: auto; padding-block: var(--space-md); }
.pcontent h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-block: 0.5rem; }
.pcontent__meta { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.pcontent__date { color: var(--muted); font-size: 0.88rem; margin-bottom: 1rem; }
.pcontent__image { border-radius: var(--radius); border: 1px solid var(--line); margin-block: 1rem; }
.pcontent__body { margin-top: 1.2rem; }
.pcontent__body p { margin-bottom: 0.9rem; }

.pdetail { display: grid; gap: 0; margin-block: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.pdetail__row { display: grid; grid-template-columns: 180px 1fr; gap: 1rem; padding: 0.6rem 1rem; border-bottom: 1px solid var(--line); }
.pdetail__row:last-child { border-bottom: none; }
.pdetail__row dt { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-top: 0.15rem; }
.pdetail__row dd { font-size: 0.95rem; }

.pletter-paper {
  background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.4rem 1.6rem;
  font-family: var(--display); font-size: 1.08rem; line-height: 1.8;
}

.psteps { margin: 1rem 0 1.2rem 1.3rem; display: grid; gap: 0.45rem; }
.psteps li { padding-left: 0.3rem; }
.psteps li::marker { color: var(--gold); font-weight: 600; }

/* ── video player ── */
.pvideo {
  aspect-ratio: 16 / 9; background: var(--ink); border-radius: var(--radius);
  overflow: hidden; margin-block: 1rem; position: relative;
}
.pvideo iframe, .pvideo video { width: 100%; height: 100%; display: block; border: 0; }
.pvideo__loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(250,248,243,0.6); font-style: italic;
}

/* ── toast ── */
.ptoast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px);
  background: var(--ink); color: var(--paper); padding: 0.8rem 1.4rem;
  border-radius: 100px; font-size: 0.9rem; box-shadow: 0 12px 32px rgba(19,35,58,0.3);
  opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s; z-index: 200;
  max-width: min(92vw, 480px); text-align: center;
}
.ptoast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ── modal ── */
.pmodal {
  position: fixed; inset: 0; z-index: 150; background: rgba(19,35,58,0.55);
  display: flex; align-items: flex-start; justify-content: center; padding: 4vh 1rem; overflow-y: auto;
}
.pmodal__box {
  background: var(--paper); border-radius: var(--radius); width: min(680px, 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35); margin-bottom: 4vh;
}
.pmodal__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.4rem; border-bottom: 1px solid var(--line);
}
.pmodal__head h3 { font-size: 1.2rem; }
.pmodal__close { font-size: 1.5rem; line-height: 1; color: var(--muted); padding: 0.2rem 0.5rem; }
.pmodal__close:hover { color: var(--ink); }
.pmodal__body { padding: 1.2rem 1.4rem 1.6rem; }

/* ── profile / admin layout ── */
.pprofile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); align-items: start; }
.pform-card h3 { margin-bottom: 0.6rem; }
.pform-card--danger { border-color: rgba(166,61,61,0.45); }
.pbtn-danger { background: #A63D3D; color: var(--white); }
.pbtn-danger:hover { background: #8d3232; }
.pbtn-danger:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.pstats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem; margin-top: 1rem; }
.pstat {
  background: var(--white); border: 1px solid var(--line); border-top: 2px solid var(--gold);
  border-radius: var(--radius); padding: 0.9rem 1rem;
}
.pstat__value { font-family: var(--display); font-size: 1.7rem; }
.pstat__label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.padmin-filters {
  display: flex; gap: 0.8rem; align-items: end; flex-wrap: wrap;
  padding: 0.9rem 1.1rem; margin-block: 0.6rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
}
.padmin-filters label { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.padmin-toolbar { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; margin-block: 1rem 0.6rem; }
.padmin-pager { display: flex; gap: 0.6rem; justify-content: center; margin-top: 1rem; }

.ptable-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.ptable { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.ptable th {
  text-align: left; padding: 0.7rem 0.9rem; border-bottom: 2px solid var(--line);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.ptable td { padding: 0.65rem 0.9rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.ptable tr:last-child td { border-bottom: none; }
.ptable__actions { display: flex; gap: 0.4rem; flex-wrap: wrap; }

/* ── responsive ── */
@media (max-width: 960px) {
  .pstats { grid-template-columns: repeat(3, 1fr); }
  .pprofile-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pfield-row { grid-template-columns: 1fr; gap: 0; }
  .pstats { grid-template-columns: repeat(2, 1fr); }
  .pdetail__row { grid-template-columns: 1fr; gap: 0.15rem; }
  .pitem__link { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .pauth-card { padding: var(--space-sm); }
  .portal-nav__list { padding: 0 var(--space-sm); }
}

/* ════════════════════════════════════════════════════════════
   PORTAL HOME & HUB PAGES (Aug 2026 redesign) — the portal uses
   the brand type system (Fraunces + Instrument Sans) and a quiet
   action directory instead of illustrated marketing cards. The
   five action illustrations (drawn as one set for the printed
   poster) remain, small, where they identify an action.
   ════════════════════════════════════════════════════════════ */

/* ── welcome header ── */
.hub-head { padding-block: var(--space-sm) 0; }
.hub-head h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 0.25rem; }
.hub-head p { color: var(--muted); }

/* ── the action directory ── */
.hub-actions { list-style: none; margin: var(--space-md) 0 0; padding: 0; border-top: 1px solid var(--line); }
.hub-action {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.05rem 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.hub-action:hover, .hub-action:focus-visible { background: var(--mist); }
.hub-action:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.hub-action__art { flex: 0 0 auto; width: 56px; display: flex; justify-content: center; }
.hub-action__art img { width: 100%; height: auto; max-height: 56px; object-fit: contain; }
.hub-action__body { min-width: 0; flex: 1; }
.hub-action__title { display: block; font-family: var(--display); font-size: 1.22rem; line-height: 1.2; color: var(--ink); }
.hub-action__desc { display: block; font-size: 0.92rem; color: var(--muted); margin-top: 0.1rem; }
.hub-action__go { color: var(--gold); font-size: 1.15rem; flex-shrink: 0; }

/* "Your community" quick line under the actions */
.hub-mycommunity { margin-top: var(--space-md); font-size: 0.95rem; color: var(--muted); max-width: none; }
.hub-mycommunity a { color: var(--blue); font-weight: 500; }
.hub-mycommunity a:hover { color: var(--gold); }

/* ── hub destination page headers ── */
.hub-back { margin: var(--space-sm) 0 0; max-width: none; }
.hub-back a { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; color: var(--blue); }
.hub-back a:hover, .hub-back a:focus-visible { color: var(--gold); }
.hub-page-head { display: flex; align-items: center; gap: 1.1rem; padding-block: var(--space-sm) var(--space-xs); }
.hub-page-head__art { flex: 0 0 auto; width: clamp(48px, 7vw, 64px); height: auto; }
.hub-page-head__title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.1; margin-bottom: 0.2rem; }
.hub-page-head__lead { color: var(--muted); max-width: 56ch; }
.hub-page-head__note { font-size: 0.9rem; color: var(--muted); margin-top: 0.45rem; max-width: none; }
.hub-page-head__note a { color: var(--blue); text-decoration: underline; }
.hub-page-head__note a:hover { color: var(--gold); }
.hub-disclaimer { max-width: none; }

/* ── quick action rows on hub pages (write / request / read) ── */
.hub-quick { list-style: none; margin: 0.4rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.hub-quick li { border-bottom: 1px solid var(--line); }
.hub-quick a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.75rem 0.25rem; transition: background 0.15s;
}
.hub-quick a:hover { background: var(--mist); }
.hub-quick__title { font-family: var(--display); font-size: 1.05rem; }
.hub-quick__desc { flex: 1; font-size: 0.88rem; color: var(--muted); }
.hub-quick__go { color: var(--gold); }
@media (max-width: 640px) {
  .hub-quick a { flex-wrap: wrap; gap: 0.15rem 0.6rem; }
  .hub-quick__desc { flex-basis: 100%; }
}

/* ── communities directory ── */
.pcomm-list { list-style: none; margin: var(--space-sm) 0 0; padding: 0; border-top: 1px solid var(--line); }
.pcomm-row {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 0.95rem 0.4rem; border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.pcomm-row:hover, .pcomm-row:focus-visible { background: var(--mist); }
.pcomm-row__logo { flex: 0 0 88px; display: flex; }
.pcomm-row__logo img { max-height: 40px; max-width: 88px; width: auto; height: auto; object-fit: contain; }
.pcomm-row__body { min-width: 0; flex: 1; }
.pcomm-row__name { display: block; font-family: var(--display); font-size: 1.15rem; color: var(--ink); }
.pcomm-row__mine { display: block; font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-top: 0.05rem; }
.pcomm-row__desc { display: block; font-size: 0.9rem; color: var(--muted); margin-top: 0.1rem; }
.pcomm-row__go { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
@media (max-width: 560px) {
  .pcomm-row__logo { flex-basis: 64px; }
  .pcomm-row__logo img { max-width: 64px; max-height: 32px; }
}

/* ── community page hero logo, shown naturally (no chip box) ── */
.pcomm-logo { display: block; max-height: 48px; width: auto; margin-bottom: 0.9rem; }
.pcomm-mine { font-size: 0.8rem; font-weight: 600; color: var(--gold); margin-bottom: 0.3rem; max-width: none; }

/* ── small screens ── */
@media (max-width: 480px) {
  .hub-action { gap: 0.9rem; }
  .hub-action__art { width: 44px; }
  .hub-page-head { align-items: flex-start; }
}

/* ── respect reduced-motion preferences ── */
@media (prefers-reduced-motion: reduce) {
  .hub-action, .pcomm-row, .hub-quick a, .pitem__link { transition: none; }
}
