.title-normal {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 700;
}
.doctor-tabs .tab {
  cursor: pointer;
  width: 30%;
  background: #eef1f4;
  color: var(--color-primary);
  text-align: center;
  font-weight: 700;
  font-size: clamp(12px, 3.6vw, 16px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2.5vw;
  padding: 4px 8px;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
}
.doctor-tabs .tab.active {
  background-color: #b6dbff;
}
.doctor-tabs .tab > span {
  flex: 1;
}
.doctor-tabs .tab > img {
  width: clamp(16px, 5vw, 24px);
}
.doctor-list .doctor-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eef1f4;
  border-radius: 12px;
  box-shadow: 1px 1px 2px 1px #d0d2d4;
}
.doctor-list .doctor-thumbnails {
  aspect-ratio: 28 / 15;
  width: 84px;
  height: auto;
}
.doctor-list .see-more {
  display: none;
}
.process-list li > span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
  color: #fff;
  display: block;
  width: 100%;
  height: 28px;
  line-height: 28px;
  margin-bottom: 12px;
}
.process-list li > span::before {
  background: #2858a1;
  content: "";
  width: 110%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: polygon(0 0, 14px 50%, 0 100%, calc(100% - 14px) 100%, 100% 50%, calc(100% - 14px) 0);
}
.process-list li:first-child > span::before {
  background: linear-gradient(to right, #01327f, #2858a1);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%, 0 50%);
}
.process-list li:last-child > span::before {
  background: linear-gradient(to right, #2858a1, #d4effd);
}
@media screen and (min-width: 1024px) {
  .title-normal {
    font-size: 48px;
  }
  .doctor-tabs .tab {
    width: 100%;
    gap: 40px;
    padding: 14px 28px;
    border-radius: 24px;
    font-size: 24px;
  }
  .doctor-tabs .tab > img {
    width: 56px;
  }
  .doctor-list .doctor-item {
    border-radius: 32px;
    height: 216px;
    aspect-ratio: 9 / 7;
    box-shadow: none;
    align-items: end;
  }
  .doctor-list .doctor-thumbnails {
    width: 184px;
    height: 216px;
  }
  .doctor-list .see-more {
    display: block;
    cursor: pointer;
    background-color: var(--color-primary);
    color: #fff;
    width: fit-content;
    font-size: 16px;
    padding: 8px 20px;
    margin-top: 12px;
    border-radius: 8px;
    border: 1px solid #c5c5c5;
    box-shadow: 4px 4px 4px 0 #51515140;
  }
  .doctor-wrapper.more {
    position: relative;
  }
  .doctor-wrapper.more .doctor-list {
    padding-bottom: 200px;
  }
  .doctor-wrapper.more::before {
    content: "";
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 20px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgMTIgNiIgZmlsbD0ibm9uZSI+CiAgPHBhdGggZD0iTTUuNjI5MTUgNS4yNUwtMS40ODAwMWUtMDUgLTEuMDU5NjJlLTA2TDExLjI1ODMgLTcuNjA3NzNlLTA4TDUuNjI5MTUgNS4yNVoiIGZpbGw9IiMyOTU4QTMiLz4KPC9zdmc+");
    background-size: contain;
    background-repeat: no-repeat;
    animation: UpDownFlow 2s linear infinite;
  }
  .doctor-wrapper.more::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 200px;
    width: 100%;
    background: linear-gradient(180deg, transparent, white);
    z-index: 50;
    pointer-events: none;
  }
  .process-list li > span {
    font-size: 30px;
    height: 60px;
    line-height: 60px;
  }
  .process-list li > span::before {
    width: 115%;
    clip-path: polygon(0 0, 30px 50%, 0 100%, calc(100% - 30px) 100%, 100% 50%, calc(100% - 30px) 0);
  }
  .process-list li:first-child > span::before {
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 0 50%);
  }
}
@media screen and (min-width: 1280px) {
  .doctor-tabs .tab {
    padding: 20px 40px;
  }
}
