body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.article-body {
  font-family: inherit;
}

.shell-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #e5e5e5;
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(8px);
}

.shell-header-row {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.shell-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.shell-brand img {
  display: block;
  width: 52px;
  height: 40px;
  object-fit: contain;
}

.shell-brand > span {
  color: #121212;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.shell-brand > span > span {
  color: #126232;
}

.shell-desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.shell-desktop-nav a,
.shell-mobile-nav a {
  border-radius: 6px;
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 500;
  transition: color 160ms ease, background-color 160ms ease;
}

.shell-desktop-nav a {
  padding: 8px 12px;
}

.shell-desktop-nav a:hover,
.shell-mobile-nav a:hover {
  color: #121212;
  background: #f7f7f7;
}

.shell-desktop-nav a.active,
.shell-mobile-nav a.active {
  color: #0f4f2b;
  background: #f3f8f4;
}

.shell-menu-button,
.shell-mobile-nav {
  display: none;
}

.shell-menu-button {
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  color: #121212;
  background: transparent;
}

.shell-menu-button:hover {
  border-color: #18723b;
  color: #0f4f2b;
}

.shell-menu-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.shell-menu-button .close-icon,
.shell-menu-button[aria-expanded="true"] .menu-icon {
  display: none;
}

.shell-menu-button[aria-expanded="true"] .close-icon {
  display: block;
}

.shell-footer {
  border-top: 1px solid #e5e5e5;
  background: #fff;
}

.shell-footer-grid {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.shell-location {
  display: inline-flex;
  margin: 0;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.shell-location svg,
.shell-footer-links > a > svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: #126232;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell-footer-links > a > svg.whatsapp {
  color: #25d366;
  fill: currentColor;
  stroke: none;
}

.shell-privacy-summary {
  max-width: 576px;
  margin: 16px 0 0;
  padding: 12px 16px;
  border: 1px solid #dfeee3;
  border-radius: 6px;
  color: #555;
  background: #f3f8f4;
  font-size: 12px;
  line-height: 20px;
}

.shell-privacy-summary a,
.shell-contact-link {
  color: #0f4f2b !important;
  font-weight: 600 !important;
}

.shell-footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 14px;
}

.shell-footer-links > a {
  display: flex;
  padding: 0;
  align-items: center;
  gap: 8px;
  color: #333;
  font-weight: 400;
}

.shell-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shell-socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  color: #333;
  transition: color 160ms ease, border-color 160ms ease;
}

.shell-socials a:hover {
  color: #0f4f2b;
  border-color: #9fc9aa;
}

.shell-socials svg {
  width: 16px;
  height: 16px;
}

.shell-cookie-notice {
  position: fixed;
  inset: auto 0 0;
  z-index: 50;
  padding: 16px;
  border-top: 1px solid #e5e5e5;
  background: rgb(255 255 255 / 95%);
  box-shadow: 0 -10px 30px rgb(18 18 18 / 8%);
  backdrop-filter: blur(8px);
}

.shell-cookie-notice[hidden] {
  display: none;
}

.shell-cookie-notice > div {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shell-cookie-notice p {
  max-width: 896px;
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 24px;
}

.shell-cookie-notice p a {
  color: #0f4f2b;
  font-weight: 600;
}

.shell-cookie-notice button {
  flex-shrink: 0;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: #126232;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.shell-cookie-notice button:hover {
  background: #0f4f2b;
}

@media (max-width: 1100px) {
  .shell-desktop-nav a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .shell-header-row {
    padding-right: 16px;
    padding-left: 16px;
  }

  .shell-desktop-nav {
    display: none;
  }

  .shell-menu-button {
    display: inline-flex;
  }

  .shell-mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    border-top: 1px solid transparent;
    background: #fff;
    opacity: 0;
    transition: max-height 300ms ease, opacity 300ms ease, border-color 300ms ease;
  }

  .shell-mobile-nav.open {
    max-height: 360px;
    border-color: #e5e5e5;
    opacity: 1;
  }

  .shell-mobile-nav > div {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 0;
    flex-direction: column;
    gap: 4px;
  }

  .shell-mobile-nav a {
    padding: 12px;
    color: #444;
  }

  .shell-footer-grid {
    padding-right: 24px;
    padding-left: 24px;
    grid-template-columns: 1fr;
  }

  .shell-cookie-notice > div {
    align-items: stretch;
    flex-direction: column;
  }

  .shell-cookie-notice button {
    align-self: flex-start;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .shell-header-row,
  .shell-footer-grid {
    padding-right: 24px;
    padding-left: 24px;
  }
}
