.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 4.5rem;
}

.services-list > article {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 767px) {
  .services-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

}

/* For Agencies keeps its shared interior rhythm, with spacing between its sections. */
.agencies-page .service-section h2 {
  margin: 7rem 0 1.25rem;
}

.agencies-page .service-section h2:first-child {
  margin-top: 0;
}

.agencies-page .service-section ul {
  margin: 1.5rem 0 0.5rem;
}

.agencies-page .service-section .btn-primary {
  display: inline-block;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .agencies-page .service-section h2 {
    margin-top: 5.5rem;
  }
}
