/* Shared contact controls: MAX brand mark and phone alternative. */
.hero-call-number {
  display: block;
  width: fit-content;
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}
.hero-call-number + .hero-actions {
  margin-top: 18px;
}
.hero-call-hours {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 600px) {
  .mobile-actions.mobile-actions-call {
    grid-template-columns: 1fr;
  }
}
.max-button-label,
.button .max-button-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  line-height: inherit;
}
.max-brand,
.button .max-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  line-height: inherit;
  white-space: nowrap;
}
.max-brand img {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.mobile-actions a[data-max-entry] {
  gap: 12px;
}
.mobile-actions .max-brand img {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}
.max-button-arrow {
  flex-shrink: 0;
}

.hero-phone-alternative,
.article-hero .contact-phone-alternative,
.article-body .contact-phone-alternative {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 12px;
  row-gap: 2px;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.hero-phone-alternative a,
.contact-phone-alternative a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-phone-alternative a:hover,
.contact-phone-alternative a:hover {
  color: var(--accent);
}
@media (max-width: 600px) {
  .hero-phone-alternative,
  .article-hero .contact-phone-alternative,
  .article-body .contact-phone-alternative {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 20px;
  }
}
