/* =============================================
   HEADER
   ============================================= */

.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding: 0.85rem var(--space-md);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.header-search {
  flex: 1;
  min-width: 180px;
  max-width: 400px;
  position: relative;
  margin-left: auto;
}

.search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: 24px;
  background: var(--color-bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  overflow: hidden;
}

.search-form:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
  background: var(--color-surface);
}

#searchBar {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.55rem 0.75rem 0.55rem 1rem;
  font-size: 0.925rem;
  min-height: 44px;
  font-family: var(--font-sans);
  outline: none;
  color: var(--color-text);
}

#searchBar::placeholder {
  color: var(--color-muted-light);
}

.search-btn {
  border: none;
  background: transparent;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  min-height: 44px;
  transition: color 0.15s;
}

.search-btn:hover { color: var(--color-accent); }

.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 380px;
  overflow-y: auto;
  z-index: 300;
}

.search-results a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-light);
  transition: background 0.1s;
}

.search-results a:hover { background: var(--color-bg); }
.search-results a:last-child { border-bottom: none; }

.search-results strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.result-meta {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: border-color 0.15s;
}

.nav-toggle:hover { border-color: var(--color-accent); }

/* =============================================
   MEGAMENU
   ============================================= */

.megamenu {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.megamenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: var(--max-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-inline: var(--space-md);
}

.megamenu-item { position: relative; }

.megamenu-trigger {
  width: 100%;
  padding: 0.75rem var(--space-sm);
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  min-height: 44px;
  color: var(--color-text);
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.megamenu-trigger:hover,
.megamenu-item.is-open .megamenu-trigger {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.megamenu-panel {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 260px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-sm) var(--space-md);
  z-index: 250;
}

.megamenu-item:hover .megamenu-panel,
.megamenu-item.is-open .megamenu-panel {
  display: block;
}

.megamenu-desc {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 0.5rem;
}

.megamenu-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.megamenu-panel a {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.12s, padding-left 0.12s;
}

.megamenu-panel a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

/* =============================================
   MAIN CONTENT WRAPPER
   ============================================= */

#main-content {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-xl);
}

.page-home #main-content {
  max-width: 100%;
  padding: 0;
}

/* =============================================
   HOMEPAGE HERO
   ============================================= */

.home-hero {
  background: linear-gradient(135deg, var(--color-hero-start) 0%, var(--color-hero-end) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem var(--space-md) 4rem;
}

.home-hero h1 {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
  max-width: 18ch;
  margin-inline: auto;
}

.home-hero-lead {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}


/* =============================================
   HOMEPAGE PILLARS
   ============================================= */

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 1.35rem + 1vw, 2.1rem);
  margin: 0 0 0.5rem;
}

.section-lead {
  text-align: center;
  color: var(--color-muted);
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

.home-pillars {
  background: var(--color-surface);
  padding: var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  max-width: var(--max-wide);
  margin-inline: auto;
}

.pillar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.pillar-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.pillar-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.pillar-card-body {
  padding: var(--space-sm) var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pillar-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.pillar-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  flex: 1;
}

.pillar-card li { margin-bottom: 0.35rem; }

.pillar-card a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.12s;
}

.pillar-card a:hover { color: var(--color-accent); }

/* =============================================
   HOMEPAGE FEATURED ARTICLES
   ============================================= */

.home-featured {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-wide);
  margin-inline: auto;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.article-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.article-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-card-body {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.article-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.article-card-desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
  flex: 1;
}

/* =============================================
   HOMEPAGE WHY US SECTION
   ============================================= */

.home-methodology {
  background: var(--color-hero-start);
  color: rgba(255,255,255,0.9);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.home-methodology h2 {
  color: #fff;
  margin: 0 0 1rem;
}

.home-methodology p {
  max-width: 54ch;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* =============================================
   ARTICLE LAYOUT
   ============================================= */

.article-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-height: 480px;
  overflow: hidden;
  background: var(--color-hero-start);
}

.article-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.18) 50%, transparent 100%);
}

.article-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem var(--space-md);
  max-width: calc(var(--max-content) + 2 * var(--space-md));
  margin-inline: auto;
}

.article-hero-content h1 {
  color: #fff;
  font-size: clamp(1.5rem, 1.2rem + 1.8vw, 2.6rem);
  margin: 0.5rem 0 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.article-byline-bar {
  padding: 1rem var(--space-md);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-muted);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--color-surface);
}

.article-byline-inner {
  max-width: calc(var(--max-content) + 2 * var(--space-md));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-byline-bar .badge {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.article-header-plain {
  margin-bottom: var(--space-lg);
  padding-top: var(--space-md);
}

.article-meta-plain {
  font-size: 0.825rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.article-header-plain h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 1.3rem + 1.5vw, 2.5rem);
}

/* Star rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: var(--space-sm) 0;
}

.stars {
  color: var(--color-warning);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.rating-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.rating-basis {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Rating sub-score breakdown bars */
.rating-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin: 0.75rem 0 1.25rem;
  font-size: 0.85rem;
}

.rating-bar-item { text-align: center; }

