.hw-article-service-figure {
  clear: both;
  margin: 1.6rem 0 2rem;
}

.hw-article-service-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--hw-article-line);
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(42, 22, 38, .1);
}

.hw-article-service-figure figcaption {
  margin-top: .65rem;
  color: var(--hw-article-muted);
  font-size: .72rem;
}

.hw-article-service-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  margin: 1.8rem 0 2.4rem;
  counter-reset: service-process;
}

.hw-article-service-process li {
  counter-increment: service-process;
  position: relative;
  min-height: 116px;
  padding: 1.05rem;
  background: var(--hw-article-cream);
  border: 1px solid var(--hw-article-line);
  border-radius: 7px;
  color: var(--hw-article-ink);
  list-style: none;
}

.hw-article-service-process li::before {
  content: counter(service-process, decimal-leading-zero);
  display: block;
  margin-bottom: .65rem;
  color: var(--hw-article-gold);
  font-size: .72rem;
  font-weight: 700;
}

.hw-article-service-process strong {
  display: block;
  font-family: var(--hw-article-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.12;
}

.hw-article-service-management {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
  margin: 1.5rem 0 2rem;
}

.hw-article-service-management article {
  padding: 1rem;
  background: var(--hw-article-paper);
  border: 1px solid var(--hw-article-line);
  border-left: 3px solid var(--hw-article-gold);
  border-radius: 7px;
}

.hw-article-service-management h3 {
  margin: 0 0 .35rem;
  font-size: 1.35rem;
}

.hw-article-service-management p {
  margin: 0;
  font-size: .78rem;
}

.hw-article-service-sources {
  margin: 1rem 0 3rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--hw-article-cream);
  border: 1px solid var(--hw-article-line);
  border-radius: 7px;
}

.hw-article-service-sources h2 {
  margin: 0 0 1rem;
  font-family: var(--hw-article-serif);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.08;
}

.hw-article-service-sources ul {
  display: grid;
  gap: .55rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.hw-article-service-sources a {
  color: var(--hw-article-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hw-article-service-sources a:hover {
  color: var(--hw-article-gold);
}

.hw-article-service-sources p {
  margin-bottom: 0;
  font-size: .78rem;
}

@media (max-width: 900px) {
  .hw-article-service-process,
  .hw-article-service-management {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .hw-article-service-process,
  .hw-article-service-management {
    grid-template-columns: 1fr;
  }
}
