:root {
  --dgs-paper: #f7f4ee;
  --dgs-surface: #fffdf8;
  --dgs-ink: #1f2821;
  --dgs-muted: #687068;
  --dgs-sage: #61785c;
  --dgs-sage-dark: #3c5740;
  --dgs-sage-pale: #dfe6dc;
  --dgs-terracotta: #b86342;
  --dgs-line: #d9d7ce;
  --dgs-sand: #e9e2d4;
  --dgs-display: "Iowan Old Style", Baskerville, Georgia, serif;
  --dgs-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --dgs-container: 1320px;
  --dgs-gutter: clamp(20px, 4vw, 64px);
  --dgs-shadow: 0 22px 60px rgba(38, 47, 40, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dgs-paper);
  color: var(--dgs-ink);
  font-family: var(--dgs-sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.admin-bar .dgs-site-header {
  top: 32px;
}

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

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--dgs-surface);
  color: var(--dgs-ink);
}

.dgs-container {
  width: min(100%, calc(var(--dgs-container) + (2 * var(--dgs-gutter))));
  margin-inline: auto;
  padding-inline: var(--dgs-gutter);
}

.dgs-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(247, 244, 238, 0.96);
  border-bottom: 1px solid var(--dgs-line);
  backdrop-filter: blur(14px);
}

.dgs-site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  min-height: 82px;
  gap: 32px;
}

.dgs-market-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--dgs-line);
  border-radius: 999px;
  background: var(--dgs-surface);
}

.dgs-market-switcher a {
  min-width: 30px;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--dgs-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
}

.dgs-market-switcher a:hover,
.dgs-market-switcher a:focus-visible,
.dgs-market-switcher a[aria-current="page"] {
  background: var(--dgs-sage);
  color: #fff;
}

.dgs-brand {
  justify-self: start;
  color: var(--dgs-ink);
  font-family: var(--dgs-display);
  font-size: clamp(27px, 2.2vw, 38px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.dgs-brand .custom-logo-link,
.dgs-brand .custom-logo {
  display: block;
}

.dgs-brand .custom-logo {
  width: auto;
  max-height: 44px;
}

.dgs-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.dgs-nav a {
  position: relative;
  color: var(--dgs-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.dgs-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--dgs-sage);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.dgs-nav a:hover::after,
.dgs-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dgs-site-header__cta {
  justify-self: end;
}

.dgs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--dgs-sage);
  border-radius: 8px;
  background: var(--dgs-sage);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.dgs-button:hover,
.dgs-button:focus-visible {
  border-color: var(--dgs-sage-dark);
  background: var(--dgs-sage-dark);
  transform: translateY(-2px);
}

.dgs-button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 13px;
}

.dgs-text-link {
  color: var(--dgs-sage-dark);
  font-weight: 650;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.dgs-text-link:hover,
.dgs-text-link:focus-visible {
  color: var(--dgs-terracotta);
}

.dgs-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.dgs-nav-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.dgs-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--dgs-line);
  background: var(--dgs-surface);
}

.dgs-hero__inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  min-height: clamp(580px, 68vw, 760px);
  padding-right: 0;
}

.dgs-hero__copy {
  z-index: 2;
  align-self: center;
  padding-block: clamp(72px, 9vw, 130px);
  padding-right: clamp(24px, 4vw, 72px);
}

.dgs-hero h1 {
  max-width: 700px;
  margin: 0;
  color: #25332a;
  font-family: var(--dgs-display);
  font-size: clamp(54px, 6.4vw, 94px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.99;
}

.dgs-hero__copy > p {
  max-width: 540px;
  margin: 30px 0 0;
  color: #465149;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
}

.dgs-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.dgs-hero__media {
  position: relative;
  min-width: 0;
}

.dgs-hero__media::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 12%;
  content: "";
  background: linear-gradient(90deg, var(--dgs-surface), rgba(255, 253, 248, 0));
  pointer-events: none;
}

