@font-face {
  font-family: "Saira";
  src: url("/assets/fonts/saira-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("/assets/fonts/rajdhani-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("/assets/fonts/rajdhani-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --article-max: 1180px;
  --article-text: #102033;
  --article-muted: #64748b;
  --article-line: rgba(15, 23, 42, 0.14);
  --article-panel: rgba(255, 255, 255, 0.88);
  --article-cyan: #2563eb;
  --article-green: #60a5fa;
  --article-yellow: #f59e0b;
  --article-rose: #e11d48;
  --article-shadow: 0 18px 46px rgba(31, 41, 55, 0.12);
}

body.article-hub-page {
  color: var(--article-text);
  font-family: Saira, system-ui, sans-serif;
}

.article-page {
  width: min(var(--article-max), calc(100% - 16px));
  margin: 0 auto;
  padding: 24px 0 34px;
}

.article-hero,
.article-layout,
.article-library {
  border: 1px solid var(--article-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(96, 165, 250, 0.04)),
    var(--article-panel);
  box-shadow: var(--article-shadow);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 18px;
  align-items: stretch;
  padding: clamp(14px, 2vw, 22px);
}

.article-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6px, 1.5vw, 12px);
}

.article-eyebrow,
.article-chip,
.article-read {
  font-family: Rajdhani, Saira, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-eyebrow {
  width: max-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 999px;
  color: #2563eb;
  background: rgba(248,251,255, 0.82);
  font-size: 0.78rem;
}

.article-hero h1,
.article-feature h2,
.article-section-heading h2,
.article-side-panel h2,
.article-pick h3,
.article-card h3 {
  margin: 0;
  color: var(--article-text);
  font-family: Rajdhani, Saira, sans-serif;
  letter-spacing: 0;
}

.article-hero h1 {
  max-width: 620px;
  font-size: clamp(2.45rem, 5vw, 4.65rem);
  font-weight: 700;
  line-height: 0.94;
}

.article-hero-copy p,
.article-section-heading p,
.article-pick p,
.article-card p,
.article-feature p,
.article-focus-item span {
  color: var(--article-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.article-hero-copy p {
  max-width: 58ch;
  margin: 12px 0 0;
}

.article-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.article-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(15, 23, 42, 0.11);
  border-radius: 8px;
  color: #475569;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.06);
}

.article-stats strong {
  color: var(--article-text);
  font-family: Rajdhani, Saira, sans-serif;
  font-size: 1.1rem;
}

.article-feature,
.article-pick,
.article-card {
  color: inherit;
  text-decoration: none;
}

.article-feature-slider {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: #102033;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
  isolation: isolate;
}

.article-feature {
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #102033;
  isolation: isolate;
}

.article-feature-slider .article-feature {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px) scale(0.985);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.article-feature-slider .article-feature.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.article-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 320ms ease;
}

.article-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.78)),
    linear-gradient(90deg, rgba(15, 23, 42, 0.72), transparent 58%);
}

.article-feature-content {
  position: absolute;
  inset: auto 16px 16px;
  z-index: 2;
  max-width: 620px;
}

.article-feature h2 {
  margin-top: 9px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 0.96;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.article-feature p {
  max-width: 54ch;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.article-chip {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  color: #2563eb;
  background: rgba(248,251,255, 0.9);
  font-size: 0.72rem;
  line-height: 1;
}

.article-feature .article-chip {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(37, 99, 235, 0.72);
  backdrop-filter: blur(8px);
}

.article-read {
  display: inline-flex;
  margin-top: 13px;
  color: #ffffff;
  font-size: 0.84rem;
}

.article-slider-dots {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(10px);
}

.article-slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  transition:
    width 220ms ease,
    background 220ms ease;
}

.article-slider-dots span.is-active {
  width: 22px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.article-feature:hover img,
.article-pick:hover img,
.article-card:hover img {
  transform: scale(1.045);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 16px;
  margin-top: 10px;
  padding: clamp(12px, 2vw, 18px);
}

.article-section-heading {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--article-line);
}

.article-section-heading h2,
.article-side-panel h2 {
  font-size: clamp(1.72rem, 3vw, 2.55rem);
  line-height: 0.96;
}

.article-section-heading h2::after,
.article-side-panel h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 5px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--article-cyan), var(--article-green));
}

.article-section-heading p {
  max-width: 420px;
  margin: 0;
  text-align: right;
}

