/**
 * Press page — site-mockup-v3.html
 * Agent Hub retains .acp-chip-filter aliases at bottom.
 */

body.acp-v3-shell .acp-press-page {
  padding: 0;
  max-width: none;
}

.acp-press-page {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink, #0e0e10);
}

/* Hero */
.press-hero {
  padding: 48px 56px 8px;
}

.press-hero .hero-eyebrow {
  margin-bottom: 0;
}

.press-h1 {
  font-size: clamp(2rem, 3.4vw, 3.125rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink, #0e0e10);
  margin: 14px 0 0;
}

.press-h1 em {
  font-style: normal;
  color: var(--red, #c8202f);
}

.press-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--body, #5c5a57);
  max-width: 680px;
  margin: 16px 0 0;
}

/* Logo wall */
.press-logowall {
  padding: 8px 56px 40px;
  border-bottom: 1px solid var(--border, #e8e3db);
  margin-bottom: 8px;
}

.press-logowall-label {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted, #8a867f);
  text-align: center;
  margin-bottom: 28px;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px 56px;
}

.press-logos img {
  height: 30px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s;
}

.press-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Filter chips */
.press-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 56px 8px;
}

.press-chip {
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--body, #5c5a57);
  background: var(--card, #fff);
  border: 1px solid var(--border, #e8e3db);
  border-radius: 20px;
  padding: 7px 15px;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  white-space: nowrap;
}

.press-chip:hover {
  border-color: var(--ink, #0e0e10);
  color: var(--ink, #0e0e10);
}

.press-chip.active {
  background: var(--red, #c8202f);
  border-color: var(--red, #c8202f);
  color: #fff;
}

.press-chip .chip-count {
  opacity: 0.6;
  margin-left: 4px;
  font-weight: 500;
}

/* Article table */
.press-body {
  padding: 12px 56px 48px;
  transition: opacity 0.2s;
}

.press-body.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.press-table-head,
.press-row {
  display: flex;
  gap: 28px;
  align-items: center;
}

.press-table-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted, #8a867f);
  padding: 0 4px 10px;
  border-bottom: 1px solid var(--border, #e8e3db);
}

.press-row {
  padding: 18px 4px;
  border-bottom: 1px solid var(--border, #e8e3db);
}

.press-th-pub,
.press-col-pub {
  width: 200px;
  flex-shrink: 0;
}

.press-th-main,
.press-col-main {
  flex: 1;
  min-width: 0;
}

.press-th-type,
.press-col-type {
  width: 120px;
  flex-shrink: 0;
  font-size: 12.5px;
  color: var(--muted, #8a867f);
}

.press-col-pub {
  display: flex;
  align-items: center;
}

.press-logo {
  max-height: 26px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}

.press-pubtext {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink, #0e0e10);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.press-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink, #0e0e10);
  margin: 0 0 5px;
}

.press-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.press-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--red, #c8202f);
  text-decoration: none;
  transition: opacity 0.15s;
}

.press-links a:hover {
  opacity: 0.65;
  text-decoration: underline;
}

.press-links .pdf-link {
  color: var(--muted, #8a867f);
}

.press-loadmore-wrap {
  text-align: center;
  margin-top: 34px;
}

.press-loadmore {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink, #0e0e10);
  background: var(--card, #fff);
  border: 1px solid var(--ink, #0e0e10);
  border-radius: 100px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.2s;
}

.press-loadmore:hover {
  background: var(--ink, #0e0e10);
  color: #fff;
}

.press-count {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted, #8a867f);
  margin-top: 14px;
}

@media (max-width: 720px) {
  body.acp-v3-shell .acp-press-page {
    padding: 0;
  }

  .press-hero,
  .press-filter,
  .press-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .press-logowall {
    padding-left: 24px;
    padding-right: 24px;
  }

  .press-logos {
    gap: 28px 36px;
  }

  .press-logos img {
    height: 22px;
  }

  .press-table-head {
    display: none;
  }

  .press-row {
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: flex-start;
    padding: 16px 2px;
  }

  .press-col-pub {
    width: auto;
    order: 1;
  }

  .press-col-type {
    width: auto;
    order: 3;
    font-size: 11px;
  }

  .press-col-main {
    flex-basis: 100%;
    order: 2;
  }
}

/* Agent Hub — shared chip filter (legacy class names) */
body.acp-v3-shell .acp-agent-hub-shell {
  padding: 0 56px 48px;
  max-width: none;
}

.acp-agent-hub-intro {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4.5vw, 56px) 8px;
}

.acp-agent-hub-intro__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red, #c8202f);
  display: flex;
  align-items: center;
  gap: 10px;
}

.acp-agent-hub-intro__title {
  margin: 14px 0 0;
  font-size: clamp(2rem, 3.4vw, 3.125rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.acp-agent-hub-intro__lede {
  margin: 16px 0 0;
  max-width: 42.5rem;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--body, #5c5a57);
}

.acp-chip-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px clamp(24px, 4.5vw, 56px) 8px;
}

.acp-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--body, #5c5a57);
  background: var(--card, #fff);
  border: 1px solid var(--border, #e8e3db);
  border-radius: 20px;
  padding: 7px 15px;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  white-space: nowrap;
}

.acp-chip:hover {
  border-color: var(--ink, #0e0e10);
  color: var(--ink, #0e0e10);
}

.acp-chip.is-active {
  background: var(--red, #c8202f);
  border-color: var(--red, #c8202f);
  color: #fff;
}

.acp-chip__count {
  opacity: 0.6;
  font-weight: 500;
}

.acp-agent-hub-shell .filter_outer {
  display: none;
}

.acp-agent-hub-shell .acp-chip-filter + .pigeon-blog-archive {
  padding-top: 0;
}

@media (max-width: 720px) {
  body.acp-v3-shell .acp-agent-hub-shell {
    padding: 0 24px 32px;
  }
}