.dgs-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.dgs-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.dgs-section {
  padding-block: clamp(76px, 9vw, 132px);
}

.dgs-section--featured {
  background: var(--dgs-paper);
}

.dgs-section--catalog {
  border-top: 1px solid var(--dgs-line);
  background: var(--dgs-surface);
}

.dgs-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.dgs-section-heading h2,
.dgs-story h2,
.dgs-prose h1 {
  margin: 0;
  font-family: var(--dgs-display);
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.dgs-section-heading__label {
  margin: 0 0 9px;
  color: var(--dgs-terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dgs-section-heading__copy {
  max-width: 460px;
  margin: 0 0 4px;
  color: var(--dgs-muted);
}

.dgs-product-grid {
  display: grid;
  gap: clamp(32px, 3.6vw, 56px) clamp(20px, 2.5vw, 38px);
}

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

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

.dgs-product-card {
  min-width: 0;
}

.dgs-product-card__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.dgs-product-card__image-wrap {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(82, 92, 83, 0.13);
  border-radius: 10px;
  background: #f0eee8;
}

.dgs-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dgs-product-card:hover .dgs-product-card__image {
  transform: scale(1.035);
}

.dgs-product-card__placeholder {
  color: rgba(31, 40, 33, 0.35);
  font-family: var(--dgs-display);
  font-size: 30px;
}

.dgs-product-card__body {
  padding-top: 17px;
}

.dgs-product-card__type {
  margin: 0 0 5px;
  color: var(--dgs-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dgs-product-card__title {
  min-height: 2.9em;
  margin: 0;
  font-family: var(--dgs-sans);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.012em;
  line-height: 1.42;
}

.dgs-product-card__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 16px;
}

.dgs-paid-link {
  color: #777d77;
  font-size: 11px;
}

.dgs-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 38px;
}

.dgs-filter {
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid var(--dgs-line);
  border-radius: 999px;
  background: transparent;
  color: var(--dgs-ink);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease;
}

.dgs-filter:hover,
.dgs-filter:focus-visible {
  border-color: var(--dgs-sage);
}

.dgs-filter.is-active {
  border-color: var(--dgs-sage);
  background: var(--dgs-sage);
  color: #fff;
}

.dgs-catalog__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(38px, 5vw, 62px);
}

.dgs-catalog__more .dgs-button {
  min-width: min(100%, 290px);
}

.dgs-food-promo {
  padding-block: clamp(56px, 7vw, 92px);
  border-top: 1px solid #d8c9b6;
  background:
    linear-gradient(120deg, rgba(233, 226, 212, 0.98), rgba(247, 244, 238, 0.95)),
    repeating-linear-gradient(90deg, rgba(31, 40, 33, 0.035) 0, rgba(31, 40, 33, 0.035) 1px, transparent 1px, transparent 8px);
}

.dgs-food-promo__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
}

.dgs-food-promo__copy h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--dgs-display);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.dgs-food-promo__copy > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--dgs-muted);
  font-size: clamp(17px, 1.3vw, 20px);
}

.dgs-food-promo__action {
  padding: 28px;
  border: 1px solid rgba(60, 87, 64, 0.24);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.78);
}

.dgs-food-promo__action .dgs-button {
  width: 100%;
  text-align: center;
}

.dgs-food-promo__action p {
  margin: 14px 0 0;
  color: var(--dgs-muted);
  font-size: 13px;
  text-align: center;
}

.dgs-guide {
  padding-block: clamp(76px, 9vw, 124px);
  border-top: 1px solid var(--dgs-line);
  background: var(--dgs-paper);
}

.dgs-guide__heading {
  max-width: 880px;
}

.dgs-guide__heading h2 {
  margin: 0;
  font-family: var(--dgs-display);
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.dgs-guide__heading > p:last-child {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--dgs-muted);
  font-size: clamp(17px, 1.4vw, 20px);
}

