:root {
  --green: #2f7d25;
  --green-2: #5aa143;
  --green-3: #dcebd2;
  --leaf: #edf6e8;
  --cream: #fbfcf6;
  --ink: #1e261d;
  --muted: #667064;
  --line: #dfe9db;
  --white: #fff;
  --accent: #f0a33a;
  font-family: "M PLUS Rounded 1c", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  height: 70px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #e7eee2;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 12px rgba(39, 83, 33, .05);
}

.header-inner,
.hero-inner,
.feature-inner,
.filter-panel,
.content-section,
.guide-cards,
.newsletter,
.site-cta,
.footer-inner {
  width: min(1160px, calc(100vw - 64px));
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 160px;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  margin-left: auto;
  white-space: nowrap;
}

.global-nav a {
  color: #273025;
  font-weight: 700;
  font-size: 13px;
  padding: 24px 0 21px;
  border-bottom: 3px solid transparent;
}

.global-nav a.active {
  color: var(--green);
  border-color: var(--green-2);
}

.hero {
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(122, 164, 80, .12), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .95) 34%, rgba(255, 255, 255, .76) 50%, rgba(255, 255, 255, .22) 72%, rgba(255, 255, 255, 0) 100%),
    url("../img/generated/hero-vegetables-v3.png") center right / cover no-repeat,
    #fbfcf7;
  border-bottom: 1px solid #eef2e8;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 430px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 133, 58, .12) 0 10%, transparent 11% 100%);
  background-size: 70px 70px;
  opacity: .5;
  pointer-events: none;
}

