.content-hub {
  display: grid;
  gap: 16px;
}

.content-hero {
  border: 1px solid rgba(17, 34, 27, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 0, rgba(30, 122, 90, 0.12), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(38, 117, 182, 0.1), transparent 42%),
    #fff;
  padding: clamp(16px, 2.8vw, 26px);
  box-shadow: 0 12px 28px rgba(16, 26, 21, 0.08);
}

.content-hero__kicker {
  margin: 0;
  color: #3b6f5c;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.content-hero__title {
  margin: 6px 0 0;
  font-size: clamp(1.4rem, 3.8vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.content-hero__hint {
  margin: 10px 0 0;
  max-width: 70ch;
  color: #53605b;
  font-size: 0.95rem;
  line-height: 1.45;
}

.content-menu-chipbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.content-menu-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(20, 29, 25, 0.16);
  background: #fff;
  color: #1f2c28;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
}

.content-menu-chip:hover {
  border-color: #1a7f5a;
  color: #1a7f5a;
}

.content-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card {
  border: 1px solid rgba(17, 34, 27, 0.11);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(18, 30, 24, 0.06);
}

.content-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.content-card__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f0f3f2;
}

.content-card__body {
  padding: 12px;
}

.content-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.content-pill {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(26, 127, 90, 0.12);
  color: #1a7f5a;
  font-size: 0.68rem;
  font-weight: 700;
}

.content-pill--draft {
  background: rgba(181, 76, 41, 0.14);
  color: #9b4d29;
}

.content-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.content-card__excerpt {
  margin: 8px 0 0;
  color: #55605c;
  line-height: 1.45;
  font-size: 0.86rem;
}

.content-section {
  border: 1px solid rgba(17, 34, 27, 0.1);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
}

.content-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.content-section__title {
  margin: 0;
  font-size: 1.05rem;
}

.content-section__more {
  color: #1a7f5a;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.content-empty {
  border: 1px dashed rgba(17, 34, 27, 0.2);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  color: #61706a;
}

.content-article {
  border: 1px solid rgba(17, 34, 27, 0.1);
  border-radius: 18px;
  background: #fff;
  padding: clamp(14px, 2.5vw, 24px);
}

.content-article__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.content-article__title {
  margin: 0;
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  line-height: 1.15;
}

.content-article__summary {
  margin: 10px 0 0;
  color: #58635f;
  font-size: 1rem;
  line-height: 1.5;
}

.content-article__cover {
  width: 100%;
  border-radius: 14px;
  margin-top: 14px;
  object-fit: cover;
  max-height: 520px;
}

.content-article__body {
  margin-top: 16px;
  line-height: 1.62;
  color: #1d2623;
}

.content-article__body h2,
.content-article__body h3,
.content-article__body h4 {
  margin-top: 1.2em;
  margin-bottom: 0.4em;
}

.content-article__body p {
  margin: 0 0 0.8em;
}

.content-article__body img,
.content-article__body video,
.content-article__body iframe {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 12px 0;
  border-radius: 12px;
}

.content-article__body iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
}

.content-article__body ul,
.content-article__body ol {
  margin: 0 0 0.9em;
  padding-left: 1.2em;
}

.content-article__body a {
  color: #1a7f5a;
  text-underline-offset: 2px;
}

.content-article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.content-article__body th,
.content-article__body td {
  border: 1px solid rgba(17, 34, 27, 0.15);
  padding: 8px;
  text-align: left;
}

.content-gallery {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.content-gallery__item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(17, 34, 27, 0.14);
  background: #fff;
}

.content-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.content-gallery__caption {
  padding: 6px;
  font-size: 0.72rem;
  color: #5f6965;
}

.content-paginator {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.content-paginator a,
.content-paginator span {
  min-height: 30px;
  min-width: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(17, 34, 27, 0.14);
  background: #fff;
  text-decoration: none;
  color: #23332d;
  font-size: 0.8rem;
  font-weight: 600;
}

.content-paginator .is-active {
  background: rgba(26, 127, 90, 0.12);
  color: #1a7f5a;
  border-color: transparent;
}

.info-page .container {
  max-width: 940px;
}

.info-shell {
  display: grid;
  gap: 16px;
}

.info-hero {
  border: 1px solid var(--line, rgba(27, 30, 28, 0.1));
  border-radius: 22px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--panel, #fff) 94%, transparent), color-mix(in srgb, var(--panel2, #f3f8f1) 88%, transparent));
  box-shadow: 0 10px 28px rgba(18, 30, 24, 0.08);
  padding: clamp(16px, 2.8vw, 28px);
}

.info-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand, #1a7f5a);
}

