/*
Theme Name: Aster Plain Journal
Author: Maren Vale Works
Description: A mobile-first classic WordPress theme with an editorial public-health layout, flexible Customizer options, and dynamic WordPress content.
Version: 1.3.0
Text Domain: omph-theme
*/

:root {
  --omph-bg: #fbfaf3;
  --omph-surface: #fffdf8;
  --omph-ink: #17201a;
  --omph-muted: #657067;
  --omph-line: #d8d2c3;
  --omph-green: #275246;
  --omph-sage: #e6eee2;
  --omph-coral: #cf5c3d;
  --omph-sky: #8db6c8;
  --omph-shadow: 0 18px 55px rgba(23, 32, 26, 0.12);
  --omph-radius: 8px;
  --omph-wrap: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--omph-bg);
  color: var(--omph-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
  font: inherit;
}

.omph-wrap {
  width: var(--omph-wrap);
  margin-inline: auto;
}

.omph-sr-only,
.omph-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.omph-skip-link:focus {
  z-index: 999;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  background: var(--omph-ink);
  color: var(--omph-surface);
  border-radius: var(--omph-radius);
}

.omph-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.96);
  border-top: 6px solid var(--omph-green);
  border-bottom: 1px solid var(--omph-line);
  box-shadow: 0 8px 24px rgba(23, 32, 26, 0.04);
  backdrop-filter: blur(16px);
}

.omph-header-inner {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.omph-brand {
  min-width: 0;
}

.omph-site-title,
.omph-logo-link {
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--omph-ink);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.omph-site-title::before,
.omph-logo-link::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 34px;
  background: var(--omph-coral);
  border-radius: 999px;
}

.omph-brand img {
  display: block;
  max-height: 44px;
  width: auto;
}

.omph-menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--omph-green);
  border-radius: var(--omph-radius);
  background: var(--omph-green);
  color: var(--omph-surface);
  cursor: pointer;
}

.omph-menu-lines,
.omph-menu-lines::before,
.omph-menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.omph-menu-lines {
  position: relative;
}

.omph-menu-lines::before,
.omph-menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.omph-menu-lines::before {
  top: -6px;
}

.omph-menu-lines::after {
  top: 6px;
}

.omph-header-inner.omph-nav-open .omph-menu-lines {
  background: transparent;
}

.omph-header-inner.omph-nav-open .omph-menu-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.omph-header-inner.omph-nav-open .omph-menu-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.omph-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: none;
  padding: 10px;
  background: var(--omph-surface);
  border: 1px solid var(--omph-line);
  border-radius: var(--omph-radius);
  box-shadow: var(--omph-shadow);
}

.omph-header-inner.omph-nav-open .omph-nav {
  display: block;
}

.omph-menu,
.omph-social-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.omph-menu a,
.omph-social-menu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  color: var(--omph-ink);
  border-radius: var(--omph-radius);
  font-weight: 700;
  text-decoration: none;
}

.omph-current-menu-item > a,
.omph-menu a:hover,
.omph-menu a:focus-visible,
.omph-social-menu a:hover,
.omph-social-menu a:focus-visible {
  background: var(--omph-sage);
  outline: none;
}

.omph-main {
  min-height: 68vh;
}

.omph-hero {
  padding: 0;
  background: var(--omph-green);
  color: var(--omph-surface);
}

.omph-hero-shell {
  width: min(1220px, calc(100vw - 32px));
  margin-inline: auto;
  display: grid;
  gap: 0;
  padding-top: 28px;
}

.omph-hero-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 18px;
  color: rgba(255, 253, 248, 0.76);
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.omph-hero-rail a,
.omph-hero-rail span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  color: rgba(255, 253, 248, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  text-decoration: none;
}

.omph-hero-rail a:hover,
.omph-hero-rail a:focus-visible {
  color: var(--omph-ink);
  background: var(--omph-surface);
  outline: none;
}

.omph-hero-panel {
  max-width: 900px;
  padding: 30px 0 34px;
}

.omph-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 6px 14px;
  margin: 0 0 18px;
  color: var(--omph-surface);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--omph-radius);
  font-size: 0.9rem;
  font-weight: 700;
}

.omph-hero-title {
  max-width: 980px;
  margin: 0;
  color: var(--omph-surface);
  font-size: clamp(2.65rem, 13vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.omph-hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1rem, 3.6vw, 1.15rem);
}

