/* Press office */

:root {
  --bg: #e8e5df;
  --paper: #fffcf8;
  --hero: #f5f2ec;
  --ink: #1a1918;
  --charcoal: #3d3a37;
  --muted: #6f6b66;
  --line: #d4d0c8;
  --line-soft: #e8e5df;
  --accent: #b85a18;
  --accent-hover: #8f4512;
  --serif: 'Crimson Text', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --canvas-width: 960px;
  --pad-x: 24px;
  --media-col: 280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, ol, ul, li, figure {
  margin: 0;
}

ol, ul {
  padding: 0;
  list-style: none;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

.po-page {
  padding: 20px 14px 36px;
}

.po-canvas {
  width: 100%;
  max-width: var(--canvas-width);
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(26, 25, 24, 0.06);
  overflow: hidden;
}

.po-accent-bar {
  height: 3px;
  background: var(--accent);
}

.po-hero {
  border-bottom: 1px solid var(--line);
}

.po-hero:not(.po-hero-split) .po-hero-identity {
  border-right: none;
}

/* Hero split: identity left, featured release right (desk preview) */
.po-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  border-bottom: 1px solid var(--line);
}

.po-hero-identity {
  padding: 22px var(--pad-x) 20px;
  background: linear-gradient(160deg, #faf8f5 0%, var(--paper) 100%);
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.po-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.po-logo-wrap {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}

.po-logo-wrap--hero.po-logo-wrap--square {
  width: 52px;
  height: 52px;
}

.po-logo-wrap--hero.po-logo-wrap--wide {
  max-width: 220px;
  height: 52px;
}

.po-logo-mark--large,
.po-logo-large {
  flex-shrink: 0;
}

.po-logo-wrap--hero.po-logo-wrap--square .po-logo-large,
.po-logo-mark--large {
  width: 52px;
  height: 52px;
}

.po-logo-wrap--hero.po-logo-wrap--wide .po-logo-large {
  width: auto;
  max-width: 220px;
  height: 52px;
  object-fit: contain;
}

.po-logo-mark--large {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, white);
  border-radius: 8px;
}

.po-logo-large,
.po-office-footer-logo {
  object-fit: contain;
  background: transparent;
  border: none;
  border-radius: 0;
}

.po-logo-wrap--square .po-logo-large,
.po-logo-wrap--square .po-office-footer-logo {
  border-radius: 50%;
}

.po-brand-sector-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.po-brand-sector-row .po-sector {
  margin: 0;
}

.po-sector {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.po-startup-badge,
.po-nonprofit-badge {
  display: inline-flex;
  padding: 2px 7px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line-soft));
  border-radius: 999px;
}

.po-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.po-tagline {
  font-size: 13px;
  line-height: 1.45;
  color: var(--charcoal);
}

.po-about-lead {
  font-size: 13px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-top: 2px;
}

.po-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.po-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px 5px 8px;
  font-family: inherit;
  font-size: 12px;
  line-height: 1.3;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

button.po-chip {
  margin: 0;
  cursor: pointer;
  appearance: none;
}

.po-chip:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, white);
  box-shadow: 0 1px 4px rgba(26, 25, 24, 0.05);
  color: inherit;
}

.po-chip-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.po-chip-value {
  font-weight: 500;
  color: var(--accent);
}

.po-chip:hover .po-chip-value {
  color: var(--accent-hover);
}

.po-dot {
  margin: 0 6px;
  color: var(--line);
}

.po-hero-spotlight {
  padding: 18px var(--pad-x) 18px 16px;
  background: var(--hero);
  display: flex;
  align-items: flex-start;
}

/* Featured release — compact accent spine card */
.po-featured {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, white);
  border-left: 3px solid var(--accent);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(26, 25, 24, 0.05);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.po-featured:hover {
  border-color: var(--accent);
  box-shadow: 0 3px 14px rgba(26, 25, 24, 0.07);
  color: inherit;
}

.po-featured:hover .po-featured-title {
  color: var(--accent);
}

.po-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.po-featured-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.po-featured-meta .po-release-tag {
  margin: 0;
}

.po-featured-date {
  font-size: 12px;
  color: var(--muted);
}

.po-featured-title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
  transition: color 0.15s ease;
}

.po-featured-lede {
  font-size: 12px;
  line-height: 1.45;
  color: var(--charcoal);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.po-featured-lede--clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.po-featured-cta {
  font-size: 11px;
  font-weight: 600;
}

/* Content band: releases list + media column */
.po-section-title {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.po-content {
  padding: 16px var(--pad-x) 18px;
  border-bottom: 1px solid var(--line-soft);
}

.po-content--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--media-col);
  gap: 24px;
  align-items: start;
}

