/* Shared styles for Solutions / Network / About pages — extends styles.css + products.css */

/* ─── SOLUTIONS ────────────────────────────────────────────────────── */
.sol-row { padding: 72px 0; border-bottom: 1px solid var(--line); }
.sol-row:last-of-type { border-bottom: none; }
.sol-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.sol-grid.flip .sol-visual { order: 2; }

.sol-visual {
  aspect-ratio: 1 / 1;
  max-width: 420px;
  width: 100%;
  border-radius: 24px;
  background: var(--pc);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.sol-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18), transparent 60%);
}
.sol-visual-inner {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  color: #fff;
}
.sol-num { font-size: 72px; line-height: 0.9; font-weight: 300; letter-spacing: -0.03em; }
.sol-code { font-size: 11px; letter-spacing: 0.22em; opacity: 0.8; }
.sol-metric { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.sol-metric .v { font-size: 52px; font-weight: 500; line-height: 1; letter-spacing: -0.02em; display: flex; align-items: baseline; gap: 6px; }
.sol-metric .v .u { font-size: 18px; opacity: 0.85; }
.sol-metric .k { font-family: 'JetBrains Mono', 'Anuphan', monospace; font-size: 11px; letter-spacing: 0.12em; opacity: 0.75; text-transform: uppercase; }
.sol-ring { position: absolute; border: 1px solid rgba(255,255,255,0.14); border-radius: 50%; }
.sol-ring.r1 { width: 60%; height: 60%; top: -15%; right: -15%; }
.sol-ring.r2 { width: 40%; height: 40%; bottom: -8%; left: -8%; border-style: dashed; }

.sol-title { font-size: clamp(32px, 3.6vw, 48px); letter-spacing: -0.02em; margin-top: 12px; line-height: 1.05; }
.sol-tagline { font-size: 17px; font-weight: 500; color: var(--accent); margin-top: 14px; }
.sol-desc { font-size: 16px; line-height: 1.7; color: var(--fg-dim); margin-top: 16px; max-width: 560px; }

.sol-phases {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.sol-phase {
  display: grid;
  grid-template-columns: 110px 160px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.sol-phase .ph-k { font-size: 11px; letter-spacing: 0.14em; color: var(--accent); text-transform: uppercase; }
.sol-phase .ph-t { font-size: 16px; font-weight: 600; color: var(--navy); }
.sol-phase .ph-d { font-size: 14px; color: var(--fg-dim); line-height: 1.5; }

.sol-products { margin-top: 28px; }
.sol-products-label { font-size: 10px; letter-spacing: 0.18em; color: var(--fg-mute); text-transform: uppercase; }
.sol-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.sol-chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  background: var(--bg-alt);
  transition: all 0.2s;
}
.sol-chip:hover { border-color: var(--accent); color: var(--accent); }

/* Flow — dark band */
.sol-flow {
  background: var(--navy);
  color: var(--fg-on-navy);
  padding: var(--section-pad) 0;
}
.sol-flow-title { font-size: clamp(34px, 4vw, 56px); color: var(--fg-on-navy); letter-spacing: -0.02em; margin-top: 14px; }
.sol-flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-navy); border-left: 1px solid var(--line-navy); }
.sol-step { padding: 36px 28px 40px; border-right: 1px solid var(--line-navy); border-bottom: 1px solid var(--line-navy); }
.sol-step .step-num { font-size: 12px; letter-spacing: 0.2em; color: var(--accent-light); }
.sol-step .step-title { font-size: 20px; font-weight: 600; color: var(--fg-on-navy); margin-top: 18px; }
.sol-step .step-desc { font-size: 14px; line-height: 1.65; color: var(--fg-on-navy-dim); margin-top: 12px; }

/* ─── NETWORK ──────────────────────────────────────────────────────── */
.net-coverage { padding: 96px 0; }
.net-cov-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }

.net-map-frame {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  height: 600px;
  display: flex; align-items: center; justify-content: center;
}
.net-map-label {
  position: absolute; top: 20px; left: 24px;
  font-size: 10px; letter-spacing: 0.2em; color: var(--fg-mute); text-transform: uppercase;
}
.net-map-svg { height: 100%; width: auto; max-width: 100%; }
.net-pin circle { transition: all 0.25s ease; }

/* Real province map */
.net-prov {
  fill: rgba(14, 31, 68, 0.06);
  stroke: var(--bg-alt);
  stroke-width: 0.6;
  transition: fill 0.25s ease;
}
.net-prov.is-region { fill: rgba(240, 129, 36, 0.22); cursor: pointer; }
.net-prov.is-region.on { fill: var(--accent); }
.net-pin circle:last-child { filter: drop-shadow(0 2px 4px rgba(14,31,68,0.25)); }