.omph-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.omph-button,
.omph-read-more,
.omph-back-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: var(--omph-ink);
  background: var(--omph-surface);
  border: 1px solid var(--omph-surface);
  border-radius: var(--omph-radius);
  font-weight: 800;
  text-decoration: none;
}

.omph-button:hover,
.omph-button:focus-visible,
.omph-read-more:hover,
.omph-read-more:focus-visible,
.omph-back-link:hover,
.omph-back-link:focus-visible {
  color: var(--omph-surface);
  background: var(--omph-coral);
  border-color: var(--omph-coral);
  outline: none;
}

.omph-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--omph-radius) var(--omph-radius) 0 0;
}

.omph-hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: rgba(23, 32, 26, 0.2);
  pointer-events: none;
}

.omph-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 10;
  min-height: 260px;
  object-fit: cover;
}

.omph-hero-index {
  display: grid;
  gap: 1px;
  margin-inline: -16px;
  background: var(--omph-line);
  color: var(--omph-ink);
}

.omph-hero-index a,
.omph-hero-index span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 14px 16px;
  color: var(--omph-ink);
  background: var(--omph-bg);
  font-weight: 800;
  text-decoration: none;
}

.omph-hero-index a:hover,
.omph-hero-index a:focus-visible {
  color: var(--omph-surface);
  background: var(--omph-coral);
  outline: none;
}

.omph-category-band {
  padding: 42px 0 8px;
  background: var(--omph-bg);
}

.omph-category-band-inner {
  display: grid;
  gap: 20px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--omph-line);
}

.omph-category-head {
  display: grid;
  gap: 8px;
}

.omph-category-head h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.75rem, 7vw, 3rem);
  line-height: 1.05;
}

.omph-category-head p {
  max-width: 620px;
  margin: 0;
  color: var(--omph-muted);
}

.omph-category-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.omph-category-list a {
  display: grid;
  gap: 2px;
  min-height: 62px;
  align-content: center;
  padding: 12px 14px;
  color: var(--omph-ink);
  background: var(--omph-surface);
  border: 1px solid var(--omph-line);
  border-radius: var(--omph-radius);
  text-decoration: none;
}

.omph-category-list a:hover,
.omph-category-list a:focus-visible {
  color: var(--omph-surface);
  background: var(--omph-green);
  border-color: var(--omph-green);
  outline: none;
}

.omph-category-list span {
  font-weight: 850;
}

.omph-category-list small,
.omph-category-empty {
  color: var(--omph-muted);
}

.omph-category-list a:hover small,
.omph-category-list a:focus-visible small {
  color: rgba(255, 253, 248, 0.72);
}

.omph-category-empty {
  margin: 0;
  padding: 16px;
  background: var(--omph-surface);
  border: 1px solid var(--omph-line);
  border-radius: var(--omph-radius);
}

.omph-section {
  padding: 58px 0;
}

.omph-section-head {
  display: grid;
  gap: 10px;
  max-width: none;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--omph-line);
}

.omph-section-kicker,
.omph-card-date,
.omph-single-meta,
.omph-footer-kicker {
  color: var(--omph-coral);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.omph-section-title,
.omph-archive-title {
  max-width: 760px;
  margin: 0;
  color: var(--omph-ink);
  font-size: clamp(2rem, 8vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.omph-section-text {
  max-width: 620px;
  margin: 0;
  color: var(--omph-muted);
  font-size: 1.05rem;
}

.omph-post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--omph-line);
}

.omph-card {
  display: grid;
  grid-template-columns: minmax(104px, 34vw) 1fr;
  gap: 16px;
  padding: 18px 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--omph-line);
  border-radius: 0;
}

.omph-card-featured {
  display: block;
  padding-top: 0;
}

.omph-card-image-link,
.omph-card-placeholder {
  display: block;
  overflow: hidden;
  background: var(--omph-sage);
  border-radius: var(--omph-radius);
}

.omph-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.omph-card-featured .omph-card-image {
  aspect-ratio: 16 / 9;
}

.omph-card-placeholder {
  min-height: 104px;
  display: grid;
  place-items: center;
  color: var(--omph-ink);
  font-weight: 800;
}

.omph-card-body {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 0;
}

.omph-card-featured .omph-card-body {
  padding-top: 18px;
}

