.tool-section {
  padding: 2.5rem 3rem 3.5rem;
  background-color: var(--parchment);
  background-image: radial-gradient(
    circle,
    var(--dot-color) var(--dot-size),
    transparent var(--dot-size)
  );
  background-size: var(--dot-space) var(--dot-space);
}

.tool-section__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.tool-section__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.tool-section__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}

.tool-section__desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--warm-gray);
}

.tool-section + .tool-section {
  border-top: 1px solid var(--rule);
}