/* ─────────────────────────────────
   ARTICLE STYLES — REDESIGN V6
   ───────────────────────────────── */

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

:root {
  --dp: #181818;
  --dp2: #2D2D2D;
  --accent: #E0734B;
  --accent2: #D97757;
  --cream: #FAF8F5;
  --ink: #181818;
  --ink2: #374151;
  --muted: #6b7280;
  --light: #faf8f5;
  --border: rgba(18, 18, 18, 0.1);
  --white: #ffffff;
  --ps-color: #E0734B;
  --sh-color: #E0734B;
  --wc-color: #E0734B;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #fafafa;
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.article-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #181818;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 181, 253, 0.12);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--accent);
  font-style: italic;
}

.nav-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  min-width: 0;
}

.nav-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
}

.nav-breadcrumb .current {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-cta {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--dp);
  font-weight: 800;
  font-size: 12px;
  padding: 7px 16px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #fff;
}

/* ─── LAYOUT BLOG ─── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* ─── HERO ARTICLE ─── */
.article-hero {
  background: var(--dp);
  padding: 60px 24px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.article-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(124, 58, 237, 0.35);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -60px;
  pointer-events: none;
}

.hero-content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: end;
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 181, 253, 0.15);
  border: 1px solid rgba(196, 181, 253, 0.25);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article-h1 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.article-h1 em {
  color: var(--accent);
  font-style: italic;
}

.article-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 28px;
  flex-wrap: wrap;
}

.meta-avatar {
  width: 32px;
  height: 32px;
  background: var(--accent2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.meta-info {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}

.meta-info strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.meta-divider {
  color: rgba(255, 255, 255, 0.2);
}

.meta-read {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.article-hero-img {
  align-self: end;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.15);
  border-bottom: none;
}

.article-hero-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

/* ─── PLATFORM BADGES HERO ─── */
.platform-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid;
}

.badge-ps {
  background: rgba(223, 0, 103, 0.15);
  border-color: rgba(223, 0, 103, 0.3);
  color: #ff4da6;
}

.badge-sh {
  background: rgba(149, 191, 71, 0.15);
  border-color: rgba(149, 191, 71, 0.3);
  color: #b5d96a;
}

.badge-wc {
  background: rgba(127, 84, 179, 0.15);
  border-color: rgba(127, 84, 179, 0.3);
  color: #c4a7f7;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.badge-ps .badge-dot {
  background: #ff4da6;
}

.badge-sh .badge-dot {
  background: #b5d96a;
}

.badge-wc .badge-dot {
  background: #c4a7f7;
}

/* ─── MAIN ARTICLE ─── */
main {
  min-width: 0;
}

/* ─── TABLE DES MATIÈRES ─── */
.toc {
  margin-top: 40px;
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent2);
  border-radius: 0 16px 16px 0;
  padding: 24px 24px;
  margin-bottom: 40px;
}

.toc-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent2);
  margin-bottom: 12px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  counter-reset: toc;
}

.toc-list li {
  counter-increment: toc;
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink2);
  text-decoration: none;
  transition: color 0.2s;
}

.toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent2);
  min-width: 20px;
}

.toc-list a:hover {
  color: var(--accent2);
}

/* ─── SECTIONS ARTICLE ─── */
.article-section {
  margin-bottom: 56px;
}

.section-anchor {
  display: block;
  position: relative;
  top: -70px;
  visibility: hidden;
}

h2.article-h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

h2.article-h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--accent2);
}