.omph-card-title {
  margin: 0;
  font-size: clamp(1.1rem, 5vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.omph-card-featured .omph-card-title {
  font-size: clamp(2rem, 8vw, 3.45rem);
  line-height: 1.04;
}

.omph-card-title a {
  text-decoration: none;
}

.omph-card-title a:hover,
.omph-card-title a:focus-visible {
  text-decoration: underline;
}

.omph-card-excerpt {
  margin: 0;
  color: var(--omph-muted);
  font-size: 0.96rem;
}

.omph-read-more {
  width: fit-content;
  min-height: 42px;
  margin-top: 4px;
  padding: 10px 15px;
  color: var(--omph-surface);
  background: var(--omph-green);
  border-color: var(--omph-green);
  font-size: 0.94rem;
}

.omph-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.omph-page-number {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  background: var(--omph-surface);
  border: 1px solid var(--omph-line);
  border-radius: var(--omph-radius);
  text-decoration: none;
}

.omph-current-page {
  color: var(--omph-surface);
  background: var(--omph-green);
  border-color: var(--omph-green);
}

.omph-empty {
  padding: 28px;
  background: var(--omph-surface);
  border: 1px solid var(--omph-line);
  border-radius: var(--omph-radius);
}

.omph-about-panel {
  padding: 0 0 68px;
  background: var(--omph-bg);
}

.omph-about-layout {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--omph-surface);
  border: 1px solid var(--omph-line);
  border-radius: var(--omph-radius);
}

.omph-about-copy,
.omph-about-growth {
  display: grid;
  gap: 12px;
  align-content: start;
}

.omph-about-copy h2,
.omph-about-growth h3 {
  margin: 0;
  color: var(--omph-ink);
  line-height: 1.05;
  letter-spacing: 0;
}

.omph-about-copy h2 {
  font-size: clamp(2rem, 8vw, 3.6rem);
}

.omph-about-growth {
  padding: 18px;
  background: var(--omph-sage);
  border-radius: var(--omph-radius);
}

.omph-about-growth h3 {
  font-size: clamp(1.35rem, 5vw, 2rem);
}

.omph-about-copy p,
.omph-about-growth p {
  margin: 0;
  color: var(--omph-muted);
}

.omph-arrow-link {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--omph-surface);
  background: var(--omph-green);
  border: 1px solid var(--omph-green);
  border-radius: var(--omph-radius);
  font-weight: 850;
  text-decoration: none;
}

.omph-arrow-link span:last-child {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--omph-green);
  background: var(--omph-surface);
  border-radius: 999px;
}

.omph-arrow-link:hover,
.omph-arrow-link:focus-visible {
  background: var(--omph-coral);
  border-color: var(--omph-coral);
  outline: none;
}

.omph-arrow-link:hover span:last-child,
.omph-arrow-link:focus-visible span:last-child {
  color: var(--omph-coral);
}

.omph-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
}

.omph-stat-card {
  display: grid;
  gap: 4px;
  min-height: 112px;
  align-content: end;
  padding: 14px;
  background: var(--omph-bg);
  border: 1px solid var(--omph-line);
  border-radius: var(--omph-radius);
}

