/* ============================================================
   GROUNDS MAGAZINE — CUSTOM CSS
   All layout styles, Verdict block, category pages,
   article layouts, homepage sections, and mobile overrides.
   ============================================================ */

/* ── BODY & BASE ─────────────────────────────────────────── */
body {
  background-color: #F5EDD9;
  color: #1A1410;
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8em;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Rufina', serif;
  font-weight: 700;
  color: #1A1410;
  line-height: 1.15em;
}

h5, h6 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: #1A1410;
}

.grounds-subheading,
.article-standfirst,
blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: #1A1410;
}

.grounds-label,
.cmsmasters-taxonomy,
.post-category,
.article-meta,
nav .menu-item a,
.category-nav a,
.subcategory-strip a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8C7B6B;
}

a {
  color: #C17E3A;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #7A8C6E;
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.cmsmasters-header-top,
.cmsmasters-header-mid,
.cmsmasters-header-bot {
  background-color: #F5EDD9;
  border-bottom: 1px solid #D4C5A9;
}

.cmsmasters-header-top-nav-title-item a,
.cmsmasters-header-mid-nav-title-item a,
.cmsmasters-header-bot-nav-title-item a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1A1410;
}

.cmsmasters-header-top-nav-title-item a:hover,
.cmsmasters-header-mid-nav-title-item a:hover,
.cmsmasters-header-bot-nav-title-item a:hover {
  color: #C17E3A;
}

/* ── HOMEPAGE HERO ───────────────────────────────────────── */
.grounds-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.grounds-hero img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}

.grounds-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(26,20,16,0.75) 0%, transparent 100%);
}

.grounds-hero__label {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F5EDD9;
  opacity: 0.8;
  margin-bottom: 12px;
}

.grounds-hero__title {
  font-family: 'Rufina', serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  color: #F5EDD9;
  line-height: 1.1em;
  max-width: 700px;
}

/* ── HOMEPAGE PILLAR SHOWCASE ───────────────────────────── */
.grounds-pillar-showcase {
  max-width: 1320px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.grounds-pillar-showcase__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.grounds-pillar-showcase__name {
  font-family: 'Rufina', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1410;
}

.grounds-pillar-showcase__line {
  flex: 1;
  height: 1px;
  background: #D4C5A9;
}

.grounds-pillar-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── HOMEPAGE NEWSLETTER SIGNUP ─────────────────────────── */
.grounds-newsletter {
  background-color: #1A1410;
  padding: 80px 20px;
  text-align: center;
  margin: 80px 0;
}

.grounds-newsletter__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C17E3A;
  margin-bottom: 16px;
}

.grounds-newsletter__title {
  font-family: 'Rufina', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: #F5EDD9;
  margin-bottom: 16px;
  line-height: 1.15em;
}

.grounds-newsletter__subtitle {
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  font-size: 14px;
  color: #8C7B6B;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.grounds-newsletter__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.grounds-newsletter__input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid #8C7B6B;
  border-right: none;
  color: #F5EDD9;
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  font-size: 14px;
  outline: none;
}

.grounds-newsletter__input::placeholder {
  color: #8C7B6B;
}

.grounds-newsletter__button {
  padding: 16px 28px;
  background: #C17E3A;
  border: 1px solid #C17E3A;
  color: #F5EDD9;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.grounds-newsletter__button:hover {
  background: #7A8C6E;
  border-color: #7A8C6E;
}

/* ── HOMEPAGE LATEST ARTICLES GRID ──────────────────────── */
.grounds-latest {
  max-width: 1320px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.grounds-latest__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.grounds-latest__title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8C7B6B;
  white-space: nowrap;
}

/* ── ARTICLE CARD (Shared) ───────────────────────────────── */
.grounds-card {
  display: flex;
  flex-direction: column;
  background: #F5EDD9;
}

.grounds-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.grounds-card:hover .grounds-card__image {
  transform: scale(1.02);
}

.grounds-card__image-wrap {
  overflow: hidden;
}

.grounds-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 10px;
}

.grounds-card__category {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C17E3A;
}

.grounds-card__date {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 1px;
  color: #8C7B6B;
}

.grounds-card__title {
  font-family: 'Rufina', serif;
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #1A1410;
  line-height: 1.25em;
  margin: 0 0 10px;
  transition: color 0.2s ease;
}

