@charset "UTF-8";
.doctor_profile_inner {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  width: var(--container-s-width);
  max-width: 92%;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}
.doctor_profile_inner::before {
  content: "";
  position: absolute;
  left: -20%;
  bottom: 17%;
  z-index: 0;
  width: 460px;
  height: 460px;
  background: url("../img/sub02/watermark_snu.png") no-repeat center/contain;
  opacity: 0.9;
  pointer-events: none;
}
.doctor_profile_inner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(68, 145, 217, 0) 0%, rgba(68, 145, 217, 0.45) 50%, rgba(68, 145, 217, 0) 100%);
}
.doctor_profile .profile_text {
  width: 50%;
  min-width: 0;
  padding: var(--space-lg) 0;
}
.doctor_profile .profile_name {
  font-size: var(--h2-size);
  font-weight: var(--font-w-bm);
  color: var(--sub-c-05);
  line-height: 1.2;
}
.doctor_profile .profile_name .position {
  margin-left: 10px;
  font-size: var(--p-title);
  font-weight: var(--font-w-r);
  color: var(--gray-02-c);
}
.doctor_profile .profile_badge {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-sm);
}
.doctor_profile .profile_badge li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 8px 32px 8px 8px;
  border-radius: 999px;
  background: #22335e;
  color: var(--white-c);
  font-size: var(--p-title);
  font-weight: var(--font-w-m);
  line-height: 1.3;
}
.doctor_profile .profile_badge .ico {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-c);
  overflow: hidden;
}
.doctor_profile .profile_badge .ico img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.doctor_profile .profile_career {
  margin-top: var(--space-md);
}
.doctor_profile .profile_career li {
  position: relative;
  padding-left: 14px;
  font-size: var(--p-title);
  line-height: 1.45;
  color: var(--gray-01-c);
}
.doctor_profile .profile_career li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
}
.doctor_profile .profile_career li + li {
  margin-top: 14px;
}
.doctor_profile .profile_img {
  width: 50%;
  align-self: flex-end;
}
.doctor_profile .profile_img img {
  display: block;
  width: 100%;
}
@media (max-width: 1023px) {
  .doctor_profile .profile_badge li {
    padding: 4px 6px;
  }
  .doctor_profile .profile_career li + li {
    margin-top: 12px;
  }
}
@media (max-width: 900px) {
  .doctor_profile_inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }
  .doctor_profile_inner::before {
    left: -6%;
    bottom: auto;
    top: 9%;
    width: 360px;
    height: 360px;
  }
  .doctor_profile .profile_img {
    flex: none;
    width: 75%;
    max-width: 360px;
    margin: 0 auto;
    z-index: 999;
  }
  .doctor_profile .profile_text {
    padding: var(--space-sm) 0 var(--space-md);
    width: 90%;
  }
  .doctor_profile .profile_name .position {
    margin-left: 8px;
    font-size: var(--p-middle);
  }
  .doctor_profile .profile_badge {
    margin-top: var(--space-xs);
  }
  .doctor_profile .profile_badge li {
    width: 15rem;
    font-size: var(--p-middle);
  }
  .doctor_profile .profile_badge .ico {
    width: 34px;
    height: 34px;
  }
  .doctor_profile .profile_career {
    margin-top: var(--space-sm);
  }
  .doctor_profile .profile_career li {
    font-size: var(--p-body);
  }
  .doctor_profile .profile_career li + li {
    margin-top: 10px;
  }
}