:root {
  color-scheme: light;
  --brand: #50654C;
  --brand-soft: #50654C;
  --teal: #50654C;
  --green: #4F8B57;
  --red: #C85757;
  --gold: #C49B3A;
  --ink: #50654C;
  --muted: rgba(80, 101, 76, 0.70);
  --line: rgba(80,101,76,.12);
  --paper: #ffffff;
  --wash: #F3ECE1;
  --shadow: 0 20px 60px rgba(80, 101, 76, 0.12);
  --radius: 12px;
  --font: "IBM Plex Sans Arabic", "Cairo", "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 12px clamp(16px, 5vw, 64px);
  background: rgba(80, 101, 76, 0.92);
  color: #fff;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.site-nav a,
.header-action,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
}

.site-nav a {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover {
  color: #fff;
}

.header-action {
  padding: 8px 14px;
  background: #fff;
  color: var(--brand);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", var(--font);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.language-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  overflow: hidden;
  padding: 96px clamp(18px, 6vw, 86px) 56px;
  background: var(--wash);
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}

.hero-brand-logo {
  display: block;
  width: min(120px, 34vw);
  height: auto;
  margin-bottom: 14px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 6.4rem;
  font-weight: 950;
}

.hero-copy {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.primary-link,
.secondary-link {
  min-width: 128px;
  padding: 10px 18px;
}

.primary-link {
  background: #fff;
  color: var(--brand);
  box-shadow: var(--shadow);
}

.secondary-link {
  border: 1px solid rgba(80, 101, 76, 0.26);
  color: var(--brand);
}

.hero .primary-link {
  background: var(--brand);
  color: #fff;
}

.hero .primary-link:hover {
  background: #465942;
}

.hero .primary-link:active {
  background: #3c4c39;
}

.hero .secondary-link {
  border-color: rgba(80, 101, 76, 0.26);
  color: var(--brand);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin: 28px 0 0;
}

.hero-stats div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.hero-stats dt {
  font-weight: 950;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(620px, 100%);
  height: min(580px, 58vw);
  min-height: 420px;
  direction: ltr;
}

.hero-visual-glow {
  position: absolute;
  inset: 9% 5% 4% 7%;
  border-radius: 999px;
  background: rgba(80, 101, 76, 0.12);
}

.hero-trend {
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: 12%;
  width: min(88%, 540px);
  height: auto;
  opacity: 0.84;
}

.hero-shot {
  position: absolute;
  z-index: 2;
  display: block;
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(80, 101, 76, 0.18);
}

.hero-shot-front {
  right: 29%;
  bottom: -5%;
  width: min(46%, 360px);
  transform: rotate(-4deg);
}

.hero-shot-back {
  left: 12%;
  top: 0;
  width: min(40%, 320px);
  opacity: 0.94;
  transform: rotate(4deg);
}

.section {
  padding: 72px clamp(18px, 6vw, 86px);
}

.section-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.intro-section {
  background: var(--paper);
}

.intro-grid,
.report-grid,
.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.section h2,
.final-cta h2 {
  color: var(--ink);
  font-size: 3.1rem;
  font-weight: 950;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 2;
}

.light-section {
  background: var(--wash);
}

.legal-page {
  min-height: 100vh;
}

.legal-document {
  padding: 112px 18px 54px;
}

.legal-document article {
  width: min(840px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.legal-document h1,
.legal-document h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.legal-document h1 {
  font-size: clamp(2.1rem, 8vw, 4.4rem);
  line-height: 1.1;
}

.legal-document h2 {
  margin-top: 30px;
  font-size: 1.25rem;
  line-height: 1.5;
}

.legal-document p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 2;
}

.legal-document a {
  color: var(--brand);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-page {
  min-height: 100vh;
}

.contact-hero {
  padding: 124px clamp(18px, 6vw, 86px) 34px;
  background: var(--wash);
}

.contact-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 8vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-hero p {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.9;
}

.contact-section {
  padding-top: 26px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(80, 101, 76, 0.07);
}

.contact-card h2 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.5;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.9;
}

.contact-card .primary-link {
  margin-top: auto;
  background: var(--brand);
  color: #fff;
}

.blog-page {
  min-height: 100vh;
  background: var(--wash);
}

.blog-hero {
  padding: 124px clamp(18px, 6vw, 86px) 36px;
  background: var(--wash);
}

.blog-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 8vw, 5rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.blog-hero p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.95;
}

.blog-section {
  padding-top: 26px;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(80, 101, 76, 0.07);
}

.blog-date {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--wash);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
}

.blog-card h2 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.55;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.9;
}

.blog-read-link,
.blog-back {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: auto;
  color: var(--brand);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 800px) minmax(240px, 300px);
  gap: 20px;
  align-items: start;
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: 116px 0 56px;
}

.blog-article,
.blog-related {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.blog-article {
  padding: clamp(22px, 5vw, 42px);
}

.blog-back {
  min-height: 0;
  margin: 0 0 18px;
  font-size: 0.92rem;
}

.blog-article h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 7vw, 4rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.article-lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 2;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--wash);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.article-content {
  margin-top: 28px;
}

.article-content h2 {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.55;
}

.article-content p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 2.05;
}

.article-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.9;
}

.article-content li::marker {
  color: var(--gold);
}

.blog-related {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.blog-related h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.5;
}

.blog-related a {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--brand);
  font-weight: 900;
  line-height: 1.7;
  background: var(--wash);
}

.en-page {
  direction: ltr;
  font-family: "Inter", "IBM Plex Sans Arabic", "Cairo", "Segoe UI", Arial, sans-serif;
}

.en-page .footer-contact strong {
  text-align: left;
}