.grounds-card:hover .grounds-card__title {
  color: #C17E3A;
}

/* Verdict star badge visible on card */
.grounds-card__verdict-stars {
  display: flex;
  gap: 3px;
  margin-top: 10px;
}

.grounds-card__verdict-stars .star {
  color: #C17E3A;
  font-size: 12px;
}

.grounds-card__verdict-stars .star.empty {
  color: #D4C5A9;
}

/* ── CATEGORY PAGE — SUBCATEGORY STRIP ──────────────────── */
.grounds-category-page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 20px;
}

.grounds-subcategory-strip {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #D4C5A9;
  margin-bottom: 48px;
  overflow-x: auto;
}

.grounds-subcategory-strip__item {
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8C7B6B;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.grounds-subcategory-strip__item:hover,
.grounds-subcategory-strip__item.active {
  color: #1A1410;
  border-bottom-color: #C17E3A;
}

/* Category page hero article */
.grounds-category-hero {
  position: relative;
  margin-bottom: 48px;
  overflow: hidden;
}

.grounds-category-hero img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
  display: block;
}

.grounds-category-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(26,20,16,0.8) 0%, transparent 100%);
}

.grounds-category-hero__title {
  font-family: 'Rufina', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #F5EDD9;
  max-width: 700px;
  line-height: 1.15em;
}

/* Two column landscape article grid */
.grounds-article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.grounds-article-grid .grounds-card {
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid #D4C5A9;
}

.grounds-article-grid .grounds-card__image-wrap {
  flex: 0 0 240px;
}

.grounds-article-grid .grounds-card__image {
  aspect-ratio: 16/10;
  width: 240px;
}

.grounds-article-grid .grounds-card__content {
  flex: 1;
}

/* ── ARTICLE PAGE — LAYOUT 1: THE LONGFORM ──────────────── */
.grounds-single-longform {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.grounds-single-longform__hero {
  width: 100%;
  height: 65vh;
  object-fit: cover;
  display: block;
  margin-bottom: 48px;
}

.grounds-single-longform__meta {
  text-align: center;
  margin-bottom: 20px;
}

.grounds-single-longform__category {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C17E3A;
  margin-right: 20px;
}

.grounds-single-longform__date {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 1px;
  color: #8C7B6B;
}

.grounds-single-longform__title {
  font-family: 'Rufina', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: #1A1410;
  text-align: center;
  line-height: 1.1em;
  max-width: 900px;
  margin: 0 auto 24px;
}

.grounds-single-longform__standfirst {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #1A1410;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.5em;
}

.grounds-single-longform__body {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9em;
  color: #1A1410;
}

/* Flexible image placement in body */
.grounds-single-longform__body .image-full {
  width: 100vw;
  max-width: 1320px;
  margin-left: calc(-50vw + 360px);
  margin-right: calc(-50vw + 360px);
  margin-top: 48px;
  margin-bottom: 48px;
}

.grounds-single-longform__body .image-left {
  float: left;
  width: 45%;
  margin-right: 32px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.grounds-single-longform__body .image-right {
  float: right;
  width: 45%;
  margin-left: 32px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.grounds-single-longform__body .image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 48px 0;
}

/* Pull quotes */
.grounds-pullquote {
  border-top: 2px solid #C17E3A;
  border-bottom: 2px solid #C17E3A;
  padding: 40px 0;
  margin: 60px 0;
  text-align: center;
  clear: both;
}

.grounds-pullquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: #1A1410;
  line-height: 1.35em;
  margin: 0;
}

/* ── ARTICLE PAGE — LAYOUT 2: THE EDIT ──────────────────── */
.grounds-single-edit {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.grounds-single-edit__hero {
  width: 100%;
  height: 55vh;
  object-fit: cover;
  display: block;
  margin-bottom: 40px;
}

.grounds-single-edit__header {
  margin-bottom: 48px;
}

.grounds-single-edit__title {
  font-family: 'Rufina', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #1A1410;
  line-height: 1.15em;
  margin-bottom: 20px;
  text-align: left;
}

.grounds-single-edit__intro {
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8em;
  color: #1A1410;
  max-width: 700px;
}

/* Edit item - each recommendation/product */
.grounds-edit-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid #D4C5A9;
}

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

.grounds-edit-item__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.grounds-edit-item__number {
  font-family: 'Rufina', serif;
  font-size: 48px;
  font-weight: 700;
  color: #D4C5A9;
  line-height: 1em;
  margin-bottom: 12px;
}

.grounds-edit-item__name {
  font-family: 'Rufina', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A1410;
  margin-bottom: 12px;
}

.grounds-edit-item__body {
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8em;
  color: #1A1410;
  margin-bottom: 20px;
}

.grounds-edit-item__link {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C17E3A;
  border-bottom: 1px solid #C17E3A;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.grounds-edit-item__link:hover {
  color: #7A8C6E;
  border-color: #7A8C6E;
}

/* ── ARTICLE PAGE — LAYOUT 3: THE INTERVIEW ─────────────── */
.grounds-single-interview {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.grounds-single-interview__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.grounds-single-interview__hero {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: top center;
}

.grounds-single-interview__intro {
  padding: 40px 0;
}

.grounds-single-interview__label {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C17E3A;
  margin-bottom: 20px;
}

.grounds-single-interview__title {
  font-family: 'Rufina', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #1A1410;
  line-height: 1.1em;
  margin-bottom: 24px;
}

.grounds-single-interview__standfirst {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: #1A1410;
  line-height: 1.5em;
}

/* Q&A format */
.grounds-single-interview__body {
  max-width: 800px;
  margin: 0 auto;
}

.grounds-qa-block {
  margin-bottom: 48px;
}

.grounds-qa-block__question {
  font-family: 'Rufina', serif;
  font-size: 20px;
  font-weight: 700;
  color: #C17E3A;
  margin-bottom: 16px;
  line-height: 1.3em;
}

.grounds-qa-block__answer {
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9em;
  color: #1A1410;
}

/* Full width pull quote moment */
.grounds-interview-pullquote {
  background: #1A1410;
  padding: 80px 40px;
  margin: 80px calc(-50vw + 400px);
  text-align: center;
}

.grounds-interview-pullquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 40px);
  color: #F5EDD9;
  line-height: 1.35em;
  max-width: 800px;
  margin: 0 auto;
}