.net-regions { display: flex; flex-direction: column; border-top: 1px solid var(--line-strong); }
.net-region {
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s ease;
}
.net-region.on { padding-left: 20px; }
.net-region.on .net-reg-name { color: var(--accent); }
.net-reg-top { display: flex; gap: 14px; align-items: center; }
.net-reg-num { font-size: 12px; letter-spacing: 0.15em; color: var(--accent); }
.net-reg-en { font-size: 10px; letter-spacing: 0.2em; color: var(--fg-mute); }
.net-reg-name { font-size: 26px; font-weight: 500; letter-spacing: -0.01em; color: var(--navy); margin-top: 8px; transition: color 0.2s; }
.net-reg-area { font-size: 14px; color: var(--fg-dim); margin-top: 8px; line-height: 1.5; }
.net-reg-foot { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.net-reg-contact { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.net-reg-contact:last-child { border-bottom: none; padding-bottom: 0; }
.net-reg-lead { font-size: 13px; color: var(--fg); font-weight: 500; }
.net-reg-phone { font-size: 13px; color: var(--accent); text-decoration: none; letter-spacing: 0.04em; flex-shrink: 0; }
.net-reg-phone:hover { text-decoration: underline; }

/* Contact — dark band */
.net-contact { background: var(--navy); color: var(--fg-on-navy); padding: var(--section-pad) 0; }
.net-contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: start; }
.net-contact-title { font-size: clamp(36px, 4vw, 56px); color: var(--fg-on-navy); letter-spacing: -0.02em; margin-top: 16px; line-height: 1.05; }
.net-contact-title .accent { color: var(--accent-light); }
.net-contact-lead { font-size: 17px; line-height: 1.65; color: var(--fg-on-navy-dim); margin-top: 22px; max-width: 440px; }

.net-hq {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line-navy);
  display: flex; flex-direction: column; gap: 8px;
}
.net-hq-eyebrow { font-size: 10px; letter-spacing: 0.2em; color: var(--accent-light); text-transform: uppercase; }
.net-hq-name { font-size: 20px; font-weight: 500; color: var(--fg-on-navy); margin-top: 4px; }
.net-hq-addr { font-size: 14px; color: var(--fg-on-navy-dim); }
.net-hq-hours { display: flex; gap: 48px; margin-top: 16px; }
.net-hq-hours > div { display: flex; flex-direction: column; gap: 4px; }
.net-hq-hours .d { font-size: 11px; letter-spacing: 0.12em; color: var(--fg-on-navy-dim); text-transform: uppercase; }
.net-hq-hours .h { font-size: 16px; color: var(--accent-light); font-weight: 500; }

.net-channels { display: flex; flex-direction: column; border-top: 1px solid var(--line-navy); }
.net-channel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: 'k arrow' 'v arrow' 'note arrow';
  column-gap: 24px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line-navy);
  text-decoration: none;
  transition: all 0.2s ease;
}
.net-channel:hover { padding-left: 16px; }
.net-channel:hover .net-ch-v { color: var(--accent-light); }
.net-channel:hover .net-ch-arrow { color: var(--accent-light); transform: translateX(4px); }
.net-ch-k { grid-area: k; font-size: 11px; letter-spacing: 0.16em; color: var(--fg-on-navy-dim); text-transform: uppercase; }
.net-ch-v { grid-area: v; font-size: 26px; font-weight: 500; color: var(--fg-on-navy); margin-top: 6px; letter-spacing: -0.01em; transition: color 0.2s; }
.net-ch-note { grid-area: note; font-size: 13px; color: var(--fg-on-navy-dim); margin-top: 8px; }
.net-ch-arrow { grid-area: arrow; align-self: center; color: var(--fg-mute); transition: all 0.2s; }

/* ─── ABOUT ────────────────────────────────────────────────────────── */
.ab-story { padding: 96px 0; }
.ab-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; padding-bottom: 64px; border-bottom: 1px solid var(--line); }
.ab-story-head { font-size: clamp(30px, 3.4vw, 46px); letter-spacing: -0.02em; line-height: 1.12; margin-top: 16px; color: var(--navy); }
.ab-story-right { padding-top: 8px; }
.ab-story-p { font-size: 17px; line-height: 1.75; color: var(--fg-dim); margin-bottom: 20px; }
.ab-story-p:last-child { margin-bottom: 0; }

