@charset "UTF-8";

/* =================================
therapist
================================= */

.therapist__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
}
.therapist__card {
  width: calc((100% - 60px) / 3);
}
.therapist__link {
  display: block;
  transition: opacity 0.3s;
}
.therapist__link:hover {
  opacity: 0.75;
}
.therapist__img-wrap {
  aspect-ratio: 300 / 400;
  overflow: hidden;
  background: #ccc;
}
.therapist__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.therapist__profile {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.therapist__profile::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  position: absolute;
  left: 0;
  bottom: 0;
}
.therapist__name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}
.therapist__age {
  font-family: var(--font-serif);
  font-weight: 600;
}
.therapist__time {
  margin-top: 15px;
  font-family: var(--font-serif);
  font-weight: 600;
  text-align: center;
}

.therapist__time{
	line-height:1.4;
}

.therapist__soldout{
	margin-top:.3rem;
	color:#d63638;
	font-size:1.2rem;
	font-weight:700;
	line-height:1;
	text-transform:uppercase;
	text-align: center;
}

@media screen and (max-width: 768px) {
  .therapist__list {
    display: block;
  }
  .therapist__card {
    width: 100%;
  }
  .therapist__card:not(:first-child) {
    margin-top: 35px;
  }
  .therapist__name {
    font-size: 2.2rem;
  }
}