/** Shopify CDN: Minification failed

Line 78:15 Expected identifier but found whitespace
Line 78:17 Unexpected "{"
Line 78:26 Expected ":"
Line 79:10 Expected identifier but found whitespace
Line 79:12 Unexpected "{"
Line 79:21 Expected ":"

**/
/* ============================================================
   WGH Product Story — wgh-story.css
   ============================================================ */

.wgh-story {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 64px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

/* ── Afbeelding ── */
.wgh-story__image {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--creme-deep, #EAD9C0);
}

.wgh-story__image img,
.wgh-story__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Tekst als wit kaartje ── */
.wgh-story__content {
  background: #fff;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 2px 20px rgba(62,42,28,.06);
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.wgh-story__title {
  font-family: var(--serif, Georgia, serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--walnoot, #3E2A1C);
  line-height: 1.15;
  margin: 8px 0 4px;
}

.wgh-story__body {
  font-size: 15px;
  color: var(--walnoot-soft, rgba(62,42,28,.7));
  line-height: 1.7;
  margin: 0;
}



.wgh-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 520px);
    min-height: 58px;
    padding: 16px 30px;
    background: {{ section.settings.button_color }};
    color: {{ section.settings.button_text_color }};
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

.wgh-btn-secondary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media screen and (max-width: 1024px) {
  .wgh-story { padding: 16px 24px 40px; }
  .wgh-story__content { padding: 36px 36px; }
}

@media screen and (max-width: 768px) {
  .wgh-story {
    grid-template-columns: 1fr;
    padding: 16px 16px 32px;
  }
  .wgh-story__image {
    aspect-ratio: 3 / 2;
    border-radius: 20px 20px 0 0;
  }
  .wgh-story__content {
    border-radius: 0 0 20px 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(62,42,28,.08);
  }
  .wgh-story__title { font-size: 28px; }
}