.ab-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.ab-value { padding: 32px 28px 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ab-val-num { font-size: 12px; letter-spacing: 0.18em; color: var(--accent); }
.ab-val-title { font-size: 18px; font-weight: 600; color: var(--navy); margin-top: 16px; }
.ab-val-desc { font-size: 14px; line-height: 1.65; color: var(--fg-dim); margin-top: 12px; }

/* UFSP — dark band */
.ab-ufsp { background: var(--navy); color: var(--fg-on-navy); padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.ab-ufsp::before {
  content: ''; position: absolute; top: -180px; right: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 65%);
  opacity: 0.18; filter: blur(50px);
}
.ab-ufsp .container { position: relative; z-index: 1; }
.ab-ufsp-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.ab-ufsp-title { font-size: clamp(40px, 4.6vw, 68px); color: var(--fg-on-navy); letter-spacing: -0.02em; margin-top: 16px; line-height: 1.02; }
.ab-ufsp-mark { color: var(--accent-light); font-size: 0.85em; letter-spacing: 0.08em; }
.ab-ufsp-sub { font-size: 17px; line-height: 1.7; color: var(--fg-on-navy-dim); margin-top: 28px; max-width: 460px; }

.ab-ufsp-pillars { display: flex; flex-direction: column; }
.ab-pillar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line-navy); }
.ab-pillar:last-child { border-bottom: 1px solid var(--line-navy); }
.ab-pillar .p-num { font-size: 13px; letter-spacing: 0.15em; color: var(--accent); }
.ab-pillar .p-title { font-size: 18px; font-weight: 500; color: var(--fg-on-navy); }
.ab-pillar .p-meta { font-size: 11px; color: var(--fg-on-navy-dim); letter-spacing: 0.1em; text-align: right; }

/* Timeline */
.ab-timeline { padding: var(--section-pad) 0; }
.ab-tl-title { font-size: clamp(34px, 4vw, 56px); letter-spacing: -0.02em; margin-top: 14px; color: var(--navy); }
.ab-tl-list { border-top: 1px solid var(--line-strong); }
.ab-tl-row {
  display: grid;
  grid-template-columns: 140px 24px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.ab-tl-year { font-size: 38px; font-weight: 300; color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.ab-tl-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--navy); border: 3px solid var(--accent-light); align-self: center; }
.ab-tl-h { font-size: 20px; font-weight: 600; color: var(--navy); }
.ab-tl-d { font-size: 15px; line-height: 1.6; color: var(--fg-dim); margin-top: 8px; max-width: 640px; }

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .sol-grid, .sol-grid.flip { grid-template-columns: 1fr; gap: 40px; }
  .sol-grid.flip .sol-visual { order: 0; }
  .sol-visual { max-width: 320px; }
  .sol-flow-grid { grid-template-columns: 1fr 1fr; }
  .net-cov-grid { grid-template-columns: 1fr; gap: 48px; }
  .net-contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .ab-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .ab-values { grid-template-columns: 1fr 1fr; }
  .ab-ufsp-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 620px) {
  .sol-phase { grid-template-columns: 1fr; gap: 4px; }
  .sol-flow-grid { grid-template-columns: 1fr; }
  .ab-values { grid-template-columns: 1fr; }
  .ab-tl-row { grid-template-columns: 80px 16px 1fr; gap: 16px; }
  .ab-tl-year { font-size: 28px; }
}