.dgs-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 38px);
  margin-top: 46px;
}

.dgs-guide__grid article {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--dgs-line);
  border-radius: 10px;
  background: var(--dgs-surface);
}

.dgs-guide__grid h3 {
  margin: 0;
  font-family: var(--dgs-display);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.08;
}

.dgs-guide__grid p {
  margin: 18px 0 0;
  color: var(--dgs-muted);
}

.dgs-guide__grid .dgs-text-link {
  display: inline-block;
  margin-top: 20px;
}

.dgs-guide__grid--content {
  max-width: 900px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dgs-guide__grid--content article > a {
  display: inline-block;
  margin-top: 18px;
  color: var(--dgs-sage-dark);
  font-weight: 750;
  text-underline-offset: 4px;
}

.dgs-resource-strip {
  padding-block: clamp(58px, 7vw, 88px);
  border-top: 1px solid var(--dgs-line);
  background: var(--dgs-sage-pale);
}

.dgs-resource-strip h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--dgs-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.dgs-resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 42px;
}

.dgs-resource-links a {
  padding: 10px 15px;
  border: 1px solid rgba(60, 87, 64, 0.28);
  border-radius: 999px;
  background: var(--dgs-surface);
  color: var(--dgs-sage-dark);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.dgs-resource-links a:hover,
.dgs-resource-links a:focus-visible {
  border-color: var(--dgs-sage-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dgs-story {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #d8c9b6;
  border-bottom: 1px solid #d8c9b6;
  background:
    linear-gradient(rgba(239, 231, 215, 0.94), rgba(239, 231, 215, 0.94)),
    repeating-linear-gradient(90deg, rgba(31, 40, 33, 0.04) 0, rgba(31, 40, 33, 0.04) 1px, transparent 1px, transparent 7px);
}

.dgs-story__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(480px, 1.3fr);
  align-items: center;
  gap: clamp(50px, 8vw, 140px);
  min-height: 490px;
  padding-block: clamp(72px, 9vw, 120px);
}

.dgs-story__marker {
  margin: 0;
  color: rgba(69, 88, 68, 0.18);
  font-family: var(--dgs-display);
  font-size: clamp(120px, 18vw, 250px);
  font-weight: 700;
  letter-spacing: -0.11em;
  line-height: 0.7;
}

.dgs-story__content {
  max-width: 720px;
}

.dgs-story__content > p {
  margin: 24px 0 0;
  color: #4f554e;
  font-size: clamp(17px, 1.4vw, 20px);
}

.dgs-story__content .dgs-text-link {
  display: inline-block;
  margin-top: 28px;
}

.dgs-site-footer {
  background: var(--dgs-paper);
}

.dgs-site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 34px;
}

.dgs-brand--footer {
  font-size: 31px;
}

.dgs-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 38px;
}

.dgs-footer-nav a,
.dgs-footer-nav .dgs-consent-footer-button {
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: inherit;
  text-decoration: none;
}

.dgs-footer-nav a:hover,
.dgs-footer-nav a:focus-visible,
.dgs-footer-nav .dgs-consent-footer-button:hover,
.dgs-footer-nav .dgs-consent-footer-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dgs-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 22px;
  padding-bottom: 40px;
  border-top: 1px solid var(--dgs-line);
  color: var(--dgs-muted);
  font-size: 12px;
}

.dgs-site-footer__bottom p {
  margin: 0;
}

.dgs-site-footer__markets {
  padding-bottom: 22px;
}

.dgs-site-footer__markets .dgs-market-switcher {
  width: fit-content;
}

.dgs-content {
  min-height: 60vh;
  padding-block: clamp(72px, 9vw, 120px);
}

.dgs-prose {
  width: min(100%, 900px);
}

.dgs-prose h1 {
  margin-bottom: 34px;
}

.dgs-prose h2,
.dgs-prose h3 {
  margin-top: 2.2em;
  font-family: var(--dgs-display);
}

