/*
 * Shared geometry guard for end-of-page consultation CTAs.
 * Colour, surface and hover character remain page-specific.
 */
main > .cta > .book,
main > .cta-est > .est-book,
main > .about-cta > .book,
main > .about-est-cta > .est-book {
  box-sizing: border-box;
  width: auto;
  min-width: 196px;
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: end;
  text-align: center;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 980px) {
  main > .cta > .book,
  main > .cta-est > .est-book,
  main > .about-cta > .book,
  main > .about-est-cta > .est-book {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  main > .cta > .book,
  main > .cta-est > .est-book,
  main > .about-cta > .book,
  main > .about-est-cta > .est-book {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }
}