/* ─── PP (Page) shared header + support + channels ──────────────── */
.pp-header {
  padding: 120px 0 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.pp-crumbs {
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono','Anuphan',monospace;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-mute);
  margin-bottom: 40px;
}
.pp-crumbs a { color: var(--fg-mute); text-decoration: none; transition: color 0.2s; }
.pp-crumbs a:hover { color: var(--accent); }
.pp-crumbs .sep { opacity: 0.5; }
.pp-crumbs .cur { color: var(--fg); }

.pp-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.pp-title {
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-top: 16px;
}
.pp-title .accent { color: var(--accent); }
.pp-header-aside { padding-bottom: 8px; }
.pp-lead { font-size: 18px; line-height: 1.7; color: var(--fg-dim); max-width: 520px; }

.pp-header-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.pp-hs {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pp-hs .v {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
  display: flex; align-items: baseline; gap: 6px;
}
.pp-hs .u { font-size: 16px; color: var(--accent); letter-spacing: 0.06em; font-weight: 500; }
.pp-hs .k { font-size: 13px; color: var(--fg-dim); margin-top: 8px; line-height: 1.4; }

/* ── pp-support (CTA block at bottom of pages) ── */
.pp-support {
  padding: var(--section-pad) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.pp-support-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.pp-support-title {
  font-size: clamp(32px, 3.8vw, 52px);
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-top: 12px;
  line-height: 1.08;
}
.pp-support-title .accent { color: var(--accent); }
.pp-support-lead { font-size: 17px; line-height: 1.65; color: var(--fg-dim); margin-top: 20px; max-width: 480px; }
.pp-support-cta { margin-top: 32px; display: inline-flex; align-items: center; gap: 8px; }

.pp-support-channels { display: flex; flex-direction: column; border-top: 1px solid var(--line-strong); }
.pp-channel {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: 'k arrow' 'v arrow';
  column-gap: 16px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.pp-channel:hover { padding-left: 16px; }
.pp-channel .k {
  grid-area: k;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--fg-mute); text-transform: uppercase;
}
.pp-channel .v {
  grid-area: v;
  font-size: 22px; font-weight: 500;
  color: var(--navy); letter-spacing: -0.01em;
  margin-top: 6px; transition: color 0.2s;
}
.pp-channel:hover .v { color: var(--accent); }
.pp-channel-arrow {
  grid-area: arrow;
  align-self: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-mute); transition: all 0.2s;
  text-decoration: none;
}
.pp-channel:hover .pp-channel-arrow,
.pp-channel-arrow:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

/* ── pp-filterbar (Products filter) ── */
.pp-filterbar {
  position: sticky; top: 72px; z-index: 40;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.pp-filter-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  gap: 24px;
}
.pp-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.pp-tab {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-size: 13px; font-weight: 500;
  color: var(--fg-dim);
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.pp-tab:hover { border-color: var(--navy); color: var(--navy); }
.pp-tab.on { background: var(--navy); border-color: var(--navy); color: #fff; }
.pp-meta-line {
  display: flex; align-items: center; gap: 16px;
  flex-shrink: 0;
}
.pp-divider { width: 1px; height: 14px; background: var(--line-strong); }

/* ── pp-catalog (Products listing) ── */
.pp-catalog-wrap {}
.pp-cat-block { padding: 64px 0; border-bottom: 2px solid var(--line-strong); }
.pp-cat-head {
  padding-bottom: 36px;
  border-bottom: 3px solid;
  margin-bottom: 40px;
}
.pp-cat-title {
  font-size: clamp(30px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-top: 10px;
}
.pp-cat-intro { font-size: 16px; color: var(--fg-dim); margin-top: 14px; max-width: 640px; line-height: 1.65; }

.pp-group { margin-bottom: 40px; }
.pp-group-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.pp-group-bullet { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pp-group-code { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; }
.pp-group-title { font-size: 16px; font-weight: 600; color: var(--navy); flex: 1; }
.pp-group-count { font-size: 11px; letter-spacing: 0.14em; color: var(--fg-mute); text-transform: uppercase; margin-left: auto; }
.pp-group-rule { display: none; }

.pp-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.pp-item-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  flex-direction: column;
}
.pp-item-card:hover { background: var(--bg-alt); }
.pp-item-swatch {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono','Anuphan',monospace;
  font-size: 13px; font-weight: 600; color: #fff;
  letter-spacing: 0.05em;
}
.pp-item-body { flex: 1; }
.pp-item-name {
  font-size: 18px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.pp-item-alt { font-size: 11px; font-family: 'JetBrains Mono','Anuphan',monospace; letter-spacing: 0.12em; color: var(--fg-mute); font-weight: 400; }
.pp-item-role { font-size: 12px; color: var(--accent); font-weight: 500; margin-top: 4px; letter-spacing: 0.04em; }
.pp-item-desc { font-size: 13.5px; line-height: 1.65; color: var(--fg-dim); margin-top: 10px; }
.pp-item-foot {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; margin-top: auto; padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
}
.pp-item-form { font-size: 12px; letter-spacing: 0.08em; color: var(--fg-mute); }
.pp-item-arr {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: all 0.2s;
}
.pp-item-card:hover .pp-item-arr { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── pp-narrow ── */
.pp-narrow { max-width: 820px; }

/* ── Responsive: pp- rules ── */
@media (max-width: 1000px) {
  .pp-header-grid { grid-template-columns: 1fr; gap: 24px; }
  .pp-header-stats { grid-template-columns: repeat(2, 1fr); }
  .pp-support-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .pp-header { padding: 100px 0 48px; }
  .pp-header-stats { grid-template-columns: repeat(2, 1fr); }
  .pp-hs { padding: 20px 16px; }
  .pp-hs .v { font-size: 32px; }
  .pp-filterbar { top: 60px; }
  .pp-items { grid-template-columns: 1fr; }
  .pp-item-card { flex-direction: row; }
  .pp-tab { font-size: 12px; padding: 8px 14px; }
  .pp-meta-line { display: none; }
}
