/* ============================================================
   ABT Briefing Editorial Entry — Bloomberg-density CSS
   Tokens from DESIGN.md (off-white + ink + signal red)
   ============================================================ */

.briefing-entry {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 48px 24px 80px !important;
  display: block !important;
}

/* ---------- Status bar (top row) ---------- */
.briefing-statusbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
  border-top: 1px solid var(--abt-ink, #0a0e1a);
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
  margin-bottom: 36px;
  font-family: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: 0.02em;
}
.briefing-status-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.briefing-status-label {
  color: var(--abt-ink-faint, #6a6f7e);
}
.briefing-status-value {
  color: var(--abt-ink, #0a0e1a);
  font-weight: 600;
}
.briefing-status-pulse {
  margin-left: auto;
  color: var(--abt-signal, #b3261e);
  font-weight: 700;
  letter-spacing: 0.16em;
}
.briefing-pulse-dot {
  width: 7px; height: 7px;
  background: var(--abt-signal, #b3261e);
  border-radius: 50%;
  display: inline-block;
  animation: briefing-pulse 1.6s ease-out infinite;
}
@keyframes briefing-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .briefing-pulse-dot { animation: none; }
}

/* ---------- Header ---------- */
.briefing-header {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
  margin-bottom: 44px;
}

.briefing-title {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--abt-ink, #0a0e1a);
  margin: 0 0 18px;
}

.briefing-deck {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--abt-ink-soft, #33394a);
  margin: 0;
  max-width: 68ch;
}

/* ---------- Feed grid ---------- */
.briefing-feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 24px;
}
@media (min-width: 720px) {
  .briefing-feed { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .briefing-feed { grid-template-columns: repeat(3, 1fr); }
  .briefing-feed .feed-slot.is-featured { grid-column: 1 / -1; }
}

/* ---------- Featured first card ---------- */
.briefing-feed .feed-slot.is-featured {
  padding-bottom: 36px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
}
.briefing-feed .feed-slot.is-featured .article-card {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 22px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
@media (min-width: 880px) {
  .briefing-feed .feed-slot.is-featured .article-card {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
  }
}
.briefing-feed .feed-slot.is-featured .article-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--abt-bg-shade, #eceef3);
  margin: 0 !important;
}
.briefing-feed .feed-slot.is-featured .article-card-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}
.briefing-feed .feed-slot.is-featured .article-card:hover .article-card-image img {
  transform: scale(1.025);
}
.briefing-feed .feed-slot.is-featured .article-card-body { padding: 0 !important; }
.briefing-feed .feed-slot.is-featured .article-card-body::before {
  content: "// LEAD REVIEW";
  display: block;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--abt-signal, #b3261e);
  margin-bottom: 14px;
}
.briefing-feed .feed-slot.is-featured .article-card-title {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.022em !important;
  margin: 0 0 16px !important;
}
.briefing-feed .feed-slot.is-featured .article-card-title a {
  color: var(--abt-ink, #0a0e1a);
  text-decoration: none;
}
.briefing-feed .feed-slot.is-featured .article-card-title a:hover {
  color: var(--abt-signal, #b3261e);
}
.briefing-feed .feed-slot.is-featured .article-card-excerpt {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.0625rem !important;
  line-height: 1.55 !important;
  color: var(--abt-ink-soft, #33394a) !important;
  margin: 0 0 22px !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Standard cards ---------- */
.briefing-feed .article-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.briefing-feed .article-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 16px !important;
  background: var(--abt-bg-shade, #eceef3);
}
.briefing-feed .article-card-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.briefing-feed .article-card:hover .article-card-image img {
  transform: scale(1.04);
}
.briefing-feed .article-card-body {
  padding: 0 !important;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.briefing-feed .article-card-title {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.275rem !important;
  line-height: 1.12 !important;
  letter-spacing: -0.015em !important;
  margin: 0 0 8px !important;
}
.briefing-feed .article-card-title a {
  color: var(--abt-ink, #0a0e1a);
  text-decoration: none;
}
.briefing-feed .article-card-title a:hover {
  color: var(--abt-signal, #b3261e);
}
.briefing-feed .article-card-excerpt {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 14.5px !important;
  line-height: 1.5 !important;
  color: var(--abt-ink-soft, #33394a) !important;
  margin: 0 0 14px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.briefing-feed .article-card-meta {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  color: var(--abt-ink-faint, #6a6f7e) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.briefing-feed .article-card-meta .article-card-category {
  font-weight: 600 !important;
  color: var(--abt-signal, #b3261e) !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  letter-spacing: 0.06em !important;
}
.briefing-feed .article-card-meta .meta-sep {
  color: var(--abt-rule, #d8dce3) !important;
}

/* ---------- Pagination ---------- */
.briefing-pagination {
  margin-top: 64px !important;
  text-align: center !important;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.briefing-pagination .nav-links {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}
.briefing-pagination .page-numbers {
  padding: 10px 16px;
  text-decoration: none;
  color: var(--abt-ink, #0a0e1a);
  border: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}
.briefing-pagination .page-numbers:hover {
  border-color: var(--abt-ink, #0a0e1a);
}
.briefing-pagination .page-numbers.current {
  border-color: var(--abt-signal, #b3261e);
  color: var(--abt-signal, #b3261e);
  font-weight: 700;
}

/* ---------- Misc ---------- */
.briefing-empty {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--abt-ink-faint, #6a6f7e);
  text-align: center;
  padding: 80px 0;
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  .briefing-feed .article-card-image img,
  .briefing-feed .feed-slot.is-featured .article-card-image img {
    transition: none !important;
    transform: none !important;
  }
}
/* ============================================================
   ABT Polish — Article page + Header + Footer micro-refinements
   ============================================================ */

/* ---------- Article header ---------- */
.single-post .entry-header .entry-title,
.single .entry-header .entry-title {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.02 !important;
}

/* Category pills */
.entry-categories .cat-link,
.post-categories a,
.entry-categories a {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: var(--abt-signal, #b3261e) !important;
  background: transparent !important;
  border: 1px solid var(--abt-signal, #b3261e) !important;
  border-radius: 0 !important;
  padding: 4px 10px !important;
  transition: background 180ms ease, color 180ms ease;
}
.entry-categories .cat-link:hover,
.post-categories a:hover,
.entry-categories a:hover {
  background: var(--abt-signal, #b3261e) !important;
  color: #fff !important;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs, .breadcrumb-trail, nav.rank-math-breadcrumb {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11.5px !important;
  letter-spacing: 0.02em !important;
  color: var(--abt-ink-faint, #6a6f7e) !important;
}
.breadcrumbs a, .breadcrumb-trail a, nav.rank-math-breadcrumb a {
  color: var(--abt-ink-faint, #6a6f7e) !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}
.breadcrumbs a:hover, .breadcrumb-trail a:hover, nav.rank-math-breadcrumb a:hover {
  color: var(--abt-ink, #0a0e1a) !important;
  border-bottom-color: var(--abt-ink, #0a0e1a) !important;
}
.breadcrumbs .separator, .breadcrumb-trail .separator {
  color: var(--abt-rule, #d8dce3) !important;
  margin: 0 6px;
}

/* ---------- Share row ---------- */
.share-buttons, .article-share-buttons, .share-row, .post-share {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 12px 0 !important;
}
.share-buttons a, .share-buttons button,
.article-share-buttons a, .share-row a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  color: var(--abt-ink-soft, #33394a) !important;
  border-radius: 0 !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.share-buttons a:hover, .share-buttons button:hover,
.article-share-buttons a:hover, .share-row a:hover {
  background: var(--abt-bg-shade, #eceef3) !important;
  color: var(--abt-signal, #b3261e) !important;
  border-color: var(--abt-rule, #d8dce3) !important;
}
.share-buttons svg, .article-share-buttons svg, .share-row svg {
  width: 16px; height: 16px;
}

/* ---------- TOC sidebar ---------- */
.toc-sidebar, .ez-toc-container, #ez-toc-container {
  font-family: 'Source Sans 3', system-ui, sans-serif !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
.toc-sidebar .toc-title, .ez-toc-title-container .ez-toc-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--abt-ink-faint, #6a6f7e) !important;
  margin-bottom: 16px !important;
}
.toc-sidebar .toc-title::before, .ez-toc-title-container .ez-toc-title::before {
  content: "// ";
  color: var(--abt-signal, #b3261e);
}
.toc-sidebar ul, .ez-toc-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-left: 1px solid var(--abt-rule, #d8dce3);
}
.toc-sidebar a, .ez-toc-list a {
  display: block !important;
  padding: 6px 0 6px 14px !important;
  margin-left: -1px;
  border-left: 1px solid transparent;
  color: var(--abt-ink-soft, #33394a) !important;
  font-size: 13.5px !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  transition: color 180ms ease, border-color 180ms ease;
}
.toc-sidebar a:hover, .ez-toc-list a:hover,
.toc-sidebar a.active, .ez-toc-list a.active {
  color: var(--abt-signal, #b3261e) !important;
  border-left-color: var(--abt-signal, #b3261e) !important;
  font-weight: 600 !important;
}

/* ---------- Deal Alert ---------- */
.deal-alert, .abt-deal-alert {
  background: var(--abt-bg-shade, #eceef3) !important;
  border: 1px solid var(--abt-rule, #d8dce3) !important;
  border-left: 3px solid var(--abt-signal, #b3261e) !important;
  border-radius: 0 !important;
  padding: 16px 18px !important;
  margin: 24px 0 !important;
  font-family: 'Source Sans 3', system-ui, sans-serif;
}
.deal-alert h4, .abt-deal-alert h4 {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--abt-signal, #b3261e) !important;
  margin: 0 0 6px !important;
}
.deal-alert h4::before, .abt-deal-alert h4::before { content: "// "; }
.deal-alert p, .abt-deal-alert p {
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: var(--abt-ink-soft, #33394a) !important;
  margin: 0 !important;
}

/* ---------- Related Articles ---------- */
.related-articles-title, .related-posts-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--abt-ink-faint, #6a6f7e) !important;
  margin-bottom: 14px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
}
.related-articles-title::before, .related-posts-title::before {
  content: "// ";
  color: var(--abt-signal, #b3261e);
}
.related-article-card a, .related-post-card a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--abt-ink, #0a0e1a);
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
  transition: padding-left 200ms cubic-bezier(.2,.8,.2,1);
}
.related-article-card a:hover, .related-post-card a:hover {
  padding-left: 6px;
  color: var(--abt-signal, #b3261e);
}
.related-article-card h4, .related-post-card h4 {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
}

/* ---------- Header ---------- */
.main-navigation a, .site-header nav a {
  transition: color 180ms ease !important;
}
.main-navigation a:focus-visible {
  outline: 2px solid #fff !important;
  outline-offset: 4px !important;
  border-radius: 2px;
}
.main-navigation a:hover {
  color: rgba(240, 242, 247, 0.85) !important;
}

/* ---------- Footer ---------- */
.site-footer a {
  transition: opacity 180ms ease, color 180ms ease !important;
}
.site-footer a:hover {
  opacity: 1 !important;
  color: #fff !important;
}
.site-footer h4, .footer-column-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important;
}
.site-footer h4::before, .footer-column-title::before {
  content: "// ";
  color: var(--abt-signal, #b3261e);
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  .share-buttons a, .related-article-card a, .related-post-card a,
  .toc-sidebar a, .breadcrumbs a {
    transition: none !important;
  }
}
/* ABT Article-page micro-polish — corrected selectors */

.article-tag.article-tag-category,
.article-tag {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: var(--abt-signal, #b3261e) !important;
  background: transparent !important;
  border: 1px solid var(--abt-signal, #b3261e) !important;
  border-radius: 0 !important;
  padding: 4px 10px !important;
  text-decoration: none !important;
  transition: background 180ms cubic-bezier(.2,.8,.2,1), color 180ms ease !important;
}
.article-tag:hover, .article-tag.article-tag-category:hover {
  background: var(--abt-signal, #b3261e) !important;
  color: #fff !important;
}

.article-breadcrumbs {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11.5px !important;
  letter-spacing: 0.02em !important;
  color: var(--abt-ink-faint, #6a6f7e) !important;
  margin-bottom: 20px !important;
}
.article-breadcrumbs a {
  color: var(--abt-ink-faint, #6a6f7e) !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}
.article-breadcrumbs a:hover {
  color: var(--abt-ink, #0a0e1a) !important;
  border-bottom-color: var(--abt-ink, #0a0e1a) !important;
}
.article-breadcrumbs .breadcrumb-sep {
  color: var(--abt-rule, #d8dce3) !important;
  margin: 0 6px !important;
}

.share-buttons {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  padding: 14px 0 !important;
}
.share-buttons .share-btn,
.share-buttons button.share-btn,
.share-buttons a.share-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  color: var(--abt-ink-soft, #33394a) !important;
  border-radius: 0 !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease !important;
}
.share-buttons .share-btn:hover {
  background: var(--abt-bg-shade, #eceef3) !important;
  color: var(--abt-signal, #b3261e) !important;
  border-color: var(--abt-rule, #d8dce3) !important;
}
.share-buttons .share-btn:focus-visible {
  outline: 2px solid var(--abt-signal, #b3261e) !important;
  outline-offset: 2px;
}
.share-buttons svg { width: 16px; height: 16px; }

.deal-cta {
  background: var(--abt-bg-shade, #eceef3) !important;
  border: 1px solid var(--abt-rule, #d8dce3) !important;
  border-left: 3px solid var(--abt-signal, #b3261e) !important;
  border-radius: 0 !important;
  padding: 16px 18px !important;
  margin: 24px 0 !important;
  font-family: 'Source Sans 3', system-ui, sans-serif !important;
}
.deal-cta .deal-cta-title, .deal-cta h4, .deal-cta strong {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--abt-signal, #b3261e) !important;
  margin: 0 0 6px !important;
}
.deal-cta .deal-cta-title::before, .deal-cta h4::before { content: "// "; }
.deal-cta p, .deal-cta span:not(.deal-cta-title) {
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: var(--abt-ink-soft, #33394a) !important;
  margin: 0 !important;
}

.related-articles-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--abt-ink-faint, #6a6f7e) !important;
  margin: 0 0 14px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--abt-rule, #d8dce3) !important;
}
.related-articles-title::before {
  content: "// ";
  color: var(--abt-signal, #b3261e);
}
.related-articles-list a {
  display: block;
  padding: 12px 0;
  text-decoration: none !important;
  color: var(--abt-ink, #0a0e1a) !important;
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
  transition: padding-left 200ms cubic-bezier(.2,.8,.2,1), color 180ms ease;
}
.related-articles-list a:hover {
  padding-left: 6px;
  color: var(--abt-signal, #b3261e) !important;
}

#ez-toc-container {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
#ez-toc-container .ez-toc-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--abt-ink-faint, #6a6f7e) !important;
}
#ez-toc-container .ez-toc-title::before { content: "// "; color: var(--abt-signal, #b3261e); }
.ez-toc-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-left: 1px solid var(--abt-rule, #d8dce3);
}
.ez-toc-list a {
  display: block !important;
  padding: 6px 0 6px 14px !important;
  margin-left: -1px;
  border-left: 1px solid transparent;
  color: var(--abt-ink-soft, #33394a) !important;
  font-size: 13.5px !important;
  text-decoration: none !important;
  transition: color 180ms ease, border-color 180ms ease;
}
.ez-toc-list a:hover {
  color: var(--abt-signal, #b3261e) !important;
  border-left-color: var(--abt-signal, #b3261e) !important;
  font-weight: 600 !important;
}

/* Nav-deals with signal-red pulsing dot */
.nav-deals {
  font-family: 'Source Sans 3', system-ui, sans-serif !important;
  color: #fff !important;
  position: relative;
  padding-left: 14px !important;
}
.nav-deals::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 7px; height: 7px;
  background: var(--abt-signal, #b3261e);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(179, 38, 30, 0.6);
  animation: abt-deal-pulse 2.4s ease-out infinite;
}
@keyframes abt-deal-pulse {
  0% { box-shadow: 0 0 0 0 rgba(179, 38, 30, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(179, 38, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(179, 38, 30, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-deals::before { animation: none; }
  .share-buttons .share-btn, .related-articles-list a,
  .ez-toc-list a, .article-tag, .article-breadcrumbs a {
    transition: none !important;
  }
}
/* ============================================================
   ABT Mobile header rebalance — same layout fix, ABT brand
   ============================================================ */

@media (max-width: 900px) {
  nav.main-nav {
    padding: 12px 16px !important;
    min-height: 60px !important;
    height: auto !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .nav-logo {
    flex: 0 1 auto !important;
    width: auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
    height: auto !important;
    padding: 0 !important;
    text-decoration: none !important;
    min-width: 0 !important;
  }
  .nav-logo-icon {
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
  }
  .nav-logo-text {
    display: inline-block !important;
    font-family: 'Schibsted Grotesk', system-ui, sans-serif !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: -0.005em !important;
    line-height: 1 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 200px !important;
  }
  .nav-title-row { display: inline-block !important; }
  .nav-title-link {
    display: inline-block !important;
    font-family: 'Schibsted Grotesk', system-ui, sans-serif !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: -0.005em !important;
    line-height: 1 !important;
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 200px !important;
  }

  .nav-body {
    flex: 0 0 auto !important;
    width: auto !important;
    height: auto !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 0 !important;
  }
  .nav-links-row {
    width: auto !important;
    height: auto !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .nav-categories { display: none !important; }
  .nav-deals { display: none !important; }

  .theme-switch {
    width: 44px !important;
    height: 24px !important;
    transform: none !important;
  }
  .theme-switch-track {
    width: 44px !important;
    height: 24px !important;
    border-radius: 12px !important;
  }
  .theme-switch-thumb {
    width: 18px !important;
    height: 18px !important;
  }

  .mobile-menu-toggle {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    gap: 5px !important;
    background: transparent !important;
    border: 0 !important;
    color: #fff !important;
  }
  .mobile-menu-toggle span {
    width: 22px !important;
    height: 2px !important;
    background: #fff !important;
    display: block !important;
  }
  .mobile-menu-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 2px;
  }
}

@media (max-width: 420px) {
  .nav-logo-text, .nav-title-link {
    font-size: 12.5px !important;
    max-width: 160px !important;
  }
  .nav-logo { gap: 8px !important; }
  .nav-logo-icon { width: 32px !important; height: 32px !important; flex-basis: 32px !important; }
  .theme-switch { width: 40px !important; height: 22px !important; }
  .theme-switch-track { width: 40px !important; height: 22px !important; }
  .theme-switch-thumb { width: 16px !important; height: 16px !important; }
  .nav-body { gap: 4px !important; }
}
/* ABT mobile header — inject wordmark next to icon */
@media (max-width: 900px) {
  .nav-logo {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }
  .nav-logo::after {
    content: "APEX BUSINESS TECH";
    font-family: 'Schibsted Grotesk', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.005em;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .nav-body .nav-title-row { display: none !important; }
  .nav-body .nav-title-link { display: none !important; }
  .nav-body .nav-logo-text { display: none !important; }
}
@media (max-width: 420px) {
  .nav-logo::after { font-size: 12.5px; }
}
@media (max-width: 360px) {
  .nav-logo::after { font-size: 12px; }
}
/* ABT header — wordmark inside .nav-logo (replaces ::after pseudo) */

@media (min-width: 901px) {
  .nav-logo-wordmark { display: none !important; }
}

@media (max-width: 900px) {
  .nav-logo {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    align-items: center !important;
    gap: 10px !important;
  }
  .nav-logo-wordmark {
    display: inline-block !important;
    font-family: 'Schibsted Grotesk', system-ui, sans-serif !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: -0.005em !important;
    line-height: 1 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .nav-body .nav-title-row,
  .nav-body .nav-title-link,
  .nav-body .nav-logo-text {
    display: none !important;
  }
  .nav-logo::after { content: none !important; }
}

@media (max-width: 420px) {
  .nav-logo-wordmark { font-size: 12.5px !important; }
}
@media (max-width: 360px) {
  .nav-logo-wordmark { font-size: 11.5px !important; }
}
/* ============================================================
   /alternative — ABT Bloomberg-density browse layout
   ============================================================ */

.alt-home-abt {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--abt-ink, #0a0e1a);
}

/* ----- Hero ----- */
.alt-home-abt .alt-hero {
  padding-bottom: 40px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
}
.alt-home-abt .alt-hero-eyebrow {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--abt-signal, #b3261e);
  margin-bottom: 18px;
}
.alt-home-abt .alt-hero-title {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--abt-ink, #0a0e1a);
  margin: 0 0 18px;
  max-width: 24ch;
}
.alt-home-abt .alt-hero-title-period { color: var(--abt-signal, #b3261e); }
.alt-home-abt .alt-hero-deck {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--abt-ink-soft, #33394a);
  margin: 0 0 28px;
  max-width: 68ch;
}
.alt-home-abt .alt-hero-deck strong { color: var(--abt-ink, #0a0e1a); font-weight: 700; }

/* Search — terminal-style */
.alt-home-abt .alt-hero-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  max-width: 640px;
  background: #fff;
  border: 1px solid var(--abt-ink, #0a0e1a);
  border-radius: 0;
  padding: 4px 4px 4px 14px;
}
.alt-home-abt .alt-hero-search-icon {
  width: 18px; height: 18px;
  color: var(--abt-ink-soft, #33394a);
  flex-shrink: 0;
}
.alt-home-abt .alt-hero-search-input {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 13.5px;
  background: transparent;
  border: 0;
  padding: 12px 12px;
  width: 100%;
  color: var(--abt-ink, #0a0e1a);
  outline: 0;
}
.alt-home-abt .alt-hero-search-input::placeholder { color: var(--abt-ink-faint, #6a6f7e); }
.alt-home-abt .alt-hero-search-submit {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--abt-ink, #0a0e1a);
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 180ms ease;
}
.alt-home-abt .alt-hero-search-submit:hover { background: var(--abt-signal, #b3261e); }

/* ----- Category tile grid ----- */
.alt-home-abt .alt-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--abt-rule, #d8dce3);
  border-bottom: 0;
  border-right: 0;
  margin-bottom: 56px;
}
@media (min-width: 700px) { .alt-home-abt .alt-category-grid { grid-template-columns: repeat(4, 1fr); } }

.alt-home-abt .alt-category-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
  border-right: 1px solid var(--abt-rule, #d8dce3);
  background: #fff;
  color: var(--abt-ink, #0a0e1a);
  text-decoration: none;
  transition: background 200ms cubic-bezier(.2,.8,.2,1);
}
.alt-home-abt .alt-category-tile:hover { background: var(--abt-bg-shade, #eceef3); }
.alt-home-abt .alt-category-label {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.alt-home-abt .alt-category-count {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--abt-ink-faint, #6a6f7e);
}
.alt-home-abt .alt-category-tile.is-deals .alt-category-label::before {
  content: "● ";
  color: var(--abt-signal, #b3261e);
}

/* ----- Content ----- */
.alt-home-abt .alt-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1024px) {
  .alt-home-abt .alt-content { grid-template-columns: minmax(0, 1fr) 300px; gap: 60px; }
}

/* Filter row */
.alt-home-abt .alt-filter-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
  margin-bottom: 28px;
}
.alt-home-abt .alt-filter-label {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--abt-ink-faint, #6a6f7e);
}
.alt-home-abt .alt-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.alt-home-abt .alt-filter-pill {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--abt-ink-soft, #33394a);
  padding: 5px 11px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.alt-home-abt .alt-filter-pill:hover {
  color: var(--abt-signal, #b3261e);
  border-color: var(--abt-rule, #d8dce3);
}
.alt-home-abt .alt-filter-pill.is-active {
  color: #fff;
  background: var(--abt-ink, #0a0e1a);
  border-color: var(--abt-ink, #0a0e1a);
}

/* Feed header */
.alt-home-abt .alt-feed-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}
.alt-home-abt .alt-feed-title {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--abt-ink, #0a0e1a);
  margin: 0;
}
.alt-home-abt .alt-feed-meta {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--abt-signal, #b3261e);
}

/* Article feed */
.alt-home-abt .alt-article-feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
}
@media (min-width: 720px) { .alt-home-abt .alt-article-feed { grid-template-columns: 1fr 1fr; } }

.alt-home-abt .alt-article-feed .article-card {
  background: transparent !important; border: 0 !important; box-shadow: none !important;
  display: flex; flex-direction: column;
}
.alt-home-abt .alt-article-feed .article-card-image {
  aspect-ratio: 16 / 10; overflow: hidden;
  margin-bottom: 14px !important;
  background: var(--abt-bg-shade, #eceef3);
}
.alt-home-abt .alt-article-feed .article-card-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.alt-home-abt .alt-article-feed .article-card:hover .article-card-image img { transform: scale(1.04); }
.alt-home-abt .alt-article-feed .article-card-body { padding: 0 !important; flex: 1; display: flex; flex-direction: column; }
.alt-home-abt .alt-article-feed .article-card-title {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  line-height: 1.12 !important;
  letter-spacing: -0.015em !important;
  margin: 0 0 8px !important;
}
.alt-home-abt .alt-article-feed .article-card-title a { color: var(--abt-ink, #0a0e1a); text-decoration: none; }
.alt-home-abt .alt-article-feed .article-card-title a:hover { color: var(--abt-signal, #b3261e); }
.alt-home-abt .alt-article-feed .article-card-excerpt {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 14.5px !important; line-height: 1.5 !important;
  color: var(--abt-ink-soft, #33394a) !important;
  margin: 0 0 14px !important;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.alt-home-abt .alt-article-feed .article-card-meta {
  font-family: 'IBM Plex Mono', ui-monospace, monospace !important;
  font-size: 11px !important; letter-spacing: 0.04em !important; text-transform: uppercase;
  color: var(--abt-ink-faint, #6a6f7e) !important;
  display: flex; align-items: center; gap: 8px; margin-top: auto;
}
.alt-home-abt .alt-article-feed .article-card-category {
  font-weight: 600 !important; color: var(--abt-signal, #b3261e) !important;
  background: transparent !important; padding: 0 !important;
  letter-spacing: 0.06em !important;
}

.alt-home-abt .alt-load-more {
  display: inline-block;
  margin-top: 32px;
  padding: 11px 22px;
  border: 1px solid var(--abt-ink, #0a0e1a);
  color: var(--abt-ink, #0a0e1a);
  text-decoration: none;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}
.alt-home-abt .alt-load-more:hover { background: var(--abt-ink, #0a0e1a); color: #fff; }

/* Sidebar */
.alt-home-abt .alt-sidebar-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
}
.alt-home-abt .alt-sidebar-section:last-child { border-bottom: 0; margin-bottom: 0; }
.alt-home-abt .alt-sidebar-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--abt-ink-faint, #6a6f7e);
  margin: 0 0 16px;
}
.alt-home-abt .alt-sidebar-marker {
  color: var(--abt-signal, #b3261e);
  margin-right: 4px;
}

.alt-home-abt .alt-trending-list { list-style: none; padding: 0; margin: 0; }
.alt-home-abt .alt-trending-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
}
.alt-home-abt .alt-trending-item:last-child { border-bottom: 0; }
.alt-home-abt .alt-trending-rank {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--abt-signal, #b3261e);
  line-height: 1.2;
}
.alt-home-abt .alt-trending-link {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--abt-ink, #0a0e1a);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 180ms ease;
}
.alt-home-abt .alt-trending-link:hover { color: var(--abt-signal, #b3261e); }
.alt-home-abt .alt-trending-cat {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--abt-ink-faint, #6a6f7e);
}

.alt-home-abt .alt-recent-list { list-style: none; padding: 0; margin: 0; }
.alt-home-abt .alt-recent-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--abt-rule, #d8dce3);
}
.alt-home-abt .alt-recent-item:last-child { border-bottom: 0; }
.alt-home-abt .alt-recent-link {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--abt-ink, #0a0e1a);
  text-decoration: none;
  display: block;
  margin-bottom: 3px;
}
.alt-home-abt .alt-recent-link:hover { color: var(--abt-signal, #b3261e); }
.alt-home-abt .alt-recent-meta {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: var(--abt-ink-faint, #6a6f7e);
}

.alt-home-abt .alt-empty {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  color: var(--abt-ink-faint, #6a6f7e);
  padding: 40px 0;
}

@media (prefers-reduced-motion: reduce) {
  .alt-home-abt .alt-article-feed .article-card-image img { transition: none !important; transform: none !important; }
}
/* ============================================================
   ABT /alternative — fixes: light-mode submit blue override + dark-mode polish
   ============================================================ */

/* === Light-mode: defeat theme button override on submit === */
.alt-home-abt .alt-hero-search-submit,
.alt-home-abt button.alt-hero-search-submit {
  background: var(--abt-ink, #0a0e1a) !important;
  color: #fff !important;
  border: 0 !important;
}
.alt-home-abt .alt-hero-search-submit:hover,
.alt-home-abt button.alt-hero-search-submit:hover {
  background: var(--abt-signal, #b3261e) !important;
}

/* === Dark mode overrides === */
[data-theme="dark"] .alt-home-abt {
  color: #f0f2f7;
}

/* Hero */
[data-theme="dark"] .alt-home-abt .alt-hero {
  border-bottom-color: #232838;
}
[data-theme="dark"] .alt-home-abt .alt-hero-title { color: #f0f2f7; }
[data-theme="dark"] .alt-home-abt .alt-hero-title-period { color: var(--abt-signal, #b3261e); }
[data-theme="dark"] .alt-home-abt .alt-hero-deck { color: #c2c7d4; }
[data-theme="dark"] .alt-home-abt .alt-hero-deck strong { color: #f0f2f7; }
[data-theme="dark"] .alt-home-abt .alt-hero-eyebrow { color: var(--abt-signal, #b3261e); }

/* Search bar */
[data-theme="dark"] .alt-home-abt .alt-hero-search {
  background: #131826 !important;
  border-color: #f0f2f7 !important;
}
[data-theme="dark"] .alt-home-abt .alt-hero-search-icon { color: #8e93a3; }
[data-theme="dark"] .alt-home-abt .alt-hero-search-input {
  background: transparent !important;
  color: #f0f2f7 !important;
}
[data-theme="dark"] .alt-home-abt .alt-hero-search-input::placeholder { color: #8e93a3; }
[data-theme="dark"] .alt-home-abt .alt-hero-search-submit {
  background: #f0f2f7 !important;
  color: #0a0e1a !important;
}
[data-theme="dark"] .alt-home-abt .alt-hero-search-submit:hover {
  background: var(--abt-signal, #b3261e) !important;
  color: #fff !important;
}

/* Category grid */
[data-theme="dark"] .alt-home-abt .alt-category-grid {
  border-color: #232838;
}
[data-theme="dark"] .alt-home-abt .alt-category-tile {
  background: #131826;
  color: #f0f2f7;
  border-bottom-color: #232838;
  border-right-color: #232838;
}
[data-theme="dark"] .alt-home-abt .alt-category-tile:hover {
  background: #1a2030;
}
[data-theme="dark"] .alt-home-abt .alt-category-label { color: #f0f2f7; }
[data-theme="dark"] .alt-home-abt .alt-category-count { color: #8e93a3; }

/* Filter row */
[data-theme="dark"] .alt-home-abt .alt-filter-row {
  border-bottom-color: #232838;
}
[data-theme="dark"] .alt-home-abt .alt-filter-label { color: #8e93a3; }
[data-theme="dark"] .alt-home-abt .alt-filter-pill {
  color: #c2c7d4;
}
[data-theme="dark"] .alt-home-abt .alt-filter-pill:hover {
  color: var(--abt-signal, #b3261e);
  border-color: #232838;
}
[data-theme="dark"] .alt-home-abt .alt-filter-pill.is-active {
  background: #f0f2f7;
  color: #0a0e1a;
  border-color: #f0f2f7;
}

/* Feed */
[data-theme="dark"] .alt-home-abt .alt-feed-title { color: #f0f2f7; }
[data-theme="dark"] .alt-home-abt .alt-feed-meta { color: var(--abt-signal, #b3261e); }
[data-theme="dark"] .alt-home-abt .alt-article-feed .article-card-image {
  background: #131826;
}
[data-theme="dark"] .alt-home-abt .alt-article-feed .article-card-title a {
  color: #f0f2f7 !important;
}
[data-theme="dark"] .alt-home-abt .alt-article-feed .article-card-title a:hover {
  color: var(--abt-signal, #b3261e) !important;
}
[data-theme="dark"] .alt-home-abt .alt-article-feed .article-card-excerpt {
  color: #c2c7d4 !important;
}
[data-theme="dark"] .alt-home-abt .alt-article-feed .article-card-meta {
  color: #8e93a3 !important;
}
[data-theme="dark"] .alt-home-abt .alt-article-feed .article-card-category {
  color: var(--abt-signal, #b3261e) !important;
}

/* Load more */
[data-theme="dark"] .alt-home-abt .alt-load-more {
  border-color: #f0f2f7;
  color: #f0f2f7;
}
[data-theme="dark"] .alt-home-abt .alt-load-more:hover {
  background: #f0f2f7;
  color: #0a0e1a;
}

/* Sidebar */
[data-theme="dark"] .alt-home-abt .alt-sidebar-section {
  border-bottom-color: #232838;
}
[data-theme="dark"] .alt-home-abt .alt-sidebar-title { color: #8e93a3; }
[data-theme="dark"] .alt-home-abt .alt-sidebar-marker { color: var(--abt-signal, #b3261e); }

[data-theme="dark"] .alt-home-abt .alt-trending-item { border-bottom-color: #232838; }
[data-theme="dark"] .alt-home-abt .alt-trending-rank { color: var(--abt-signal, #b3261e); }
[data-theme="dark"] .alt-home-abt .alt-trending-link { color: #f0f2f7; }
[data-theme="dark"] .alt-home-abt .alt-trending-link:hover { color: var(--abt-signal, #b3261e); }
[data-theme="dark"] .alt-home-abt .alt-trending-cat { color: #8e93a3; }

[data-theme="dark"] .alt-home-abt .alt-recent-item { border-bottom-color: #232838; }
[data-theme="dark"] .alt-home-abt .alt-recent-link { color: #f0f2f7; }
[data-theme="dark"] .alt-home-abt .alt-recent-link:hover { color: var(--abt-signal, #b3261e); }
[data-theme="dark"] .alt-home-abt .alt-recent-meta { color: #8e93a3; }

[data-theme="dark"] .alt-home-abt .alt-empty { color: #8e93a3; }
/* ============================================================
   /alternative — center hero text and search bar horizontally
   Applies to both CWH and ABT alt-home variants
   ============================================================ */

.alt-home .alt-hero,
.alt-home-cwh .alt-hero,
.alt-home-abt .alt-hero {
  text-align: center;
}

.alt-home .alt-hero-eyebrow,
.alt-home-cwh .alt-hero-eyebrow,
.alt-home-abt .alt-hero-eyebrow {
  display: block;
}

.alt-home-cwh .alt-hero-title,
.alt-home-abt .alt-hero-title {
  margin-left: auto !important;
  margin-right: auto !important;
}

.alt-home-cwh .alt-hero-deck,
.alt-home-abt .alt-hero-deck {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.alt-home-cwh .alt-hero-search,
.alt-home-abt .alt-hero-search {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left;  /* input + button keep their internal alignment */
}
/* ============================================================
   .alt-archive header — CWH and ABT
   ============================================================ */

.alt-archive-header {
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--cwh-rule, #e3dbc7);
}
.alt-home-abt .alt-archive-header {
  border-bottom-color: var(--abt-rule, #d8dce3);
}

/* Eyebrow */
.alt-home-cwh .alt-archive-eyebrow {
  display: block;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cwh-terracotta, #a35a2f);
  margin-bottom: 14px;
}
.alt-home-abt .alt-archive-eyebrow {
  display: block;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--abt-signal, #b3261e);
  margin-bottom: 14px;
}

/* Title */
.alt-home-cwh .alt-archive-title {
  font-family: 'Alegreya', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cwh-ink, #1a1815);
  margin: 0 0 14px;
}
.alt-home-abt .alt-archive-title {
  font-family: 'Schibsted Grotesk', 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--abt-ink, #0a0e1a);
  margin: 0 0 14px;
}

/* Deck */
.alt-home-cwh .alt-archive-deck {
  font-family: 'Alegreya', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--cwh-ink-soft, #4a463f);
  margin: 0;
  max-width: 65ch;
}
.alt-home-abt .alt-archive-deck {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--abt-ink-soft, #33394a);
  margin: 0;
  max-width: 70ch;
}

/* Archive pagination */
.alt-archive-pagination { margin-top: 48px !important; }

/* Dark mode — header borders + text */
[data-theme="dark"] .alt-home-cwh .alt-archive-header { border-bottom-color: #2a3530; }
[data-theme="dark"] .alt-home-cwh .alt-archive-title { color: #f1ece3; }
[data-theme="dark"] .alt-home-cwh .alt-archive-deck { color: #c4bda9; }
[data-theme="dark"] .alt-home-cwh .alt-archive-eyebrow { color: #d49266; }

[data-theme="dark"] .alt-home-abt .alt-archive-header { border-bottom-color: #232838; }
[data-theme="dark"] .alt-home-abt .alt-archive-title { color: #f0f2f7; }
[data-theme="dark"] .alt-home-abt .alt-archive-deck { color: #c2c7d4; }
[data-theme="dark"] .alt-home-abt .alt-archive-eyebrow { color: var(--abt-signal, #b3261e); }