.dgs-prose p,
.dgs-prose li {
  max-width: 760px;
}

.dgs-entry {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--dgs-line);
}

.dgs-entry h2 {
  margin: 0;
}

.dgs-blog-intro {
  max-width: 760px;
  margin-bottom: 42px;
  color: var(--dgs-muted);
  font-size: 19px;
}

.dgs-blog-grid {
  display: grid;
  gap: 24px;
}

.dgs-blog-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--dgs-line);
  border-radius: 16px;
  background: var(--dgs-surface);
}

.dgs-blog-card h2 {
  margin: 6px 0 14px;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.12;
}

.dgs-blog-card h2 a {
  text-decoration: none;
}

.dgs-blog-card h2 a:hover,
.dgs-blog-card h2 a:focus-visible {
  color: var(--dgs-sage-dark);
}

.dgs-blog-card__meta,
.dgs-article__eyebrow,
.dgs-article__meta,
.dgs-article-reviewed {
  color: var(--dgs-muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dgs-article__eyebrow {
  margin-bottom: 12px;
}

.dgs-article__eyebrow a {
  color: var(--dgs-sage-dark);
  text-underline-offset: 4px;
}

.dgs-article h1 {
  max-width: 850px;
  margin-bottom: 16px;
}

.dgs-article__meta {
  margin-bottom: 38px;
}

.dgs-article__meta p {
  margin: 4px 0;
}

.dgs-content-meta {
  max-width: 760px;
  padding: 18px 20px;
  margin: -12px 0 34px;
  border: 1px solid rgba(60, 87, 64, 0.22);
  border-radius: 12px;
  background: var(--dgs-sage-pale);
  color: #3f493f;
  font-size: 14px;
}

.dgs-content-meta p {
  margin: 3px 0;
}

.dgs-related-resources {
  max-width: 900px;
  padding-top: 20px;
  margin-top: 54px;
  border-top: 1px solid var(--dgs-line);
}

.dgs-related-resources h2 {
  margin-top: 0;
}

.dgs-advice-table {
  max-width: 900px;
  margin: 34px 0 42px;
  overflow-x: auto;
  border: 1px solid var(--dgs-line);
  border-radius: 12px;
  background: var(--dgs-surface);
}

.dgs-advice-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.dgs-advice-table caption {
  padding: 18px 20px;
  color: var(--dgs-ink);
  font-weight: 750;
  text-align: left;
}

.dgs-advice-table th,
.dgs-advice-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--dgs-line);
  text-align: left;
  vertical-align: top;
}

.dgs-advice-table thead th {
  background: var(--dgs-sage-pale);
}

.dgs-article-lead {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--dgs-line);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.6;
}

.dgs-affiliate-note {
  max-width: 760px;
  padding: 18px 20px;
  margin: 30px 0;
  border-left: 4px solid var(--dgs-terracotta);
  background: var(--dgs-sand);
  color: #3f493f;
  font-size: 14px;
}

.dgs-food-context-link {
  max-width: 760px;
  padding: 20px 22px;
  margin: 28px 0 34px;
  border: 1px solid rgba(60, 87, 64, 0.24);
  border-radius: 12px;
  background: var(--dgs-sage-pale);
  color: #334537;
}

.dgs-food-context-link a {
  font-weight: 750;
  text-underline-offset: 4px;
}

.dgs-food-download-card,
.dgs-food-list-promo {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  max-width: 900px;
  padding: clamp(26px, 4vw, 46px);
  margin: 38px 0 52px;
  border: 1px solid rgba(60, 87, 64, 0.25);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(223, 230, 220, 0.92), rgba(255, 253, 248, 0.98));
  box-shadow: 0 16px 42px rgba(38, 47, 40, 0.08);
}

.dgs-food-download-card h2,
.dgs-food-list-promo h2 {
  margin: 0;
  font-family: var(--dgs-display);
  font-size: clamp(29px, 3.4vw, 43px);
  line-height: 1.08;
}

