.section-appointment {
  width: 100%;
  display: flex;
  align-items: stretch;
}
.section-appointment .section__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  align-items: stretch;
}
.section-appointment .section__heading {
  width: 100%;
  padding: 0 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section-appointment .section__title {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-tight);
}
.section-appointment .section__subtitle {
  margin-top: 1.2rem;
  font-size: var(--font-size-md);
  max-width: var(--text-width);
}

.section-appointment .section__content {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 3.6rem;
  padding: 0 2.8rem;
}

.section-appointment .appointment-description {
}
.section-appointment .appointment-description a {
  text-decoration: underline;
  color: var(--color-tertiary);
}

.section-appointment .appointment-emias {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 2.4rem;
}
.section-appointment .appointment-emias__description {
}
.section-appointment .appointment-emias__description a {
  text-decoration: underline;
  color: var(--color-tertiary);
}
.section-appointment .appointment-emias__link {
  display: flex;
  align-items: center;
  height: 6rem;
  padding: 0 2.8rem;
  gap: 1.2rem;
  background-color: var(--color-primary);
  border-radius: 20rem;
  width: 100%;
  justify-content: space-between;
  color: var(--color-on-primary);
}
.section-appointment .appointment-emias__link .button__text {
  display: block;
}
.section-appointment .appointment-emias__link .button__label {
  font-size: var(--font-size-sm);
}
.section-appointment .appointment-emias__link .button__icon {
  display: flex;
  flex-shrink: 0;
  transform: rotate(-45deg);
}
.section-appointment .appointment-emias__link .button__icon .icon {
  width: 2rem;
  height: 2rem;
}

.section-appointment .appointment-services {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 2.4rem;
}
.section-appointment .appointment-services__description {
}
.section-appointment .appointment-services__description a {
  text-decoration: underline;
  color: var(--color-tertiary);
}
.section-appointment .appointment-services__link {
  display: flex;
  align-items: center;
  height: 6rem;
  padding: 0 2.8rem;
  gap: 1.2rem;
  background-color: var(--color-secondary);
  border-radius: 20rem;
  width: 100%;
  justify-content: space-between;
  color: var(--color-on-secondary);
}
.section-appointment .appointment-services__link .button__text {
  display: block;
}
.section-appointment .appointment-services__link .button__label {
  font-size: var(--font-size-sm);
}
.section-appointment .appointment-services__link .button__icon {
  display: flex;
  flex-shrink: 0;
  transform: rotate(-45deg);
}
.section-appointment .appointment-services__link .button__icon .icon {
  width: 2rem;
  height: 2rem;
}

.section-appointment .appointment-note {
}