.en-page .article-content ul {
  padding: 0 0 0 22px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(80, 101, 76, 0.05);
}

.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  border-radius: 7px;
  background: var(--wash);
  color: var(--teal);
  font-weight: 950;
}

.feature-card h3 {
  margin: 18px 0 8px;
  font-size: 1.12rem;
}

.feature-card p {
  font-size: 0.92rem;
}

.dark-band {
  background: var(--brand);
  color: var(--brand);
}

.dark-band h2 {
  color: var(--brand);
}

.use-list {
  display: grid;
  gap: 10px;
}

.use-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.use-list strong {
  color: var(--gold);
}

.use-list span {
  color: var(--brand);
  line-height: 1.7;
}

.report-panel {
  display: grid;
  gap: 10px;
}

.report-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.report-panel span {
  color: var(--muted);
  font-weight: 800;
}

.report-panel strong {
  font-size: 1.05rem;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
}

details p {
  padding: 0 18px 18px;
}

.final-cta {
  padding: 72px clamp(18px, 6vw, 86px);
  background: var(--brand);
  color: #fff;
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.final-inner h2 {
  max-width: 760px;
  color: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(160px, 0.7fr) minmax(260px, 1fr);
  align-items: start;
  gap: 14px;
  padding: 24px clamp(18px, 6vw, 86px);
  background: var(--brand);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.simple-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand,
.footer-links,
.footer-contact {
  min-width: 0;
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand span,
.site-footer > span {
  color: #fff;
  font-weight: 950;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links a,
.simple-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.simple-footer a:hover,
.footer-contact a:hover strong {
  color: #fff;
}

.footer-contact h2 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

.footer-contact a {
  display: grid;
  gap: 2px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.footer-contact strong {
  direction: ltr;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", var(--font);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: right;
  unicode-bidi: plaintext;
}

.analytics-consent-banner {
  position: fixed;
  z-index: 1000;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  max-width: 820px;
  margin-inline: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #50654C;
  color: #fff;
  box-shadow: 0 20px 60px rgba(80, 101, 76, 0.28);
}

.analytics-consent-banner strong,
.analytics-consent-dialog h2 {
  font-size: 0.98rem;
  line-height: 1.3;
}

.analytics-consent-banner p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.6;
}

.analytics-consent-actions,
.analytics-consent-custom {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}

.analytics-consent-actions button,
.analytics-consent-custom button,
.analytics-consent-dialog button {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: #fff;
  color: #50654C;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
}

.analytics-consent-custom {
  grid-column: 1 / -1;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.analytics-consent-custom label,
.analytics-consent-dialog label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.analytics-consent-modal {
  position: fixed;
  z-index: 1001;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(80, 101, 76, 0.5);
}

.analytics-consent-dialog {
  display: grid;
  gap: 12px;
  width: min(420px, 100%);
  padding: 18px;
  border-radius: 10px;
  background: #50654C;
  color: #fff;
}

.primary-link,
.secondary-link,
.header-action {
  border-radius: 14px;
}

.primary-link,
.header-action {
  background: #fff;
  color: var(--brand);
}

.primary-link:hover,
.header-action:hover {
  background: #F3ECE1;
}

.primary-link:active,
.header-action:active {
  color: #445640;
}

.secondary-link {
  border-color: rgba(255, 255, 255, 0.44);
}

.section,
.light-section {
  background: var(--wash);
}

.intro-section,
.report-section {
  background: #fff;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.86fr);
    gap: 24px;
    min-height: calc(100svh - 36px);
    padding: 92px 28px 46px;
  }

  .hero-content {
    width: min(680px, 100%);
  }

  .hero-brand-logo {
    width: 108px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero-copy {
    font-size: 1.02rem;
    line-height: 1.85;
  }

  .hero-stats {
    gap: 8px;
    margin-top: 24px;
  }

  .hero-stats div {
    padding: 11px 10px;
  }

  .hero-visual {
    width: min(360px, 100%);
    height: 390px;
    min-height: 0;
  }

  .intro-grid,
  .report-grid,
  .split-copy {
    grid-template-columns: 1fr;
  }

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

  .contact-card-grid,
  .blog-card-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .blog-related {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 62px;
    padding: 10px 14px;
  }

  .brand img {
    width: 34px;
    height: auto;
  }

  .header-action {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .language-link {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 0.76rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 80px 18px 30px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .section h2,
  .final-cta h2 {
    font-size: 2.2rem;
  }

  .hero-copy {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .hero-brand-logo {
    display: none;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 18px;
  }

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dd {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .hero-visual {
    height: 270px;
    margin-top: 2px;
  }

  .hero-visual-glow {
    inset: 12% 2% 4% 2%;
  }

  .hero-trend {
    right: 0;
    bottom: 8%;
    width: 94%;
  }

  .hero-shot img {
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(80, 101, 76, 0.16);
  }

  .hero-shot-front {
    right: 30%;
    bottom: -7%;
    width: min(48%, 220px);
  }

  .hero-shot-back {
    left: 10%;
    top: 2%;
    width: min(42%, 190px);
  }

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

  .section,
  .final-cta {
    padding: 54px 18px;
  }

  .use-list div {
    grid-template-columns: 1fr;
  }

  .final-inner,
  .site-footer,
  .simple-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .simple-footer {
    display: flex;
  }

  .contact-hero {
    padding: 94px 18px 24px;
  }

  .blog-hero {
    padding: 94px 18px 24px;
  }

  .article-shell {
    width: calc(100% - 36px);
    padding-top: 92px;
  }

  .blog-card {
    min-height: 0;
  }

  .analytics-consent-banner {
    grid-template-columns: 1fr;
    padding: 12px;
  }
}