.dgs-food-download-card__copy > p:last-child,
.dgs-food-list-promo > div > p:last-child {
  margin: 18px 0 0;
  color: var(--dgs-muted);
}

.dgs-food-download-card__action .dgs-button,
.dgs-food-list-promo > .dgs-button {
  width: 100%;
  text-align: center;
}

.dgs-food-download-card__action > p {
  margin: 13px 0 0;
  color: var(--dgs-muted);
  font-size: 12px;
  text-align: center;
}

.dgs-food-download-card__unavailable {
  padding: 15px;
  border-radius: 8px;
  background: var(--dgs-surface);
  text-align: left !important;
}

.dgs-food-list-promo--blog {
  margin-top: 0;
}

.dgs-food-key-points {
  display: grid;
  gap: 10px;
  max-width: 800px;
  padding: 0;
  list-style: none;
}

.dgs-food-key-points li {
  padding: 15px 18px;
  border-left: 4px solid var(--dgs-sage);
  border-radius: 0 8px 8px 0;
  background: var(--dgs-surface);
}

.dgs-food-table-wrap {
  max-width: 900px;
  overflow-x: auto;
  margin: 26px 0 20px;
  border: 1px solid var(--dgs-line);
  border-radius: 12px;
  background: var(--dgs-surface);
  -webkit-overflow-scrolling: touch;
}

.dgs-food-table-wrap:focus-visible {
  outline: 3px solid rgba(97, 120, 92, 0.35);
  outline-offset: 3px;
}

.dgs-food-list-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}

.dgs-food-list-table caption {
  padding: 17px 20px;
  border-bottom: 1px solid var(--dgs-line);
  color: var(--dgs-sage-dark);
  font-weight: 750;
  text-align: left;
}

.dgs-food-list-table th,
.dgs-food-list-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--dgs-line);
  text-align: left;
  vertical-align: top;
}

.dgs-food-list-table thead th {
  background: var(--dgs-sage-pale);
  color: var(--dgs-ink);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.dgs-food-list-table tbody th {
  width: 22%;
  color: var(--dgs-sage-dark);
}

.dgs-food-list-table tbody tr:last-child th,
.dgs-food-list-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 640px) {
  .dgs-food-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .dgs-food-list-table {
    display: block;
    min-width: 0;
  }

  .dgs-food-list-table caption {
    display: block;
    margin-bottom: 12px;
    border: 1px solid var(--dgs-line);
    border-radius: 10px;
    background: var(--dgs-sage-pale);
  }

  .dgs-food-list-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .dgs-food-list-table tbody {
    display: grid;
    gap: 14px;
  }

  .dgs-food-list-table tbody tr,
  .dgs-food-list-table tbody th,
  .dgs-food-list-table tbody td {
    display: block;
    width: 100%;
  }

  .dgs-food-list-table tbody tr {
    overflow: hidden;
    border: 1px solid var(--dgs-line);
    border-radius: 12px;
    background: var(--dgs-surface);
  }

  .dgs-food-list-table tbody th {
    padding: 15px 17px;
    background: var(--dgs-sage-pale);
  }

  .dgs-food-list-table tbody td {
    padding: 14px 17px;
  }

  .dgs-food-list-table tbody td::before {
    display: block;
    margin-bottom: 5px;
    color: var(--dgs-sage-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .dgs-food-list-table tbody td:nth-of-type(1)::before {
    content: "Beispiele";
  }

  .dgs-food-list-table tbody td:nth-of-type(2)::before {
    content: "Worauf achten";
  }
}

.dgs-food-faq {
  max-width: 900px;
  padding-top: 6px;
}

.dgs-food-faq__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.dgs-food-faq__items article {
  padding: 24px;
  border: 1px solid var(--dgs-line);
  border-radius: 12px;
  background: var(--dgs-surface);
}

.dgs-food-faq__items h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
}

.dgs-food-faq__items p {
  margin: 14px 0 0;
  color: var(--dgs-muted);
}

.dgs-food-fan-cta {
  max-width: 760px;
  padding-top: 12px;
  margin-top: 54px;
  border-top: 1px solid var(--dgs-line);
}

.dgs-blog-product {
  max-width: 340px;
  margin: 32px 0 44px;
}

.dgs-blog-product .dgs-product-card {
  height: auto;
}

.dgs-article-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  margin-top: 52px;
  border-top: 1px solid var(--dgs-line);
}

