/* Center the description against the headline alone, not its green kicker. */
.sg-seo-intro {
  grid-template-areas: "kicker ." "heading copy";
  row-gap: 13px;
  align-items: center;
}

.sg-seo-intro > .sg-kicker {
  grid-area: kicker;
}

.sg-seo-intro > h2 {
  grid-area: heading;
  margin: 0;
}

.sg-overview-copy {
  grid-area: copy;
}

.sg-overview-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .sg-seo-intro {
    grid-template-areas: "kicker" "heading" "copy";
    align-items: start;
  }

  .sg-overview-copy {
    margin-top: 12px;
  }
}