.omph-stat-card dt {
  color: var(--omph-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.omph-stat-card dd {
  margin: 0;
  color: var(--omph-ink);
  font-size: clamp(1.9rem, 8vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.omph-single {
  padding: 54px 0 70px;
  background: var(--omph-bg);
}

.omph-single-wrap {
  width: min(80vw, 920px);
  margin-inline: auto;
}

.omph-single-header {
  margin: 28px 0 30px;
}

.omph-single-title {
  margin: 12px 0 0;
  font-size: clamp(2.25rem, 9vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.omph-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.omph-single-meta a {
  color: var(--omph-ink);
}

.omph-content {
  color: #1d1d1a;
  font-size: clamp(1.02rem, 2.5vw, 1.14rem);
}

.omph-content > * {
  margin-top: 0;
  margin-bottom: 1.35em;
}

.omph-content h2,
.omph-content h3,
.omph-content h4 {
  margin-top: 1.6em;
  margin-bottom: 0.55em;
  line-height: 1.15;
  letter-spacing: 0;
}

.omph-content h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.omph-content h3 {
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.omph-content p,
.omph-content li {
  color: #2f2f2b;
}

.omph-content a {
  font-weight: 700;
}

.omph-content img {
  border-radius: var(--omph-radius);
}

.omph-content blockquote {
  margin-inline: 0;
  padding: 18px 20px;
  background: var(--omph-surface);
  border-left: 4px solid var(--omph-coral);
  border-radius: var(--omph-radius);
}

.omph-content table {
  width: 100%;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}

.omph-content th,
.omph-content td {
  padding: 10px;
  border: 1px solid var(--omph-line);
}

.omph-content pre {
  overflow-x: auto;
  padding: 16px;
  background: #111;
  color: #fff;
  border-radius: var(--omph-radius);
}

.omph-page-links,
.omph-single-footer,
.omph-post-nav {
  margin-top: 32px;
}

.omph-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.omph-tag-list a,
.omph-post-nav a {
  display: block;
  padding: 10px 13px;
  background: var(--omph-surface);
  border: 1px solid var(--omph-line);
  border-radius: var(--omph-radius);
  text-decoration: none;
}

.omph-post-nav {
  display: grid;
  gap: 12px;
}

.omph-footer {
  padding: 46px 0 24px;
  background: var(--omph-green);
  color: var(--omph-surface);
}

.omph-footer-grid {
  display: grid;
  gap: 28px;
}

.omph-footer-title {
  margin: 0;
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  line-height: 1;
}

.omph-footer-text {
  max-width: 530px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.omph-footer-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.omph-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.omph-social-list a,
.omph-footer .omph-social-menu a {
  min-height: 40px;
  padding: 8px 13px;
  color: var(--omph-surface);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--omph-radius);
  text-decoration: none;
}

.omph-social-list a:hover,
.omph-social-list a:focus-visible,
.omph-footer .omph-social-menu a:hover,
.omph-footer .omph-social-menu a:focus-visible {
  background: var(--omph-surface);
  color: var(--omph-ink);
  outline: none;
}

.omph-footer-widgets {
  display: grid;
  gap: 18px;
}

.omph-footer-widget {
  color: rgba(255, 255, 255, 0.78);
}

.omph-footer-widget a {
  color: var(--omph-surface);
}

.omph-footer-bottom {
  width: var(--omph-wrap);
  margin: 34px auto 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  font-size: 0.92rem;
}

@media (min-width: 700px) {
  .omph-hero-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-inline: 0;
  }

  .omph-section-head {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: end;
  }

  .omph-section-kicker {
    grid-column: 1 / -1;
  }

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

@media (min-width: 900px) {
  .omph-header-inner {
    min-height: 78px;
  }

  .omph-menu-toggle {
    display: none;
  }

  .omph-nav {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .omph-menu {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .omph-menu a {
    min-height: 38px;
    padding: 7px 12px;
  }

  .omph-hero-shell {
    grid-template-columns: 160px minmax(0, 1fr);
    column-gap: 32px;
    padding-top: 38px;
  }

  .omph-hero-rail {
    grid-row: 1 / span 3;
    flex-direction: column;
    align-content: start;
    padding: 0 20px 0 0;
    border-right: 1px solid rgba(255, 253, 248, 0.22);
    border-bottom: 0;
  }

  .omph-hero-rail a,
  .omph-hero-rail span {
    width: 100%;
    justify-content: center;
  }

  .omph-hero-panel {
    padding: 8px 0 38px;
  }

  .omph-hero-title {
    max-width: 1020px;
    font-size: clamp(4.8rem, 8vw, 7.6rem);
  }

  .omph-hero-media,
  .omph-hero-index {
    grid-column: 2;
  }

  .omph-hero-image {
    aspect-ratio: 21 / 7;
    min-height: 310px;
  }

  .omph-section {
    padding: 76px 0;
  }

  .omph-category-band {
    padding-top: 58px;
  }

  .omph-category-band-inner {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .omph-category-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .omph-about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    padding: 34px;
  }

  .omph-stat-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .omph-post-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    column-gap: 38px;
    border-top: 0;
  }

  .omph-card-featured {
    grid-column: 1;
    grid-row: 1 / span 4;
    border-bottom: 0;
  }

  .omph-card:not(.omph-card-featured) {
    grid-column: 2;
    grid-template-columns: 118px 1fr;
  }

  .omph-card:not(.omph-card-featured) .omph-card-title {
    font-size: 1.18rem;
  }

  .omph-card:not(.omph-card-featured) .omph-card-excerpt {
    display: none;
  }

  .omph-footer-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .omph-footer-widgets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