/* ── ARTICLE PAGE — LAYOUT 4: THE CAFÉ GUIDE ────────────── */
.grounds-single-cafeguide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.grounds-single-cafeguide__hero {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
  margin-bottom: 48px;
}

.grounds-single-cafeguide__title {
  font-family: 'Rufina', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: #1A1410;
  margin-bottom: 20px;
  line-height: 1.1em;
}

.grounds-single-cafeguide__intro {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: #1A1410;
  max-width: 700px;
  line-height: 1.5em;
  margin-bottom: 60px;
}

/* Sticky section navigation */
.grounds-section-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #F5EDD9;
  border-bottom: 1px solid #D4C5A9;
  display: flex;
  gap: 0;
  overflow-x: auto;
  margin-bottom: 60px;
}

.grounds-section-nav__item {
  padding: 16px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8C7B6B;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.grounds-section-nav__item:hover,
.grounds-section-nav__item.active {
  color: #1A1410;
  border-bottom-color: #C17E3A;
}

/* Guide section */
.grounds-guide-section {
  margin-bottom: 80px;
  scroll-margin-top: 60px;
}

.grounds-guide-section__title {
  font-family: 'Rufina', serif;
  font-size: 32px;
  font-weight: 700;
  color: #1A1410;
  padding-bottom: 16px;
  border-bottom: 1px solid #C17E3A;
  margin-bottom: 40px;
}

/* Individual cafe entry */
.grounds-cafe-entry {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid #D4C5A9;
}

.grounds-cafe-entry:last-child {
  border-bottom: none;
}

.grounds-cafe-entry__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.grounds-cafe-entry__name {
  font-family: 'Rufina', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1410;
  margin-bottom: 8px;
}

.grounds-cafe-entry__location {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8C7B6B;
  margin-bottom: 16px;
}

.grounds-cafe-entry__body {
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8em;
  color: #1A1410;
  margin-bottom: 20px;
}

/* ── GROUNDS VERDICT BLOCK ───────────────────────────────── */
.grounds-verdict {
  background: #1A1410;
  padding: 32px 36px;
  margin: 48px 0;
  position: relative;
}

.grounds-verdict__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.grounds-verdict__logo {
  font-family: 'Rufina', serif;
  font-weight: 700;
  font-size: 18px;
  color: #C17E3A;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.grounds-verdict__stars {
  display: flex;
  gap: 4px;
}

.grounds-verdict__star {
  color: #C17E3A;
  font-size: 16px;
}

.grounds-verdict__star.empty {
  color: #3D2E24;
}

.grounds-verdict__criteria {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.grounds-verdict__criterion {
  text-align: center;
}

.grounds-verdict__criterion-label {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8C7B6B;
  margin-bottom: 6px;
}

.grounds-verdict__criterion-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.grounds-verdict__criterion-stars .star {
  color: #C17E3A;
  font-size: 11px;
}

.grounds-verdict__criterion-stars .star.empty {
  color: #3D2E24;
}

.grounds-verdict__line {
  font-family: 'Rufina', serif;
  font-size: 20px;
  font-weight: 700;
  color: #F5EDD9;
  line-height: 1.2em;
  margin-bottom: 12px;
}

.grounds-verdict__support {
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7em;
  color: #8C7B6B;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.cmsmasters-footer,
.cmsmasters-footer-widgets {
  background-color: #1A1410;
}

.cmsmasters-footer .cmsmasters-footer-copyright,
.cmsmasters-footer a,
.cmsmasters-footer-nav a {
  color: #8C7B6B;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 1px;
}

.cmsmasters-footer a:hover {
  color: #C17E3A;
}

/* The Standard footer section */
.grounds-footer-standard {
  border-top: 1px solid #2A1E16;
  padding: 40px 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.grounds-footer-standard__title {
  font-family: 'Rufina', serif;
  font-size: 18px;
  font-weight: 700;
  color: #F5EDD9;
  margin-bottom: 12px;
}

.grounds-footer-standard__text {
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  font-size: 13px;
  color: #8C7B6B;
  line-height: 1.7em;
  margin-bottom: 16px;
}

.grounds-footer-standard__email {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 2px;
  color: #C17E3A;
  text-transform: uppercase;
}

/* ── MOBILE OVERRIDES ────────────────────────────────────── */
@media (max-width: 768px) {

  /* Category description collapses on mobile */
  .grounds-category-description {
    display: none;
  }

  /* Single column article grid on mobile */
  .grounds-article-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grounds-article-grid .grounds-card {
    flex-direction: column;
  }

  .grounds-article-grid .grounds-card__image-wrap {
    flex: none;
    width: 100%;
  }

  .grounds-article-grid .grounds-card__image {
    width: 100%;
  }

  /* Pillar showcase single column */
  .grounds-pillar-showcase__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Interview header stacks */
  .grounds-single-interview__header {
    grid-template-columns: 1fr;
  }

  .grounds-single-interview__hero {
    height: 50vw;
  }

  /* Cafe entry stacks */
  .grounds-cafe-entry {
    grid-template-columns: 1fr;
  }

  /* Edit item stacks */
  .grounds-edit-item {
    grid-template-columns: 1fr;
  }

  /* Verdict criteria collapses to 2 columns */
  .grounds-verdict__criteria {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Full width pull quote resets */
  .grounds-interview-pullquote {
    margin-left: -20px;
    margin-right: -20px;
    padding: 60px 20px;
  }

  /* Newsletter form stacks */
  .grounds-newsletter__form {
    flex-direction: column;
  }

  .grounds-newsletter__input {
    border-right: 1px solid #8C7B6B;
    border-bottom: none;
  }

  /* Hero height reduces */
  .grounds-hero img {
    height: 55vw;
    min-height: 280px;
  }

  .grounds-category-hero img {
    height: 50vw;
    min-height: 240px;
  }

  /* Sticky section nav scrolls horizontally */
  .grounds-section-nav {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .grounds-section-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 480px) {
  .grounds-verdict__criteria {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .grounds-single-longform__body .image-left,
  .grounds-single-longform__body .image-right {
    float: none;
    width: 100%;
    margin: 24px 0;
  }

  .grounds-single-longform__body .image-pair {
    grid-template-columns: 1fr;
  }
}
