.appointment-about {
  width: 100%;
}

.appointment-about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  min-width: 0;
}

.appointment-about__wrapper h2 {
  position: relative;
  width: max-content;
  margin-bottom: 12px;
  letter-spacing: 1.25px;
}

.appointment-about__wrapper h2::after {
  position: absolute;
  bottom: -15px;
  left: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--primary-75);
}

.appointment-about__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.appointment-about__sessions-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.appointment-about__sessions-intro > p {
  text-align: justify;
}

.appointment-about__sessions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.appointment-about__session-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 100% !important;
  background-color: var(--white);
  border-radius: 3px;
  overflow: hidden;
}

.appointment-about__session-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
}

.appointment-about__session-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.appointment-about__session-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.appointment-about__session-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-weight: 700;
  color: var(--black);
  font-size: 18px;
}

.appointment-about__session-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary-75);
  flex: 0 0 auto;
}

.appointment-about__session-title span svg {
  width: 18px;
  height: 18px;
}

.appointment-about__session-price {
  margin: 0;
  font-weight: 600;
  color: var(--black);
}

.appointment-about__session-text {
  margin: 0;
  line-height: 1.6;
  color: var(--black);
  text-align: justify;
}

.appointment-about__session-actions {
  margin-top: auto;
  padding-top: 12px;
}

.appointment-about__session-actions .wp-block-buttons,
.appointment-about__session-actions .wp-block-button,
.appointment-about__session-actions .wp-block-button__link {
  width: 100%;
  display: block;
  text-align: center;
}

.appointment-about__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .appointment-about__sessions {
    flex-direction: row;
    align-items: stretch;
  }

  .appointment-about__session-card {
    flex: 1 1 0 !important;
  }
}