.po-archive {
  min-width: 0;
}

.po-release-list {
  border-top: 1px solid var(--line-soft);
}

.po-release-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  color: inherit;
  text-decoration: none;
}

.po-release-row:hover {
  color: inherit;
}

.po-release-row:hover .po-release-title {
  color: var(--accent);
}

.po-release-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 10px;
  min-height: 0;
}

.po-release-date {
  font-size: 12px;
  line-height: 1.2;
  color: var(--muted);
}

.po-release-tag {
  display: inline-block;
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.2;
}

.po-release-body {
  min-width: 0;
}

.po-release-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2px;
  transition: color 0.15s ease;
}

.po-release-lede {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Media beside list: 2–3 stacked */
.po-media--stack .po-media-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.po-media--stack .po-video-frame {
  padding-bottom: 56.25%;
}

/* Single video: underneath list */
.po-media--single {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.po-media--single .po-media-inner {
  max-width: 420px;
}

/* 2–3 videos with fewer than 4 list releases: row underneath */
.po-media--row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.po-media--row .po-media-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.po-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #1a1918;
  border-radius: 4px;
  overflow: hidden;
}

.po-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.po-video-caption {
  margin-top: 3px;
  font-size: 11px;
  color: var(--muted);
}

/* Company — continuation + meta */
.po-company {
  padding: 18px var(--pad-x) 22px;
  background: var(--hero);
  border-top: 1px solid var(--line);
}

.po-company-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}

.po-about-copy {
  font-size: 13px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 10px;
  max-width: 42em;
}

.po-company-meta {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  padding-top: 2px;
}

.po-company-meta a {
  font-weight: 500;
}

.po-empty {
  padding: 20px;
  font-size: 13px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 4px;
}

.po-office-footer {
  padding: 18px var(--pad-x) 14px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--paper) 0%, #f7f5f2 100%);
  text-align: center;
}

.po-office-footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.po-logo-wrap--footer.po-logo-wrap--square {
  width: 28px;
  height: 28px;
}

.po-logo-wrap--footer.po-logo-wrap--wide {
  max-width: 140px;
  height: 24px;
}

.po-office-footer-logo {
  display: block;
  object-fit: contain;
}

.po-logo-wrap--footer.po-logo-wrap--square .po-office-footer-logo {
  width: 28px;
  height: 28px;
}

.po-logo-wrap--footer.po-logo-wrap--wide .po-office-footer-logo {
  width: auto;
  max-width: 140px;
  height: 24px;
}

.po-office-footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, white);
  border-radius: 6px;
}

.po-office-footer-copyright {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.po-office-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  margin: 0 0 10px;
  padding: 0;
}

.po-office-footer-links a {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.po-office-footer-links a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.po-powered {
  margin: 0;
  text-align: center;
}

.po-powered a,
.po-powered span {
  font-size: 10px;
  color: var(--muted);
  opacity: 0.65;
}

/* Claim banner (seeded, unclaimed offices) */
.po-claim-banner {
  padding: 16px var(--pad-x);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, var(--paper)) 0%, var(--paper) 100%);
  border-top: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line-soft));
}

