@media (max-width: 780px) {
  .site-header[data-home-header] .header-top {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .site-header[data-home-header] .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-header[data-home-header] .menu-btn {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-header[data-home-header] .site-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    justify-items: start;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    opacity: 0;
    transform: translateY(-0.5rem);
    border-top: 1px solid transparent;
    pointer-events: none;
    visibility: hidden;
    transition:
      max-height 0.32s ease,
      opacity 0.24s ease,
      transform 0.24s ease,
      padding-top 0.24s ease,
      border-color 0.24s ease,
      visibility 0s linear 0.32s;
  }

  .site-header[data-home-header] .site-nav.is-open,
  .site-header[data-home-header] .site-nav[data-state="open"] {
    max-height: 28rem;
    padding-top: 14px;
    opacity: 1;
    transform: translateY(0);
    border-top-color: rgba(246, 244, 241, 0.12);
    pointer-events: auto;
    visibility: visible;
    transition:
      max-height 0.32s ease,
      opacity 0.24s ease,
      transform 0.24s ease,
      padding-top 0.24s ease,
      border-color 0.24s ease,
      visibility 0s linear 0s;
  }

  .site-header[data-home-header] .nav-link {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .site-header[data-home-header] .nav-link::after {
    left: 0;
    right: auto;
    width: 72px;
    background: linear-gradient(90deg, rgba(201, 162, 77, 0.96), rgba(201, 162, 77, 0));
  }
}

.service-product-card,
.service-product-visual,
.service-product-card__domain,
.service-product-card h3,
.service-product-card p,
.service-product-card__cta {
  min-width: 0;
  max-width: 100%;
}

.service-product-card__domain {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.service-product-visual__image {
  max-width: 100%;
}

.editorial-card__meta span::before,
.article-hero__meta span::before {
  content: none;
  margin-right: 0;
}

.editorial-card__meta > * + *::before {
  content: "/";
  margin-right: 0.7rem;
  color: rgba(192, 138, 59, 0.8);
}

.article-hero__meta > * + *::before {
  content: "/";
  margin-right: 0.7rem;
  color: rgba(15, 109, 87, 0.8);
}

@media (max-width: 620px) {
  .service-product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    aspect-ratio: auto;
    padding: clamp(0.35rem, 1.8vw, 0.55rem);
  }

  .service-product-visual__image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .page-article .article-content .note {
    display: flex;
    align-items: center;
    gap: 0.95rem;
  }

  .page-article .article-content .note svg {
    flex: 0 0 2.55rem;
    margin: 0;
  }

  .page-article .article-content .note strong {
    flex: 1 1 auto;
    min-width: 0;
  }
}
