.doctor-profile {
  max-width: 1080px;
  display: flex;
  flex-direction: column;
}
.doctor-profile__item {
  display: flex;
  gap: 56px;
  padding: 52px 0;
}
.doctor-profile__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.doctor-profile__item:nth-child(2n) .doctor-profile__details::before {
  right: auto;
  left: -142px;
}
.doctor-profile__img {
  width: 100%;
  height: auto;
}
.doctor-profile__details {
  position: relative;
  width: 569px;
}
.doctor-profile__details::before {
  content: "";
  position: absolute;
  top: 0;
  right: -142px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #DAECF6 40%, #ecf3fa 80%);
  filter: blur(5px);
  z-index: -1;
}
.doctor-profile__name {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #222f3e;
}
.doctor-profile__name--en {
  color: #127ac0;
}
.doctor-profile__position {
  margin: 16px 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #222f3e;
}
.doctor-profile__description {
  margin: 24px 0;
  font-size: 20px;
  line-height: 26px;
  color: #222f3e;
}
.doctor-profile__container {
  padding: 25px 0;
  border-top: 1px solid rgba(18, 122, 192, 0.5);
  border-bottom: 1px solid rgba(18, 122, 192, 0.5);
}
.doctor-profile__heading {
  margin-bottom: 16px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
}
.doctor-profile__heading:not(:first-child) {
  margin-top: 24px;
}
.doctor-profile__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 20px;
  line-height: 30px;
}
.doctor-profile__content li {
  display: flex;
}
.doctor-profile__content li p:first-child {
  min-width: 80px;
}
.doctor-profile__long-date li p:first-child {
  min-width: 122px;
}

/* --------------------------------
Responsive styles for screens between 1024px and 1279px 
----------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .doctor-profile {
    max-width: 960px;
    gap: 80px;
  }
  .doctor-profile__item {
    gap: 40px;
    padding: 0;
  }
  .doctor-profile__item:nth-child(2n) .doctor-profile__details::before {
    left: -100px;
  }
  .doctor-profile__details {
    width: 500px;
  }
  .doctor-profile__details::before {
    width: 350px;
    height: 350px;
    right: -100px;
  }
  .doctor-profile__name {
    font-size: 22px;
  }
  .doctor-profile__position {
    font-size: 14px;
  }
  .doctor-profile__description {
    font-size: 18px;
  }
  .doctor-profile__content {
    font-size: 18px;
  }
}
/* --------------------------------
Responsive styles for screens between 768px and 1023px
----------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .doctor-profile {
    max-width: 100%;
    gap: 50px;
  }
  .doctor-profile__item {
    display: flex;
    flex-direction: row;
    gap: 32px;
    padding: 0;
  }
  .doctor-profile__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .doctor-profile__item:nth-child(2n) .doctor-profile__details::before {
    left: -80px;
  }
  .doctor-profile__image {
    width: 40%;
    flex-shrink: 0; /* Ensures images maintain their size */
  }
  .doctor-profile__details {
    width: 60%;
    position: relative;
  }
  .doctor-profile__details::before {
    width: 300px;
    height: 300px;
    right: -80px;
    filter: blur(4px);
  }
  .doctor-profile__name {
    font-size: 22px;
  }
  .doctor-profile__position {
    font-size: 15px;
  }
  .doctor-profile__description {
    font-size: 17px;
  }
  .doctor-profile__content {
    font-size: 17px;
  }
  .doctor-profile__container {
    padding: 20px 0;
  }
}
/* --------------------------------
Responsive styles for screens max-width 767px and below
----------------------------------*/
@media screen and (max-width: 767px) {
  .inner {
    margin-bottom: 50px;
  }
  .doctor-profile {
    max-width: 100%;
    gap: 104px;
  }
  .doctor-profile__item {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 0;
  }
  .doctor-profile__item:nth-child(2n) {
    flex-direction: column;
  }
  .doctor-profile__item:nth-child(2n) .doctor-profile__details::before {
    top: -18px;
    right: -20px;
    left: auto;
  }
  .doctor-profile__details {
    width: 100%;
  }
  .doctor-profile__details::before {
    width: 212px;
    height: 212px;
    top: -18px;
    right: -20px;
    left: auto;
  }
  .doctor-profile__name {
    font-size: 24px;
  }
  .doctor-profile__name--en {
    padding-left: 10px;
  }
  .doctor-profile__position {
    font-size: 20px;
    line-height: 32px;
  }
  .doctor-profile__description {
    font-size: 20px;
    line-height: 32px;
    margin: 16px 0 24px;
  }
  .doctor-profile__heading {
    margin-bottom: 12px;
  }
  .doctor-profile__heading:not(:first-child) {
    margin-top: 20px;
  }
  .doctor-profile__content {
    font-size: 20px;
  }
  .doctor-profile__container {
    padding: 25px 0;
  }
}/*# sourceMappingURL=doctor.css.map */