/* Shared, scoped callout. Typography follows each page's existing styles. */
.express-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #d7e6f4;
  border-left: 4px solid #9919df;
  border-radius: 4px;
  background: #eff7ff;
  color: #17345c;
}

.express-callout--services {
  margin-top: 2.5rem;
}

.express-callout__copy {
  min-width: 0;
}

.express-callout__copy > :is(h2, h3) {
  margin: 0 0 .75rem;
  color: #17345c;
  line-height: 1.3;
}

.express-callout__copy > p {
  margin: 0;
  color: #17345c;
}

.express-callout__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  box-sizing: border-box;
  padding: .85rem 1.1rem;
  border: 1px solid #7512af;
  border-radius: 3px;
  background: #7512af;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.express-callout__cta:hover {
  border-color: #591080;
  background: #591080;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.express-callout__cta:focus-visible {
  outline: 3px solid #17345c;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .express-callout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .express-callout__cta {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .express-callout__cta {
    width: 100%;
  }
}