.info-title {
  margin: 8px 0 0;
  font-size: clamp(1.5rem, 3.8vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.info-lead {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted, #5c6560);
  max-width: 66ch;
}

.info-section {
  border: 1px solid var(--line, rgba(27, 30, 28, 0.1));
  border-radius: 18px;
  background: color-mix(in srgb, var(--panel, #fff) 96%, transparent);
  padding: clamp(14px, 2.3vw, 20px);
}

.info-section__title {
  margin: 0 0 12px;
  font-size: clamp(1.12rem, 2.2vw, 1.4rem);
}

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

.info-grid--tight {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.info-card {
  border: 1px solid var(--line, rgba(27, 30, 28, 0.1));
  border-radius: 16px;
  background: color-mix(in srgb, var(--panel, #fff) 94%, transparent);
  padding: 14px;
}

.info-card__num {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand, #1a7f5a), color-mix(in srgb, var(--brand, #1a7f5a) 70%, #fff));
}

.info-card__title {
  margin: 10px 0 0;
  font-size: 1rem;
}

.info-card__text {
  margin: 8px 0 0;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--muted, #5c6560);
}

.info-text {
  margin: 8px 0 0;
  line-height: 1.55;
  color: var(--muted, #5c6560);
}

.info-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--muted, #5c6560);
}

.info-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line, rgba(27, 30, 28, 0.1));
  border-radius: 14px;
  background: color-mix(in srgb, var(--panel, #fff) 95%, transparent);
  overflow: clip;
}

.faq-item__q {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 12px 14px;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: "+";
  float: right;
  color: var(--muted, #5c6560);
  font-weight: 700;
}

.faq-item[open] .faq-item__q::after {
  content: "−";
}

.faq-item__a {
  border-top: 1px solid var(--line, rgba(27, 30, 28, 0.1));
  padding: 11px 14px 13px;
  line-height: 1.5;
  color: var(--muted, #5c6560);
}

.content-reviews-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-review-card {
  border: 1px solid rgba(17, 34, 27, 0.12);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
}

.content-review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.content-review-card__product {
  font-weight: 700;
  color: #1f2c28;
  text-decoration: none;
}

.content-review-card__product:hover {
  color: #1a7f5a;
}

.content-review-card__rating {
  white-space: nowrap;
}

.content-review-card__text {
  margin: 8px 0 0;
  color: #26312d;
  line-height: 1.5;
}

.content-review-card__foot {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #63706a;
  font-size: 0.82rem;
}

html[data-theme="dark"] .info-hero,
html[data-theme="dark"] .info-section,
html[data-theme="dark"] .info-card,
html[data-theme="dark"] .faq-item {
  box-shadow: none;
}

html[data-theme="dark"] .content-hero,
html[data-theme="dark"] .content-card,
html[data-theme="dark"] .content-section,
html[data-theme="dark"] .content-empty,
html[data-theme="dark"] .content-article,
html[data-theme="dark"] .content-gallery__item,
html[data-theme="dark"] .content-paginator a,
html[data-theme="dark"] .content-paginator span {
  background: rgba(8, 18, 28, 0.72);
  border-color: rgba(244, 239, 230, 0.16);
  box-shadow: none;
}

html[data-theme="dark"] .content-hero__kicker,
html[data-theme="dark"] .content-card__title,
html[data-theme="dark"] .content-section__title,
html[data-theme="dark"] .content-article__title,
html[data-theme="dark"] .content-review-card__product {
  color: #f4efe6;
}

html[data-theme="dark"] .content-hero__hint,
html[data-theme="dark"] .content-card__excerpt,
html[data-theme="dark"] .content-empty,
html[data-theme="dark"] .content-article__summary,
html[data-theme="dark"] .content-article__body,
html[data-theme="dark"] .content-gallery__caption,
html[data-theme="dark"] .content-review-card__text,
html[data-theme="dark"] .content-review-card__foot {
  color: #c9c0b4;
}

html[data-theme="dark"] .content-menu-chip {
  border-color: rgba(244, 239, 230, 0.22);
  background: rgba(7, 18, 26, 0.72);
  color: #f4efe6;
}

html[data-theme="dark"] .content-menu-chip:hover {
  border-color: rgba(35, 178, 109, 0.45);
  color: #8bd9b5;
}

html[data-theme="dark"] .content-pill {
  background: rgba(35, 178, 109, 0.2);
  color: #9be2c2;
}

html[data-theme="dark"] .content-pill--draft {
  background: rgba(181, 76, 41, 0.2);
  color: #f4b9a6;
}

html[data-theme="dark"] .content-article__body th,
html[data-theme="dark"] .content-article__body td {
  border-color: rgba(244, 239, 230, 0.18);
}

html[data-theme="dark"] .content-card__cover,
html[data-theme="dark"] .content-article__cover,
html[data-theme="dark"] .content-gallery__item img {
  background: rgba(244, 239, 230, 0.06);
}

@media (max-width: 1100px) {
  .content-grid,
  .content-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .content-grid,
  .content-grid--4,
  .content-reviews-grid,
  .content-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .info-grid,
  .info-grid--tight,
  .info-steps {
    grid-template-columns: minmax(0, 1fr);
  }
}