.hero-inner {
  min-height: 430px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-copy {
  padding: 32px 0 44px;
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.42;
  font-weight: 800;
  color: #20241f;
}

.hero h1 span {
  white-space: nowrap;
}

.hero p {
  margin: 22px 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: #3c4538;
  font-weight: 700;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  min-height: 44px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  padding: 0 28px;
}

.primary-button {
  color: white;
  background: linear-gradient(180deg, #357f25, #236a19);
  box-shadow: 0 8px 16px rgba(47, 125, 37, .18);
}

.primary-button span,
.section-heading span:last-child {
  font-size: 21px;
  line-height: 1;
  margin-left: 5px;
}

.secondary-button {
  color: var(--green);
  border: 1px solid #9bb996;
  background: white;
  min-width: 184px;
}

.hero-badge {
  position: absolute;
  right: 16px;
  top: 92px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  color: white;
  background: rgba(72, 127, 81, .72);
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(50, 92, 50, .16);
}

.hero-badge span {
  font-size: 12px;
}

.hero-badge strong {
  font-size: 39px;
  line-height: 1;
}

.features {
  background: white;
}

.feature-inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.feature {
  display: flex;
  align-items: center;
  gap: 13px;
}

.circle-icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  flex: 0 0 auto;
}

.feature h2 {
  margin: 0 0 3px;
  font-size: 14px;
  line-height: 1.35;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  padding: 24px;
  margin-top: 8px;
  margin-bottom: 22px;
  border: 1px solid #e2e9dd;
  border-radius: 8px;
  background: white;
  box-shadow: 0 4px 18px rgba(37, 69, 30, .08);
}

.filter-panel label {
  color: #485041;
  font-size: 12px;
  font-weight: 800;
}

.filter-panel input[type="search"],
.filter-panel select {
  width: 100%;
  height: 40px;
  margin-top: 6px;
  border: 1px solid #d7e2d2;
  border-radius: 4px;
  background: #fff;
  color: #333;
  padding: 0 12px;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  white-space: nowrap;
}

.check-label input {
  width: 15px;
  height: 15px;
  accent-color: var(--green);
}

.filter-panel button {
  height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  background: linear-gradient(180deg, #438c30, #2d721f);
  color: white;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.service-search-panel {
  margin-top: 0;
}

.page-head {
  margin-top: 32px;
  margin-bottom: 18px;
}

.page-head .eyebrow {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.page-head h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.35;
}

.page-head p:last-child {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  background: linear-gradient(90deg, #f4faee, #fff);
  border-bottom: 1px solid #e5eddf;
}

.page-hero-inner {
  width: min(1160px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 46px 0 42px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.page-hero h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.35;
}

.hero-lead {
  max-width: 760px;
  margin: 14px 0 0;
  color: #4f5a49;
  font-size: 15px;
  font-weight: 700;
}

.page-section {
  margin-top: 32px;
}

.page-filter {
  margin-top: 28px;
}

.content-panel {
  padding: 30px;
  border: 1px solid #e2eadf;
  border-radius: 8px;
  background: white;
  box-shadow: 0 5px 16px rgba(55, 89, 44, .06);
}

.content-panel h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.45;
}

.content-panel h2:not(:first-child) {
  margin-top: 28px;
}

.content-panel p {
  margin: 0 0 14px;
  color: #4c5548;
  font-size: 15px;
}

.content-panel ul {
  margin: 4px 0 16px;
  padding: 14px 18px 14px 34px;
  border: 1px solid #e2eadf;
  border-radius: 7px;
  background: #f8fbf4;
  color: #4c5548;
  font-size: 14px;
}

.content-panel li + li {
  margin-top: 6px;
}

.text-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  overflow: hidden;
  border: 1px solid #e2eadf;
  border-radius: 8px;
  background: white;
  box-shadow: 0 5px 16px rgba(55, 89, 44, .07);
}

.service-card > img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.service-card-body {
  padding: 18px;
}

.service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.service-card h2,
.service-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.service-score {
  min-width: 42px;
  min-height: 30px;
  border-radius: 5px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.service-meta {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 5px;
  display: inline-grid;
  place-items: center;
  background: #f2f8ec;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.service-card p {
  margin: 8px 0 12px;
  color: #495044;
  font-size: 13px;
}

.service-card dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.service-card dl div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 8px;
  font-size: 12px;
}

.service-card dt {
  color: var(--muted);
  font-weight: 800;
}

.service-card dd {
  margin: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.service-tags span {
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid #94ba89;
  border-radius: 4px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.empty-message {
  margin: 0;
  padding: 22px;
  border: 1px solid #e2eadf;
  border-radius: 8px;
  color: var(--muted);
  background: white;
}

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

.faq-list article {
  padding: 24px;
  border: 1px solid #e2eadf;
  border-radius: 8px;
  background: white;
  box-shadow: 0 5px 16px rgba(55, 89, 44, .05);
}

.faq-list h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-list p {
  margin: 0;
  color: #4c5548;
  font-size: 14px;
}

.filter-panel input[type="search"] {
  width: 100%;
  height: 40px;
  margin-top: 6px;
  border: 1px solid #d7e2d2;
  border-radius: 4px;
  background: #fff;
  color: #333;
  padding: 0 12px;
}

.content-section {
  margin-top: 20px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.section-heading h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  line-height: 1.3;
}

.heading-icon {
  width: 26px;
  height: 26px;
  border: 2px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  display: inline-grid;
  place-items: center;
  font-size: 17px;
  line-height: 1;
}

.section-heading a {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #dfe8da;
  border-radius: 7px;
  background: white;
}

.compare-table {
  width: 100%;
  min-width: 1020px;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  border-right: 1px solid #e4ece0;
  border-bottom: 1px solid #e4ece0;
  padding: 14px 12px;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.55;
}

.compare-table thead th {
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.compare-table th:first-child,
.compare-table td:first-child {
  width: 140px;
  background: linear-gradient(90deg, #f7fbf3, #fff);
  text-align: left;
  font-weight: 800;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table th:last-child,
.compare-table td:last-child {
  border-right: 0;
}

.compare-table small {
  color: var(--muted);
  font-size: 11px;
}

.logo-row td {
  padding-top: 16px;
}

.service-logo {
  min-height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 800;
}

.service-logo.oisix {
  font-size: 23px;
  font-style: italic;
}

.service-logo.radish {
  color: #237e28;
}

.service-logo.daichi {
  color: #e08a1a;
}

.service-logo.bio {
  color: #1e55a4;
}

.service-logo.tabechoku {
  color: #b95b65;
}

.service-photo {
  width: 112px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 auto 8px;
}

.mini-button {
  min-width: 84px;
  height: 27px;
  border-radius: 4px;
  background: var(--green);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border: 1px solid #93a948;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.stars {
  color: #79b82b;
  letter-spacing: 1px;
  white-space: nowrap;
}

.stars span {
  color: #d2d8ca;
}

.note {
  margin: 12px 0 0;
  text-align: center;
  color: #8a9185;
  font-size: 11px;
}

.source-list {
  max-width: 980px;
  margin: 14px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: #7b8374;
  font-size: 11px;
}

.source-list span {
  font-weight: 800;
}

.source-list a {
  height: 28px;
  padding: 0 10px;
  border: 1px solid #dfe8da;
  border-radius: 4px;
  background: #fff;
  color: #4f6f2a;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.guide-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 78px 1fr;
  grid-template-areas:
    "icon title"
    "icon text"
    "icon link";
  align-items: center;
  column-gap: 18px;
  padding: 22px 24px;
  border: 1px solid #e0e8dc;
  border-radius: 8px;
  background: white;
  box-shadow: 0 4px 16px rgba(49, 92, 40, .06);
}

.guide-icon {
  grid-area: icon;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #edf5e8;
  font-size: 35px;
}

.guide-card strong {
  grid-area: title;
  color: var(--green);
  font-size: 17px;
}

.guide-card p {
  grid-area: text;
  margin: 4px 0;
  color: #495044;
  font-size: 13px;
  line-height: 1.6;
}

.guide-card em,
.purpose-card em {
  grid-area: link;
  color: var(--green);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.purpose-section,
.latest-section {
  margin-top: 26px;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.purpose-grid,
.article-grid {
  grid-template-columns: repeat(4, 1fr);
}

.purpose-card,
.article-card {
  overflow: hidden;
  border: 1px solid #e2eadf;
  border-radius: 6px;
  background: white;
  box-shadow: 0 5px 16px rgba(55, 89, 44, .07);
}

.purpose-card img {
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.purpose-card div {
  padding: 13px 16px 16px;
}

.purpose-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
}

.purpose-card strong {
  display: block;
  color: #2e3a2a;
  font-size: 13px;
}

.purpose-card p {
  margin: 2px 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.article-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  min-height: 84px;
}

.article-card img {
  width: 96px;
  height: 100%;
  object-fit: cover;
}

.article-card div {
  padding: 10px 12px;
}

.article-card span {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  border: 1px solid #94ba89;
  border-radius: 3px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.article-card h3 {
  margin: 5px 0 9px;
  font-size: 14px;
  line-height: 1.45;
}

.article-card time {
  color: #777f72;
  font-size: 11px;
}

.newsletter {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(320px, 430px);
  gap: 24px;
  align-items: center;
  min-height: 130px;
  margin-top: 30px;
  padding: 20px 0;
}

.newsletter::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(90deg, #f1f8e8, #fffff5);
  z-index: -1;
}

.mail-icon {
  width: 86px;
  height: 86px;
  border: 1px solid #cde2bf;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(255, 255, 255, .45);
}

.mail-icon svg {
  width: 46px;
  fill: currentColor;
}

.newsletter-copy h2 {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 20px;
}

.newsletter-copy p {
  margin: 0;
  color: #555e4e;
  font-size: 13px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 10px;
}

.newsletter-form input {
  height: 42px;
  border: 1px solid #d5dfd0;
  border-radius: 5px;
  padding: 0 14px;
  background: white;
}

.newsletter-form button {
  height: 42px;
  border: 0;
  border-radius: 5px;
  background: var(--green);
  color: white;
  font-weight: 800;
}

.newsletter-form small {
  grid-column: 1 / -1;
  color: #7c8575;
  font-size: 11px;
}

.site-cta {
  margin-top: 30px;
  padding: 24px 28px;
  border: 1px solid #d9e8d0;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(90deg, #f1f8e8, #fffff5);
}

.site-cta h2 {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 20px;
  line-height: 1.35;
}

.site-cta p {
  margin: 0;
  color: #555e4e;
  font-size: 13px;
}

.site-cta .primary-button {
  flex: 0 0 auto;
}

main > :last-child {
  margin-bottom: 42px;
}

.site-footer {
  position: relative;
  background: linear-gradient(135deg, #14572d, #063b20);
  color: white;
  padding: 34px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: 42px;
}

.site-footer .brand-logo {
  width: 190px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 20px 0 18px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  line-height: 1.8;
}

.footer-col h2 {
  margin: 0 0 12px;
  font-size: 13px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  line-height: 1.9;
}

.copyright {
  margin: 30px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.page-top {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .header-inner,
  .hero-inner,
  .page-hero-inner,
  .feature-inner,
  .filter-panel,
  .content-section,
  .guide-cards,
  .newsletter,
  .site-cta,
  .footer-inner {
    width: min(100% - 32px, 720px);
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    min-height: 70px;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .global-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 20px;
  }

  .global-nav a {
    padding: 8px 0 10px;
  }

  .hero-inner {
    min-height: 470px;
    padding-top: 24px;
    align-items: flex-start;
  }

  .hero-copy {
    padding-bottom: 220px;
  }

  .hero-badge {
    right: 8px;
    top: auto;
    bottom: 116px;
  }

  .feature-inner,
  .guide-cards,
  .purpose-grid,
  .article-grid,
  .service-list,
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card > img {
    height: 150px;
    min-height: 0;
  }

  .newsletter {
    grid-template-columns: 86px 1fr;
  }

  .newsletter-form {
    grid-column: 1 / -1;
  }

  .site-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .header-inner,
  .hero-inner,
  .page-hero-inner,
  .feature-inner,
  .filter-panel,
  .content-section,
  .guide-cards,
  .newsletter,
  .site-cta,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .brand-logo {
    width: 160px;
  }

  .hero h1 {
    font-size: 27px;
  }

  .hero {
    min-height: 620px;
    background:
      radial-gradient(circle at 50% 22%, rgba(122, 164, 80, .12), transparent 20%),
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .96) 48%, rgba(255, 255, 255, .32) 68%, rgba(255, 255, 255, 0) 100%),
      url("../img/generated/hero-vegetables-v3.png") center bottom / auto 48% no-repeat,
      #fbfcf7;
  }

  .hero-inner {
    min-height: 620px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero-inner {
    padding: 34px 0 30px;
  }

  .content-panel {
    padding: 22px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-copy {
    padding-top: 34px;
    padding-bottom: 270px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-badge {
    width: 86px;
    height: 86px;
    right: 18px;
    bottom: 166px;
  }

  .hero-badge strong {
    font-size: 29px;
  }

  .hero-badge span {
    font-size: 10px;
  }

  .feature-inner,
  .guide-cards,
  .purpose-grid,
  .article-grid,
  .service-list,
  .filter-panel,
  .footer-inner,
  .newsletter,
  .site-cta {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    padding: 16px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .guide-card {
    grid-template-columns: 60px 1fr;
    padding: 18px;
  }

  .guide-icon {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter::before {
    height: 230px;
  }

  .site-cta {
    padding: 22px;
  }

  .site-cta .primary-button {
    width: 100%;
  }

  main > :last-child {
    margin-bottom: 32px;
  }
}