.rating-bar-label {
  color: var(--color-muted);
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rating-bar-track {
  background: var(--color-border);
  border-radius: 99px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.rating-bar-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 99px;
}

.rating-bar-value {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.9rem;
}

/* Article body */
.article-body {
  margin-top: var(--space-md);
}

.article-body h2 {
  margin-top: var(--space-xl);
  font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.6rem);
  color: var(--color-text);
  border-bottom: 2px solid var(--color-border-light);
  padding-bottom: 0.5rem;
}

.article-body h3 {
  margin-top: var(--space-lg);
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  color: var(--color-text);
}

.article-body p {
  margin: 1rem 0;
}

.article-body strong {
  font-weight: 700;
  color: #0c1a2e;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.article-body li { margin-bottom: 0.4rem; }

/* Comparison tables */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.925rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.article-body th {
  background: var(--color-hero-start);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-body td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: top;
}

.article-body tr:nth-child(even) td {
  background: #fafbfc;
}

.article-body tr:last-child td {
  border-bottom: none;
}

/* Product CTA */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: var(--space-sm) 0;
  padding: 0.9rem 1.6rem;
  min-height: 48px;
  background: var(--color-cta);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(234,88,12,0.3);
}

.btn-cta:hover {
  background: var(--color-cta-hover);
  box-shadow: 0 6px 20px rgba(234,88,12,0.4);
  color: #fff !important;
}

.disclosure-inline {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-left: 0.3rem;
}

/* Ranking methodology box */
.ranking-methodology {
  background: var(--color-info-light);
  border: 1px solid var(--color-info-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #1e40af;
  margin: var(--space-md) 0;
  line-height: 1.6;
}

.ranking-methodology strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #1e40af;
}

/* Verdict box */
.verdict-box {
  background: var(--color-verdict-bg);
  border-left: 4px solid var(--color-verdict-border);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem var(--space-md);
  margin: var(--space-lg) 0;
}

.verdict-box h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

.verdict-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.925rem;
}

.verdict-box li {
  padding: 0.3rem 0;
  display: flex;
  gap: 0.6rem;
}

.verdict-box li::before {
  flex-shrink: 0;
  font-weight: 700;
}

.verdict-box .get-it::before { content: "✓"; color: var(--color-accent); }
.verdict-box .skip-it::before { content: "✗"; color: #dc2626; }
.verdict-box .bottom-line::before { content: "→"; color: var(--color-info); }

/* Product card */
.product-card {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  background: var(--color-surface);
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0;
}

.best-for-badge {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent-hover);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Active megamenu nav state */
.megamenu-panel .is-active {
  color: var(--color-accent);
  font-weight: 600;
  cursor: default;
  display: block;
  padding: 0.45rem 0;
  font-size: 0.875rem;
}

.megamenu-item:has(.is-active) .megamenu-trigger {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Community feedback quote */
.community-quote {
  background: #f0f4ff;
  border-left: 4px solid var(--color-info);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: var(--space-md) 0;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.65;
}

.community-quote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  font-style: normal;
}

/* Callout / pull quote */
.callout {
  background: var(--color-bg);
  border-left: 3px solid var(--color-warning);
  padding: 1rem 1.25rem;
  margin: var(--space-md) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* =============================================
   STATIC PAGES (about, disclosure)
   ============================================= */

.page-content h1 {
  margin-top: 0;
  font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
}

.legal-content p { margin: var(--space-md) 0; }

.legal-content h2 {
  margin-top: var(--space-lg);
  font-size: 1.3rem;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--color-hero-start);
  color: rgba(255,255,255,0.75);
  margin-top: var(--space-xl);
  padding: var(--space-xl) var(--space-md) var(--space-lg);
}

.footer-grid {
  max-width: var(--max-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.footer-nav h4,
.footer-legal h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 var(--space-sm);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li { margin-bottom: 0.5rem; }

.footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.12s;
}

.footer-nav a:hover { color: #fff; }

.amazon-disclosure {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-sm);
}

.footer-bottom {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.825rem;
  transition: color 0.12s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.85); }

.copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .megamenu-list {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .megamenu-item:not(:last-child) {
    border-bottom: 1px solid var(--color-border-light);
  }

  .megamenu-trigger {
    justify-content: flex-start;
    padding: 0.9rem var(--space-md);
    border-bottom: none;
  }

  .megamenu-panel {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 var(--space-md) var(--space-sm) 2.5rem;
    border-radius: 0;
  }

  .megamenu:not(.is-open) .megamenu-list { display: none; }
  .megamenu.is-open .megamenu-list { display: grid; }

  .nav-toggle { display: flex; }

  .article-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .header-search {
    order: 3;
    max-width: 100%;
    width: 100%;
  }

  .home-hero {
    padding: 3.5rem var(--space-md) 3rem;
  }

  .article-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .pillar-grid { grid-template-columns: 1fr 1fr; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-hero-img { height: 260px; }
  .article-hero { max-height: 260px; }
}

@media (max-width: 420px) {
  .pillar-grid { grid-template-columns: 1fr; }
}
