.l-about .l-about__link {
  color: #e57165;
  width: fit-content;
  padding-right: 15px;
  font-size: 15px;
  display: block;
  /* text-decoration: underline; */
  border-bottom: 1px solid #e57165;
  margin: 4px auto 0;
  position: relative;
}

.l-about .l-about__link::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #e57165;
  border-right: 1px solid #e57165;
}

.l-about__features {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.l-about__featuresList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.l-about__featuresItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 30px 16px;
  background-color: #f9f9f9;
  border-radius: 20px;
}

.l-about__featuresText {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.l-about__featuresLink {
  padding-right: 15px;
  color: #e57165;
  /* text-decoration: underline; */
  border-bottom: 1px solid #e57165;
  font-size: 15px;
  transition: opacity 0.3s;
  width: fit-content;
  text-align: center;
  position: relative;
}

.l-about__featuresLink::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #e57165;
  border-right: 1px solid #e57165;
}

.l-about__featuresLink:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .l-about__featuresList {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .l-about__featuresList {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .l-about__featuresItem {
    padding: 20px 12px;
  }
}

.l-doctor__sublabel {
  /* text-align: center; */
  padding-left: 10px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.l-doctor__sublabel::before {
  content: "";
  width: 5px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f2b25a;
}

.l-doctor .l-doctor__info {
  padding: 30px 0 !important;
}
.l-doctor .l-doctor__wrap {
  padding: 0 !important;
}

@media (max-width: 768px) {
  .l-doctor .l-doctor__info {
    padding: 10px 0 !important;
  }
  .l-doctor__sublabel {
    font-size: 16px;
    margin-top: 0;
  }

  .l-doctor .l-doctor__wrap {
    padding: 10px 0 !important;
  }
}

.l-header .l-header__insta {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
}

@media only screen and (min-width: 1100px) {
  .l-header .l-header__insta {
    display: none;
  }
}

.c-btn__insta {
  width: 250px;
  padding: 9px 0;
  background: linear-gradient(to right, #9509f5, #ff9d00);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .c-btn__insta {
    width: 200px;
  }
}
.c-btn__insta .icon {
  width: 26px;
  height: 26px;
}

.l-footer__instaTxt {
  display: flex;
  flex-direction: column;
}

.c-btn__insta span:nth-of-type(1) {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: calc(16 / 14);
  color: #fff;
}

.c-btn__insta span:nth-of-type(2) {
  font-weight: bold;
  font-size: 12px;
  line-height: calc(16 / 12);
  color: #fff;
}

.p-calendar {
  padding: 60px 0;
}

@media only screen and (min-width: 992px) {
  .p-calendar {
    padding: 80px 0;
  }
}

#top .p-calendar .c-ttl {
  margin-bottom: 25px;
}

@media only screen and (min-width: 991px) {
  #top .p-calendar .c-ttl {
    margin-bottom: 50px;
  }
}

.p-calendar__wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.p-calendar__slider {
  position: relative;
  overflow: hidden;
}

.p-calendar__item {
  display: none;
}

.p-calendar__item.is-active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.p-calendar__img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.p-calendar__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-calendar__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 2px solid #e57165;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 24px;
  color: #e57165;
  font-weight: bold;
  padding: 0;
}

.p-calendar__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.p-calendar__btn--prev {
  left: 10px;
}

.p-calendar__btn--prev::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  right: calc(50% - 2px);
  top: 50%;
  transform: translate(50%, -50%) rotate(45deg);
  border-bottom: 2px solid #e57165;
  border-left: 2px solid #e57165;
}

.p-calendar__btn--next {
  right: 10px;
}

.p-calendar__btn--next::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: calc(50% - 2px);
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: 2px solid #e57165;
  border-right: 2px solid #e57165;
}

.p-calendar__btn span {
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .p-calendar__btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .p-calendar__btn--prev {
    left: 5px;
  }

  .p-calendar__btn--next {
    right: 5px;
  }
}