.dgs-article-nav a {
  color: var(--dgs-sage-dark);
  font-weight: 650;
  text-underline-offset: 4px;
}

@media (max-width: 1100px) {
  .dgs-site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .dgs-site-header .dgs-market-switcher {
    display: none;
  }

  .dgs-nav {
    position: absolute;
    top: 100%;
    right: var(--dgs-gutter);
    left: var(--dgs-gutter);
    display: none;
    padding: 22px;
    border: 1px solid var(--dgs-line);
    background: var(--dgs-surface);
    box-shadow: var(--dgs-shadow);
  }

  .dgs-nav.is-open {
    display: block;
  }

  .dgs-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .dgs-nav a {
    display: block;
    padding: 12px 4px;
  }

  .dgs-nav-toggle {
    display: block;
  }

  .dgs-hero__inner {
    grid-template-columns: minmax(330px, 0.9fr) minmax(430px, 1.1fr);
  }

  .dgs-product-grid--featured,
  .dgs-product-grid--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.admin-bar .dgs-site-header {
    top: 46px;
  }

  .dgs-site-header__inner {
    min-height: 72px;
    gap: 14px;
  }

  .dgs-site-header__cta {
    display: none;
  }

  .dgs-hero__inner {
    display: flex;
    min-height: auto;
    padding-right: var(--dgs-gutter);
    flex-direction: column;
  }

  .dgs-hero__copy {
    padding: 64px 0 42px;
  }

  .dgs-hero h1 {
    font-size: clamp(50px, 14vw, 76px);
  }

  .dgs-hero__media {
    height: min(78vw, 590px);
    margin-inline: calc(-1 * var(--dgs-gutter));
  }

  .dgs-hero__media::before {
    inset: 0 0 auto;
    width: auto;
    height: 18%;
    background: linear-gradient(180deg, var(--dgs-surface), rgba(255, 253, 248, 0));
  }

  .dgs-hero__media img {
    object-position: 64% center;
  }

  .dgs-section-heading,
  .dgs-section-heading--catalog {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .dgs-section-heading__copy {
    max-width: 620px;
  }

  .dgs-product-grid--featured,
  .dgs-product-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dgs-story__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dgs-food-promo__inner,
  .dgs-food-download-card,
  .dgs-food-list-promo {
    grid-template-columns: 1fr;
  }

  .dgs-food-promo__action {
    max-width: 460px;
  }

  .dgs-guide__grid {
    grid-template-columns: 1fr;
  }

  .dgs-guide__grid--content {
    grid-template-columns: 1fr;
  }

  .dgs-story__marker {
    font-size: 120px;
  }

  .dgs-site-footer__top,
  .dgs-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .dgs-footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .dgs-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dgs-hero__actions .dgs-text-link {
    align-self: flex-start;
  }

  .dgs-product-grid--featured,
  .dgs-product-grid--catalog {
    grid-template-columns: 1fr;
  }

  .dgs-product-card__image-wrap {
    aspect-ratio: 1 / 1;
  }

  .dgs-filter-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dgs-filter {
    border-radius: 7px;
  }

  .dgs-resource-links {
    align-items: stretch;
    flex-direction: column;
  }

  .dgs-resource-links a {
    border-radius: 8px;
  }

  .dgs-food-faq__items {
    grid-template-columns: 1fr;
  }

  .dgs-food-download-card,
  .dgs-food-list-promo {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