.po-claim-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.po-claim-banner-text {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.po-claim-banner-cta {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  background: var(--accent);
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.po-claim-banner-cta:hover {
  color: white;
  background: var(--accent-hover);
}

@media (max-width: 520px) {
  .po-claim-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Seeded office: typed sections ─────────────────────────────────── */
/* One page, typed to the data we KNOW is coming. Each event type gets its
   own visually distinct section — not a flat chronological stack. */

.po-hero-seeded .po-hero-identity {
  border-right: none;
}

/* Type pills — shared across all seeded sections */
.po-pill {
  display: inline-block;
  padding: 1px 7px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  line-height: 1.5;
}
.po-pill--milestone { color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, white); }
.po-pill--product { color: #2f7d5b; background: color-mix(in srgb, #2f7d5b 12%, white); }
.po-pill--community { color: #3a6ea5; background: color-mix(in srgb, #3a6ea5 12%, white); }
.po-pill--funding { color: #8a5a2b; background: color-mix(in srgb, #8a5a2b 12%, white); }
.po-pill--media { color: #b23a6b; background: color-mix(in srgb, #b23a6b 12%, white); }
.po-pill--launch { color: #7c4ddb; background: color-mix(in srgb, #7c4ddb 12%, white); }

/* Seeded sections share padding + divider */
.po-seeded-section {
  padding: 18px var(--pad-x) 22px;
  border-bottom: 1px solid var(--line-soft);
}
.po-seeded-section--milestones { background: linear-gradient(180deg, var(--hero) 0%, var(--paper) 100%); }

/* Hero spotlight — Recent activity card (reuses .po-featured shell) */
.po-featured--seeded {
  border-left: 3px solid var(--accent);
}
.po-featured-lede--mono {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 11.5px;
}

/* Milestones — prominent cards */
.po-milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.po-milestone-card {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, white);
  border-left: 3px solid var(--accent);
  border-radius: 5px;
}
.po-milestone-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.po-milestone-date {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.po-milestone-title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.po-milestone-subtitle {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 6px;
}
.po-milestone-source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.po-milestone-source:hover { color: var(--accent-hover); }
.po-milestone-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.po-batch-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, white);
  border-radius: 999px;
}
.po-votes {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}
.po-milestone-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  align-items: center;
}
.po-milestone-source--sub {
  color: var(--muted);
  font-weight: 500;
}
.po-milestone-source--sub:hover { color: var(--accent); }

/* Community — HN spine timeline */
.po-community-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.po-community-list::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
.po-comm-item {
  position: relative;
  padding-left: 28px;
  padding-bottom: 14px;
}
.po-comm-item:last-child { padding-bottom: 0; }
.po-comm-rail {
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  display: flex;
  justify-content: center;
}
.po-comm-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid #3a6ea5;
  box-shadow: 0 0 0 3px var(--paper);
}
.po-comm-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3px;
}
.po-comm-date {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.po-comm-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 4px;
}
.po-comm-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.po-comm-meta {
  font-size: 11px;
  color: var(--muted);
}
.po-comm-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.po-comm-link:hover { color: var(--accent-hover); }

/* Releases — GitHub compact block */
.po-release-block {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}
.po-rel-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.po-rel-date {
  font-size: 11px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
  width: 84px;
}
.po-rel-link {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  color: #2f7d5b;
  text-decoration: none;
}
.po-rel-link:hover { color: #236449; }
.po-rel-version {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
}
.po-rel-repo {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 11px;
  color: var(--muted);
  margin-left: auto;
}
.po-rel-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.po-rel-more:hover { color: var(--accent-hover); }

/* Community + Media two-column row (underneath Milestones) */
.po-seeded-row--split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 0;
}
.po-seeded-row--community {
  padding-right: 22px;
}
.po-seeded-row--media {
  padding-left: 22px;
  border-left: 1px solid var(--line-soft);
}
/* Media — vertical stack of up to 3 YouTube embeds in the right column */
.po-seeded-media-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.po-seeded-media-stack .po-video-caption {
  font-size: 10.5px;
}
@media (max-width: 760px) {
  .po-seeded-row--split {
    grid-template-columns: 1fr;
  }
  .po-seeded-row--community {
    padding-right: 0;
    padding-bottom: 16px;
  }
  .po-seeded-row--media {
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }
}
@media (max-width: 520px) {
  .po-rel-repo {
    margin-left: 0;
  }
}

/* Article */
.po-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  border-bottom: 1px solid var(--line-soft);
}

.po-article-header {
  padding: 18px var(--pad-x) 16px;
  border-bottom: 1px solid var(--line-soft);
}

.po-article-back {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
}

.po-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}

.po-article-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}

.po-article-lede {
  font-size: 14px;
  line-height: 1.5;
  color: var(--charcoal);
}

.po-article-body {
  padding: 16px var(--pad-x) 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal);
}

.po-article-body p {
  margin-bottom: 1em;
}

.po-article-body p:last-child {
  margin-bottom: 0;
}

.po-article-aside {
  padding: 18px 14px;
  background: var(--hero);
  border-left: 1px solid var(--line-soft);
}

.po-aside-list .po-release-row {
  gap: 3px;
  padding: 10px 0;
}

.po-aside-list .po-release-title {
  font-size: 13px;
}

.po-aside-list .po-release-lede {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.po-aside-all {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 760px) {
  .po-hero-split {
    grid-template-columns: 1fr;
  }

  .po-hero-identity {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }

  .po-content--split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .po-media--stack {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
  }

  .po-media--stack .po-media-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
  }

  .po-article-layout {
    grid-template-columns: 1fr;
  }

  .po-article-aside {
    border-left: none;
    border-top: 1px solid var(--line-soft);
  }
}

@media (max-width: 520px) {
  .po-release-row {
    gap: 4px;
  }

  .po-media--stack .po-media-inner {
    grid-template-columns: 1fr;
  }
}