.article-pick-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.article-pick {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--article-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-pick img,
.article-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.article-pick img {
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  border-radius: 7px;
}

.article-pick h3 {
  margin-top: 7px;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1;
}

.article-pick p,
.article-card p {
  margin: 7px 0 0;
}

.article-pick:hover,
.article-card:hover {
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 20px 44px rgba(31, 41, 55, 0.14);
  transform: translateY(-2px);
}

.article-side-panel {
  padding: 14px;
  border: 1px solid var(--article-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(59,130,246, 0.08), rgba(250, 204, 21, 0.08)),
    rgba(255, 255, 255, 0.72);
}

.article-focus-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.11);
}

.article-focus-item:last-child {
  border-bottom: 0;
}

.article-focus-item strong {
  display: block;
  color: var(--article-text);
  font-family: Rajdhani, Saira, sans-serif;
  font-size: 1.15rem;
  line-height: 1;
}

.article-focus-item span {
  display: block;
  margin-top: 5px;
}

.article-library {
  margin-top: 10px;
  padding: clamp(12px, 2vw, 18px);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--article-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-card img {
  aspect-ratio: 16 / 10;
  height: auto;
}

.article-card-body {
  padding: 10px;
}

.article-card h3 {
  margin-top: 7px;
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  line-height: 1;
}

@media (max-width: 1024px) {
  .article-hero,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-feature,
  .article-feature-slider,
  .article-feature img {
    min-height: 320px;
  }

  .article-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-section-heading p {
    text-align: left;
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .article-page {
    width: calc(100% - 14px);
    padding-top: 12px;
  }

  .article-hero,
  .article-layout,
  .article-library {
    padding: 10px;
  }

  .article-hero h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .article-hero-copy p,
  .article-feature p,
  .article-section-heading p,
  .article-pick p,
  .article-card p {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .article-stats {
    gap: 6px;
  }

  .article-stats span {
    min-height: 34px;
    padding: 6px 8px;
  }

  .article-feature,
  .article-feature-slider,
  .article-feature img {
    min-height: 300px;
  }

  .article-feature-content {
    inset: auto 10px 32px;
  }

  .article-feature h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .article-slider-dots {
    right: 10px;
    bottom: 10px;
    gap: 5px;
    padding: 5px 6px;
  }

  .article-slider-dots span {
    width: 6px;
    height: 6px;
  }

  .article-slider-dots span.is-active {
    width: 18px;
  }

  .article-pick {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
    padding: 8px;
  }

  .article-pick h3,
  .article-card h3 {
    font-size: 1.18rem;
  }

  .article-card-body {
    padding: 10px;
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .article-card img {
    aspect-ratio: 1 / 0.78;
  }

  .article-card-body {
    padding: 8px;
  }

  .article-card .article-chip {
    min-height: 22px;
    padding: 3px 7px;
    font-size: 0.62rem;
  }

  .article-card h3 {
    margin-top: 6px;
    font-size: 0.98rem;
    line-height: 1.04;
  }

  .article-card p {
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-feature img,
  .article-feature-slider .article-feature,
  .article-pick,
  .article-pick img,
  .article-card,
  .article-card img {
    transition: none;
  }
}

/* ===== Final article scroll performance override ===== */
html {
  scroll-behavior: auto !important;
}

.article-page,
.article-hero,
.article-layout,
.article-library,
.article-feature,
.article-card,
.site-footer,
.footer-v2 {
  contain: layout paint style;
}

.article-layout,
.article-library,
.article-feature,
.site-footer,
.footer-v2 {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.article-feature-slider,
.article-feature,
.article-pick,
.article-card {
  will-change: auto;
}

@media (hover: none), (pointer: coarse) {
  .article-card:hover,
  .article-pick:hover,
  .article-feature:hover {
    transform: none !important;
    filter: none !important;
  }
}

/* ===== Article hub scroll stability cleanup ===== */
body.article-hub-page {
  --article-shadow: 0 1px 2px rgba(31, 41, 55, 0.05);
}

body.article-hub-page::before {
  display: none !important;
}

body.article-hub-page .article-hero,
body.article-hub-page .article-layout,
body.article-hub-page .article-library,
body.article-hub-page .site-footer,
body.article-hub-page .footer-v2 {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
}

body.article-hub-page .article-hero,
body.article-hub-page .article-layout,
body.article-hub-page .article-library {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 1px 2px rgba(31, 72, 105, 0.05) !important;
}

body.article-hub-page .article-feature-slider {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(31, 72, 105, 0.08) !important;
}

body.article-hub-page .article-feature-slider,
body.article-hub-page .article-feature,
body.article-hub-page .article-pick,
body.article-hub-page .article-card,
body.article-hub-page .article-side-panel,
body.article-hub-page .article-focus-item,
body.article-hub-page .article-stats span,
body.article-hub-page .article-slider-dots,
body.article-hub-page .article-feature .article-chip {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  will-change: auto !important;
}

body.article-hub-page .article-feature-slider .article-feature {
  transform: none !important;
  transition: opacity 180ms ease !important;
}

body.article-hub-page .article-feature img,
body.article-hub-page .article-pick img,
body.article-hub-page .article-card img {
  transform: none !important;
  transition: none !important;
}

body.article-hub-page .article-feature:hover img,
body.article-hub-page .article-pick:hover,
body.article-hub-page .article-card:hover {
  transform: none !important;
  filter: none !important;
}

body.article-hub-page .article-pick,
body.article-hub-page .article-card {
  transition:
    border-color 140ms ease,
    background-color 140ms ease,
    color 140ms ease !important;
}

body.article-hub-page .article-pick:hover,
body.article-hub-page .article-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(31, 72, 105, 0.08) !important;
}

body.article-hub-page .article-slider-dots span {
  transition: none !important;
}

/* ===== Article hub responsive spacing normalization ===== */
:root {
  --layout-gap: 10px;
}

body.article-hub-page *,
body.article-hub-page *::before,
body.article-hub-page *::after {
  box-sizing: border-box;
}

body.article-hub-page .article-page {
  padding-top: var(--layout-gap) !important;
  padding-bottom: var(--layout-gap) !important;
}

body.article-hub-page .article-hero,
body.article-hub-page .article-layout,
body.article-hub-page .article-library,
body.article-hub-page .site-footer,
body.article-hub-page .footer-v2 {
  width: min(1180px, calc(100% - (var(--layout-gap) * 2))) !important;
  max-width: calc(100% - (var(--layout-gap) * 2)) !important;
  margin-top: var(--layout-gap) !important;
  margin-bottom: 0 !important;
}

body.article-hub-page .article-hero:first-child {
  margin-top: 0 !important;
}

body.article-hub-page .article-hero,
body.article-hub-page .article-layout,
body.article-hub-page .article-library {
  padding: 12px !important;
}

body.article-hub-page .article-hero,
body.article-hub-page .article-hero-copy,
body.article-hub-page .article-hero-actions,
body.article-hub-page .article-stats,
body.article-hub-page .article-layout,
body.article-hub-page .article-feature-slider,
body.article-hub-page .article-side-panel,
body.article-hub-page .article-picks,
body.article-hub-page .article-library-grid,
body.article-hub-page .article-grid,
body.article-hub-page .article-card,
body.article-hub-page .article-pick,
body.article-hub-page .article-focus-grid,
body.article-hub-page .article-slider-dots {
  gap: var(--layout-gap) !important;
}

body.article-hub-page .article-picks,
body.article-hub-page .article-library-grid,
body.article-hub-page .article-grid,
body.article-hub-page .article-focus-grid,
body.article-hub-page .article-slider-dots,
body.article-hub-page .article-feature-copy,
body.article-hub-page .article-side-panel {
  margin-top: var(--layout-gap) !important;
}

body.article-hub-page .article-feature,
body.article-hub-page .article-pick,
body.article-hub-page .article-card,
body.article-hub-page .article-side-panel,
body.article-hub-page .article-focus-item {
  margin: 0 !important;
}

@media (min-width: 769px) {
  body.article-hub-page .article-page {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  body.article-hub-page .article-hero,
  body.article-hub-page .article-layout,
  body.article-hub-page .article-library,
  body.article-hub-page .site-footer,
  body.article-hub-page .footer-v2 {
    width: min(1180px, calc(100% - 20px)) !important;
    max-width: calc(100% - 20px) !important;
    margin-top: 10px !important;
  }
}

/* Final article spacing: desktop 10px, mobile 7px. */
@media (min-width: 769px) {
  body.article-hub-page .article-page {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  body.article-hub-page .article-hero,
  body.article-hub-page .article-layout,
  body.article-hub-page .article-library,
  body.article-hub-page .site-footer,
  body.article-hub-page .footer-v2 {
    width: min(1180px, calc(100% - 20px)) !important;
    max-width: calc(100% - 20px) !important;
    margin-top: 10px !important;
  }
}

@media (max-width: 768px) {
  :root {
    --layout-gap: 7px;
  }
}

/* Sitewide readable typography refresh - start */
@font-face {
  font-family: "Nunito Sans Local";
  src: url("/assets/fonts/nunito-sans-latin-var.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-stretch: 100%;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --site-font-sans: "Nunito Sans Local", "Nunito Sans", "Google Sans", "Product Sans", Roboto, "Segoe UI", Arial, sans-serif;
}

html,
body,
body * {
  font-family: var(--site-font-sans) !important;
  letter-spacing: 0 !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
.site-title, .section-title, .section-heading, .home-section-title,
.game-title, .app-title, .card-title, .article-title,
.game-name, .app-name, .item-title, .name {
  font-family: var(--site-font-sans) !important;
  font-weight: 600 !important;
}

.download-ready, .download-btn, .download-cta, .store-badge,
button, .btn, .view-all, .view-more {
  font-family: var(--site-font-sans) !important;
  font-weight: 700 !important;
}

p, li, .description, .desc, .short-description, .detail-copy,
.meta, .category, .subtitle, .supporting-copy, .footer-copy {
  font-family: var(--site-font-sans) !important;
}

.description, .desc, .short-description, .detail-copy,
p, li {
  font-weight: 400 !important;
}

.meta, .category, .subtitle, .supporting-copy, small {
  font-weight: 500 !important;
}

strong, b {
  font-weight: 600 !important;
}
/* Sitewide readable typography refresh - end */

/* Finalized-font wrapping safeguards for the article hub. */
body.article-hub-page .article-hero > *,
body.article-hub-page .article-hero-copy,
body.article-hub-page .article-feature,
body.article-hub-page .article-feature-content,
body.article-hub-page .article-layout > *,
body.article-hub-page .article-pick > *,
body.article-hub-page .article-card-body,
body.article-hub-page .article-focus-item {
  min-width: 0;
  max-width: 100%;
}

body.article-hub-page .article-hero h1,
body.article-hub-page .article-feature h2,
body.article-hub-page .article-section-heading h2,
body.article-hub-page .article-side-panel h2,
body.article-hub-page .article-pick h3,
body.article-hub-page .article-card h3,
body.article-hub-page .article-hero-copy p,
body.article-hub-page .article-feature p,
body.article-hub-page .article-pick p,
body.article-hub-page .article-card p {
  overflow-wrap: anywhere;
  word-break: normal;
}

body.article-hub-page .article-hero h1,
body.article-hub-page .article-feature h2,
body.article-hub-page .article-section-heading h2,
body.article-hub-page .article-side-panel h2 {
  line-height: 1.12;
}

body.article-hub-page .article-pick h3,
body.article-hub-page .article-card h3 {
  line-height: 1.22;
}

body.article-hub-page .article-stats {
  flex-wrap: wrap;
}

body.article-hub-page .article-chip,
body.article-hub-page .article-read {
  max-width: 100%;
  line-height: 1.2;
  white-space: normal;
}

/* Match article-hub typography to the approved detail-page scale. */
body.article-hub-page .article-hero h1 {
  font-size: clamp(1.82rem, 3.15vw, 2.72rem) !important;
  font-weight: 550 !important;
  line-height: 1.04 !important;
}

body.article-hub-page .article-feature h2,
body.article-hub-page .article-section-heading h2,
body.article-hub-page .article-side-panel h2 {
  font-size: clamp(1.25rem, 1.55vw, 1.65rem) !important;
  line-height: 1.15 !important;
}

body.article-hub-page .article-pick h3,
body.article-hub-page .article-card h3 {
  font-size: clamp(0.98rem, 1.1vw, 1.12rem) !important;
  line-height: 1.25 !important;
}

body.article-hub-page .article-hero-copy p,
body.article-hub-page .article-feature p,
body.article-hub-page .article-pick p,
body.article-hub-page .article-card p {
  font-size: 15px !important;
  line-height: 1.72 !important;
}

@media (max-width: 820px) {
  body.article-hub-page .article-hero h1 {
    font-size: clamp(1.52rem, 6.7vw, 2.02rem) !important;
  }

  body.article-hub-page .article-hero-copy p,
  body.article-hub-page .article-feature p,
  body.article-hub-page .article-pick p,
  body.article-hub-page .article-card p {
    font-size: 14px !important;
    line-height: 1.68 !important;
  }
}

@media (max-width: 350px) {
  body.article-hub-page .article-hero h1 {
    font-size: 1.12rem !important;
  }
}
