:root {
  color-scheme: light;
  --cs-ink: #172026;
  --cs-muted: #63737f;
  --cs-line: #d7e1e7;
  --cs-surface: #ffffff;
  --cs-soft: #f5f8fa;
  --cs-accent: #0f8f8f;
  --cs-accent-strong: #0a6868;
}

* {
  box-sizing: border-box;
}

body.cs-public {
  margin: 0;
  min-height: 100vh;
  background: var(--cs-soft);
  color: var(--cs-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cs-content-page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.cs-content-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 28px;
  color: var(--cs-muted);
  font-size: 0.92rem;
}

.cs-content-breadcrumb a {
  color: var(--cs-accent-strong);
  text-decoration: none;
}

.cs-content-article {
  margin-top: 20px;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  overflow: hidden;
}

.cs-content-hero {
  display: grid;
  gap: 14px;
  padding: 32px;
}

.cs-content-kicker {
  margin: 0;
  color: var(--cs-accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cs-content-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.cs-content-summary {
  margin: 0;
  color: var(--cs-muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.cs-content-date {
  margin: 0;
  color: var(--cs-muted);
  font-size: 0.92rem;
}

.cs-content-media {
  margin: 0;
  border-top: 1px solid var(--cs-line);
  border-bottom: 1px solid var(--cs-line);
  background: #eef4f6;
}

.cs-content-media img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.cs-content-body {
  display: grid;
  gap: 16px;
  padding: 32px;
}

.cs-content-body p {
  margin: 0;
  color: #27343c;
  font-size: 1.02rem;
  line-height: 1.75;
}

.cs-content-relations {
  margin-top: 28px;
}

.cs-content-index-hero {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  padding: 32px;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
  border-radius: 8px;
}

.cs-content-index-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.cs-content-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(760px, 100%);
}

.cs-content-search input[type="search"] {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  background: #fbfdfe;
  color: var(--cs-ink);
  font: inherit;
}

.cs-content-search button {
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--cs-accent);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cs-content-index-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
  gap: 10px;
}

.cs-content-index-chips span {
  display: grid;
  gap: 3px;
  min-height: 66px;
  padding: 12px;
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  background: #fbfdfe;
}

.cs-content-index-chips strong {
  color: var(--cs-accent-strong);
  font-size: 1.35rem;
  line-height: 1;
}

.cs-content-index-chips small {
  color: var(--cs-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.cs-content-index-results {
  margin-top: 28px;
}

.cs-content-index-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 14px;
}

.cs-content-index-title h2 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.cs-content-index-title span {
  color: var(--cs-muted);
  font-weight: 800;
}

.cs-content-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.cs-content-card {
  overflow: hidden;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
  border-radius: 8px;
}

.cs-content-card a {
  display: grid;
  grid-template-rows: 160px 1fr;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.cs-content-card img,
.cs-content-card-placeholder {
  width: 100%;
  height: 160px;
  background: #eef4f6;
  object-fit: cover;
}

.cs-content-card-placeholder {
  display: grid;
  place-items: center;
  color: var(--cs-muted);
  font-weight: 800;
}

.cs-content-card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.cs-content-card-body small {
  color: var(--cs-accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cs-content-card-body strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.cs-content-card-body span {
  color: var(--cs-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.cs-content-card-body em {
  color: var(--cs-muted);
  font-size: 0.86rem;
  font-style: normal;
}

.cs-content-empty {
  margin: 0;
  padding: 18px;
  background: var(--cs-surface);
  border: 1px dashed var(--cs-line);
  border-radius: 8px;
  color: var(--cs-muted);
}

.cs-blog-page {
  width: min(1220px, calc(100% - 32px));
}

.cs-blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 20px;
  padding: 32px;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
  border-radius: 8px;
}

.cs-blog-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.cs-blog-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cs-blog-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--cs-ink);
  text-decoration: none;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  font-weight: 800;
}

.cs-blog-menu a[aria-current="page"] {
  color: #ffffff;
  background: var(--cs-accent);
  border-color: var(--cs-accent);
}

.cs-blog-search-notice {
  margin: -2px 0 0;
  color: var(--cs-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cs-blog-featured {
  margin-top: 26px;
}

.cs-blog-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 16px;
}

.cs-blog-feature-card,
.cs-blog-pending-card,
.cs-blog-mini-card {
  overflow: hidden;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
  border-radius: 8px;
}

.cs-blog-feature-card a,
.cs-blog-mini-card {
  color: inherit;
  text-decoration: none;
}

.cs-blog-feature-card a {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  min-height: 280px;
}

.cs-blog-feature-card img,
.cs-blog-feature-card .cs-content-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.cs-blog-feature-body {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 24px;
}

.cs-blog-feature-body small,
.cs-blog-mini-card small,
.cs-blog-pending-card span {
  color: var(--cs-accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cs-blog-feature-body strong {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.cs-blog-feature-body span,
.cs-blog-feature-body em,
.cs-blog-mini-card em,
.cs-blog-pending-card p,
.cs-blog-lock-note p {
  color: var(--cs-muted);
  line-height: 1.55;
}

.cs-blog-feature-body em,
.cs-blog-mini-card em {
  font-size: 0.86rem;
  font-style: normal;
}

.cs-blog-latest-list {
  display: grid;
  gap: 12px;
}

.cs-blog-mini-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  min-height: 112px;
  padding: 10px;
}

.cs-blog-mini-card img,
.cs-blog-mini-placeholder {
  width: 96px;
  height: 92px;
  border-radius: 8px;
  background: #eef4f6;
  object-fit: cover;
}

.cs-blog-mini-placeholder {
  display: grid;
  place-items: center;
  color: var(--cs-muted);
  font-weight: 800;
}

.cs-blog-mini-card span {
  display: grid;
  gap: 5px;
  align-content: center;
  min-width: 0;
}

.cs-blog-mini-card strong {
  line-height: 1.28;
}

.cs-blog-pending-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cs-blog-pending-card {
  display: grid;
  grid-template-rows: 154px auto auto 1fr auto;
  min-height: 100%;
}

.cs-blog-pending-card img {
  width: 100%;
  height: 154px;
  object-fit: cover;
}

.cs-blog-pending-card span,
.cs-blog-pending-card h3,
.cs-blog-pending-card p {
  margin-left: 16px;
  margin-right: 16px;
}

.cs-blog-pending-card span {
  margin-top: 16px;
}

.cs-blog-pending-card h3 {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.28;
}

.cs-blog-pending-card p {
  margin-top: 8px;
  margin-bottom: 14px;
}

.cs-blog-pending-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0 16px 16px;
  color: var(--cs-accent-strong);
  text-decoration: none;
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  font-weight: 850;
}

.cs-blog-lock-note {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 16px;
  background: var(--cs-surface);
  border: 1px dashed var(--cs-line);
  border-radius: 8px;
}

.cs-blog-lock-note strong {
  color: var(--cs-accent-strong);
}

.cs-blog-lock-note p {
  margin: 0;
}

.cs-blog-index {
  margin-top: 26px;
}

.cs-blog-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.cs-blog-paths a {
  display: grid;
  gap: 5px;
  min-height: 74px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
  border-radius: 8px;
}

.cs-blog-paths strong {
  color: var(--cs-accent-strong);
}

.cs-blog-paths span {
  color: var(--cs-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.cs-blog-tracks {
  margin-top: 26px;
}

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

.cs-blog-track {
  display: grid;
  gap: 8px;
  min-height: 148px;
  overflow: hidden;
  padding: 0;
  color: inherit;
  text-decoration: none;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
  border-radius: 8px;
}

.cs-blog-track img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.cs-blog-track small {
  margin: 12px 16px 0;
  color: var(--cs-accent-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.cs-blog-track strong {
  margin: 0 16px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.cs-blog-track span,
.cs-blog-empty-panel p {
  margin: 0 16px 16px;
  color: var(--cs-muted);
  line-height: 1.55;
}

.cs-blog-empty-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--cs-surface);
  border: 1px dashed var(--cs-line);
  border-radius: 8px;
}

.cs-blog-empty-panel strong {
  color: var(--cs-accent-strong);
  font-size: 1.08rem;
}

.cs-blog-empty-panel p {
  margin: 0;
}

.cs-blog-empty-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cs-blog-empty-panel a {
  padding: 10px 13px;
  color: var(--cs-accent-strong);
  text-decoration: none;
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  font-weight: 850;
}

.cs-blog-card a {
  grid-template-rows: 180px 1fr;
}

.cs-blog-card img,
.cs-blog-card .cs-content-card-placeholder {
  height: 180px;
}

.cs-blog-feature-card img.cs-blog-image-contain,
.cs-blog-mini-card img.cs-blog-image-contain,
.cs-blog-card img.cs-blog-image-contain,
.cs-blog-topic-card img.cs-blog-image-contain,
.cs-content-media img.cs-blog-image-contain {
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: #ffffff;
}

.cs-content-media img.cs-blog-image-contain {
  height: min(420px, 52vw);
  max-height: 420px;
}

.cs-blog-section-hub {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.cs-blog-topic-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  border: 1px solid var(--cs-line);
  border-radius: 8px;
}

.cs-blog-topic-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.cs-blog-topic-header small {
  color: var(--cs-accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cs-blog-topic-header h3 {
  margin: 5px 0 0;
  color: #132415;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.12;
}

.cs-blog-topic-header p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--cs-muted);
  line-height: 1.55;
}

.cs-blog-topic-header > a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
  color: #ffffff;
  text-decoration: none;
  background: var(--cs-accent);
  border-radius: 8px;
  font-weight: 900;
}

.cs-blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 230px));
  justify-content: start;
  gap: 16px;
}

.cs-blog-topic-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--cs-line);
  border-radius: 8px;
}

.cs-blog-topic-card a {
  display: grid;
  grid-template-rows: 160px 1fr;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.cs-blog-topic-card img,
.cs-blog-topic-card .cs-content-card-placeholder {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #eef4f6;
}

.cs-blog-topic-card .cs-content-card-body {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
}

.cs-blog-topic-card .cs-content-card-body small {
  color: var(--cs-accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cs-blog-topic-card .cs-content-card-body strong {
  color: #172026;
  font-size: 1.05rem;
  line-height: 1.3;
}

.cs-blog-topic-card .cs-content-card-body em,
.cs-blog-topic-card .cs-content-card-body b {
  color: var(--cs-muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.cs-blog-topic-card .cs-content-card-body em {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cs-blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.cs-blog-pagination a,
.cs-blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 40px;
  padding: 0 13px;
  color: var(--cs-accent-strong);
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  font-weight: 850;
}

.cs-blog-pagination a[aria-current="page"] {
  color: #ffffff;
  background: var(--cs-accent);
  border-color: var(--cs-accent);
}

.cs-blog-pagination span {
  color: #9aa8b1;
  background: #f3f6f8;
}

.cs-blog-topic-news {
  background: linear-gradient(135deg, #ffffff, #f1fbf7);
}

.cs-blog-topic-oddities {
  background: linear-gradient(135deg, #ffffff, #fff7ef);
}

.cs-blog-topic-shop {
  background: linear-gradient(135deg, #ffffff, #f4f7fb);
}

.cs-blog-article-hero {
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: stretch;
}

.cs-blog-article-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.cs-blog-article-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--cs-accent-strong);
  background: #eef9f2;
  border: 1px solid #cdebd6;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.cs-blog-article-body {
  width: min(920px, 100%);
  margin: 0 auto;
  gap: 22px;
  padding: 38px;
  background:
    linear-gradient(90deg, rgba(15, 143, 143, 0.08), transparent 30%),
    var(--cs-surface);
}

.cs-blog-article-body p {
  color: #243139;
  font-size: 1.06rem;
  line-height: 1.82;
}

.cs-blog-article-body a {
  color: var(--cs-accent-strong);
  font-weight: 850;
  text-decoration-color: rgba(15, 143, 143, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cs-blog-body-media {
  margin: 0 auto;
  width: min(620px, 100%);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.08);
}

.cs-blog-body-media img {
  display: block;
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  background: #ffffff;
}

.cs-blog-body-video {
  display: grid;
  gap: 10px;
  margin: 0 auto;
  width: min(720px, 100%);
  padding: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.08);
}

.cs-blog-body-video figcaption {
  color: var(--cs-accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cs-blog-body-video div {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: #111827;
}

.cs-blog-body-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cs-blog-intro-card,
.cs-blog-article-cta {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: #f6fbf4;
  border: 1px solid #cfe8c7;
  border-left: 6px solid #78c300;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(23, 32, 38, 0.07);
}

.cs-blog-intro-card span,
.cs-blog-article-cta span {
  color: #4f7b00;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cs-blog-intro-card p,
.cs-blog-article-cta p {
  margin: 0;
  color: #1e2f20;
  font-weight: 650;
}

.cs-blog-article-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
  color: #132415;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.cs-blog-article-heading::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 34px;
  background: #78c300;
  border-radius: 999px;
}

.cs-blog-check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs-blog-check-list li {
  position: relative;
  min-height: 72px;
  padding: 16px 18px 16px 54px;
  color: #27343c;
  background: #fbfdff;
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  line-height: 1.7;
  box-shadow: 0 10px 24px rgba(23, 32, 38, 0.05);
}

.cs-blog-check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 18px;
  height: 18px;
  background: #78c300;
  border: 4px solid #e8f7d9;
  border-radius: 50%;
}

.cs-blog-article-cta {
  grid-template-columns: minmax(0, 1fr);
  background: #fff8f0;
  border-color: #ffd2a8;
  border-left-color: #ff7718;
}

.cs-blog-article-cta span {
  color: #b24a00;
}

.cs-blog-article-cta strong {
  color: #19251b;
  font-size: 1.2rem;
}

.cs-blog-article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.cs-blog-article-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: #ffffff;
  text-decoration: none;
  background: #ff7718;
  border-radius: 8px;
  font-weight: 900;
}

.cs-blog-article-cta-actions a.cs-blog-article-cta-link-home {
  color: #173000;
  background: #c8f25b;
}

.cs-blog-article-cta-actions a.cs-blog-article-cta-link-rss {
  background: #5b6f7a;
}

.cs-blog-article-cta-actions a.cs-blog-article-cta-link-newsletter {
  background: #009b7a;
}

body.cs-public-encros .cs-content-encros-advice {
  justify-content: flex-start !important;
  gap: 12px !important;
}

body.cs-public-encros .cs-content-encros-advice img.cs-encros-advice-mascot {
  width: 100% !important;
  height: clamp(176px, 20vw, 235px) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  filter: drop-shadow(0 12px 20px rgba(39, 97, 12, 0.12));
}

body.cs-public-encros .cs-blog-page-encros .cs-content-encros-advice img.cs-encros-advice-mascot {
  background: transparent !important;
}

@media (max-width: 680px) {
  .cs-content-page {
    width: min(100% - 20px, 980px);
    padding-top: 18px;
  }

  .cs-content-hero,
  .cs-content-body,
  .cs-content-index-hero {
    padding: 22px;
  }

  .cs-content-search {
    grid-template-columns: 1fr;
  }

  .cs-content-search button {
    width: 100%;
  }

  .cs-content-index-title {
    align-items: start;
    flex-direction: column;
  }

  .cs-blog-page {
    width: min(100% - 20px, 980px);
  }

  .cs-blog-hero,
  .cs-blog-article-hero {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .cs-blog-paths {
    grid-template-columns: 1fr;
  }

  .cs-blog-menu {
    gap: 8px;
  }

  .cs-blog-feature-layout,
  .cs-blog-feature-card a,
  .cs-blog-pending-grid {
    grid-template-columns: 1fr;
  }

  .cs-blog-feature-card img,
  .cs-blog-feature-card .cs-content-card-placeholder {
    min-height: 210px;
    height: 210px;
  }

  .cs-blog-track-grid {
    grid-template-columns: 1fr;
  }

  .cs-blog-topic-header {
    align-items: start;
    flex-direction: column;
  }

  .cs-blog-topic-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .cs-blog-topic-card a {
    grid-template-rows: 180px 1fr;
  }

  .cs-blog-topic-card img,
  .cs-blog-topic-card .cs-content-card-placeholder {
    height: 180px;
  }

  .cs-blog-article-body {
    padding: 22px;
  }

  .cs-blog-check-list li {
    padding-right: 14px;
  }

  .cs-blog-article-cta-actions a {
    width: 100%;
  }
}