.article-p {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ─── PLATFORM CARD ─── */
.platform-card {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 2px 16px rgba(45, 16, 96, 0.04);
}

.platform-card-header {
  padding: 20px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.platform-card-header.ps {
  background: linear-gradient(135deg, rgba(223, 0, 103, 0.06), rgba(223, 0, 103, 0.02));
}

.platform-card-header.sh {
  background: linear-gradient(135deg, rgba(149, 191, 71, 0.08), rgba(149, 191, 71, 0.02));
}

.platform-card-header.wc {
  background: linear-gradient(135deg, rgba(127, 84, 179, 0.08), rgba(127, 84, 179, 0.02));
}

.platform-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.platform-icon.ps {
  background: rgba(223, 0, 103, 0.1);
}

.platform-icon.sh {
  background: rgba(149, 191, 71, 0.12);
}

.platform-icon.wc {
  background: rgba(127, 84, 179, 0.1);
}

.platform-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.platform-tagline {
  font-size: 15px;
  color: var(--muted);
  margin-top: 2px;
}

.platform-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.score-value {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.score-value.ps {
  color: var(--ps-color);
}

.score-value.sh {
  color: var(--sh-color);
}

.score-value.wc {
  color: var(--wc-color);
}

.score-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.platform-card-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-cons-block {}

.pros-cons-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pros-cons-title.pros {
  color: #16a34a;
}

.pros-cons-title.cons {
  color: #dc2626;
}

.pros-cons-title span {
  font-size: 16px;
}

.pros-list,
.cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pros-list li,
.cons-list li {
  font-size: 15.5px;
  color: var(--ink2);
  line-height: 1.5;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.pros-list li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 800;
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.cons-list li::before {
  content: '×';
  color: #dc2626;
  font-weight: 800;
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.platform-card-footer {
  padding: 16px 24px;
  background: var(--light);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ideal-for {
  font-size: 15px;
  color: var(--ink2);
}

.ideal-for strong {
  color: var(--ink);
  font-weight: 700;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.2s;
}

.card-cta:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.cta-ps {
  background: var(--ps-color);
  color: #fff;
}

.cta-sh {
  background: var(--sh-color);
  color: #fff;
}

.cta-wc {
  background: var(--wc-color);
  color: #fff;
}

/* ─── EXAMPLE BLOCKQUOTE ─── */
.article-quote {
  background: linear-gradient(135deg, var(--light), #f0ebff);
  border-left: 3px solid var(--accent2);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 20px 0;
}

.article-quote-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent2);
  margin-bottom: 8px;
}

.article-quote p {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.7;
  font-style: italic;
}

/* ─── TABLEAU COMPARATIF ─── */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin: 12px 0 24px;
  box-shadow: 0 2px 16px rgba(45, 16, 96, 0.04);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  background: var(--white);
  min-width: 520px;
}

.compare-table thead tr {
  background: var(--dp);
}

.compare-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-table thead th:first-child {
  color: rgba(255, 255, 255, 0.4);
}

.compare-table thead th.ps {
  color: #ff8cc8;
}

.compare-table thead th.sh {
  color: #c5e67b;
}

.compare-table thead th.wc {
  color: var(--accent);
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: var(--light);
}

.compare-table td {
  padding: 13px 18px;
  color: var(--ink2);
  vertical-align: top;
  line-height: 1.5;
}

.compare-table td:first-child {
  font-weight: 700;
  color: var(--ink);
  width: 28%;
  font-size: 15px;
}

.compare-table td:nth-child(2) {
  border-left: 1px solid rgba(223, 0, 103, 0.08);
}

.compare-table td:nth-child(3) {
  border-left: 1px solid rgba(149, 191, 71, 0.1);
}

.compare-table td:nth-child(4) {
  border-left: 1px solid rgba(127, 84, 179, 0.08);
}

/* score dots */
.score-dots {
  display: flex;
  gap: 3px;
  margin-top: 4px;
}

.score-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
}

.score-dot.on.ps {
  background: var(--ps-color);
}

.score-dot.on.sh {
  background: var(--sh-color);
}

.score-dot.on.wc {
  background: var(--wc-color);
}

/* ─── VERDICT CARD ─── */
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.verdict-card {
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
  transition: transform 0.15s;
}

.verdict-card:hover {
  transform: translateY(-3px);
}

.verdict-card.ps {
  border-top: 3px solid var(--ps-color);
}

.verdict-card.sh {
  border-top: 3px solid var(--sh-color);
}

.verdict-card.wc {
  border-top: 3px solid var(--wc-color);
}

.verdict-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.verdict-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.verdict-for {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── INFO BOX ─── */
.info-box {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-box-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-box-text {
  font-size: 16px;
  color: #0c4a6e;
  line-height: 1.6;
}

.info-box-text strong {
  font-weight: 700;
}

/* ─── FAQ ─── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--white);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}

.faq-btn:hover {
  background: var(--light);
}

.faq-icon-wrap {
  width: 22px;
  height: 22px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent2);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-icon-wrap {
  transform: rotate(45deg);
  background: var(--accent2);
  color: #fff;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-body {
  max-height: 200px;
}

.faq-body-inner {
  padding: 0 20px 16px;
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-body-inner ul {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ─── CTA BLOCK ─── */
.cta-block {
  background: var(--dp);
  border-radius: 24px;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(124, 58, 237, 0.35);
  border-radius: 50%;
  filter: blur(60px);
  top: -80px;
  right: 0;
}

.cta-block-content {
  position: relative;
  z-index: 1;
}

.cta-block h3 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-block h3 em {
  color: var(--accent);
  font-style: italic;
}

.cta-block p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.cta-block-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.cta-btn-main {
  background: var(--accent);
  color: var(--dp);
  font-weight: 800;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s;
}

.cta-btn-main:hover {
  background: #fff;
}

.cta-btn-sec {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(196, 181, 253, 0.25);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s;
}

.cta-btn-sec:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ─── SIDEBAR ─── */
aside {
  padding-top: 44px;
  position: sticky;
  top: 72px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.sidebar-card-title {
  padding: 14px 18px 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent2);
  border-bottom: 1px solid var(--border);
}

.sidebar-nav-list {
  list-style: none;
  padding: 8px 0;
}

.sidebar-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink2);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.sidebar-nav-list a:hover {
  background: var(--light);
  color: var(--accent2);
}

.sidebar-nav-list a .nav-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  min-width: 18px;
}

.sidebar-quick {
  padding: 16px 18px;
}

.quick-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.quick-item:last-child {
  border-bottom: none;
}

.quick-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.quick-dot.ps {
  background: var(--ps-color);
}

.quick-dot.sh {
  background: var(--sh-color);
}

.quick-dot.wc {
  background: var(--wc-color);
}

.quick-text {
  font-size: 12.5px;
  color: var(--ink2);
  line-height: 1.5;
}

.quick-text strong {
  color: var(--ink);
  font-weight: 700;
}

.sidebar-cta {
  background: var(--dp);
  padding: 20px 18px;
}

.sidebar-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 14px;
}

.sidebar-cta a {
  display: block;
  background: var(--accent);
  color: var(--dp);
  font-weight: 800;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}

.sidebar-cta a:hover {
  background: #fff;
}

.related-item {
  display: flex;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
}

.related-item:last-child {
  border-bottom: none;
}

.related-item:hover {
  background: var(--light);
}

.related-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.related-thumb.t1 {
  background: rgba(223, 0, 103, 0.1);
}

.related-thumb.t2 {
  background: rgba(149, 191, 71, 0.1);
}

.related-thumb.t3 {
  background: rgba(127, 84, 179, 0.1);
}

.related-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 3px;
}

.related-label {
  font-size: 13px;
  color: var(--muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .page-wrap {
    grid-template-columns: 1fr;
  }

  aside {
    display: none;
  }

  .hero-content-wrap {
    grid-template-columns: 1fr;
  }

  .article-hero-img {
    display: none;
  }

  .platform-card-body {
    grid-template-columns: 1fr;
  }

  .verdict-grid {
    grid-template-columns: 1fr;
  }

  .cta-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .article-h1 {
    font-size: 26px;
  }

  h2.article-h2 {
    font-size: 20px;
  }
}