/*     2553734 : 이미지      */
.img__2553734__ {max-width:100%}
.img__2553734__ * {box-sizing:border-box}
.img__2553734__ a {display:block;vertical-align:top}
.img__2553734__ img {width:px;vertical-align:top}

/*     2553724 : 학술&학회 활동      */
/* =========================================
   MEDICAL EDUCATION HISTORY
========================================= */

.med-edu-history{
  --edu-deep:#213641;
  --edu-point:#9b7957;
  --edu-text:#2d3438;
  --edu-muted:#747d81;
  --edu-line:#e3e6e5;
  --edu-soft:#f5f4f1;
  --edu-white:#fff;
  --edu-highlight:#b43d35;
  --edu-highlight-dark:#8f2f29;
  --edu-highlight-soft:#fff5f3;

  position:relative;
  padding:60px 0 75px;
  background:var(--edu-white);
  overflow:hidden;
}

.med-edu-history *{
  box-sizing:border-box;
}

.med-edu-history button,
.med-edu-history input{
  font:inherit;
}

.med-edu-history button{
  border:0;
  padding:0;
  background:none;
  cursor:pointer;
}

.med-edu-inner{
  width:100%;
  max-width:1440px;
  margin:0 auto;
  padding:0 0px;
}

/* 상단 */
.med-edu-heading{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:end;
  padding-bottom:55px;
  border-bottom:1px solid var(--edu-line);
}

.med-edu-eyebrow{
  display:block;
  margin-bottom:22px;
  font-family:"Cormorant Garamond","Times New Roman",serif;
  font-size:15px;
  font-weight:600;
  letter-spacing:.18em;
  color:var(--edu-point);
}

.med-edu-heading h2{
  margin:0;
  color:var(--edu-deep);
  font-size:50px;
  font-weight:400;
  line-height:1.28;
  letter-spacing:-.055em;
  word-break:keep-all;
}

.med-edu-heading h2 strong{
  font-weight:700;
}

.med-edu-heading-copy > p{
  margin:25px 0 0;
  color:var(--edu-muted);
  font-size:18px;
  line-height:1.8;
  letter-spacing:-.025em;
  word-break:keep-all;
}

.med-edu-summary{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid var(--edu-line);
  border-radius:22px;
  background:var(--edu-soft);
  overflow:hidden;
}

.med-edu-summary-item{
  min-width:0;
  padding:28px 22px;
  text-align:center;
}

.med-edu-summary-item + .med-edu-summary-item{
  border-left:1px solid var(--edu-line);
}

.med-edu-summary-item span{
  display:block;
  margin-bottom:9px;
  color:var(--edu-muted);
  font-size:13px;
  font-weight:500;
  letter-spacing:-.02em;
}

.med-edu-summary-item strong{
  display:block;
  color:var(--edu-deep);
  font-family:"Cormorant Garamond","Pretendard",serif;
  font-size:23px;
  font-weight:700;
  line-height:1.2;
}

.med-edu-summary-item strong b{
  font:inherit;
}

/* 필터 */
.med-edu-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-top:38px;
}

.med-edu-year-tabs{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
  overflow-x:auto;
  padding:3px 2px 7px;
  scrollbar-width:none;
}

.med-edu-year-tabs::-webkit-scrollbar{
  display:none;
}

.med-edu-year-btn{
  flex:0 0 auto;
  min-width:68px;
  height:42px;
  padding:0 18px !important;
  border:1px solid var(--edu-line) !important;
  border-radius:999px;
  background:var(--edu-white) !important;
  color:#657075;
  font-size:14px;
  font-weight:600;
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.med-edu-year-btn:hover{
  color:var(--edu-deep);
  border-color:#b9c0c1 !important;
  transform:translateY(-2px);
}

.med-edu-year-btn.is-active{
  color:#fff;
  border-color:var(--edu-deep) !important;
  background:var(--edu-deep) !important;
}

.med-edu-search{
  position:relative;
  flex:0 0 300px;
  display:block;
}

.med-edu-search input{
  width:100%;
  height:46px;
  padding:0 20px 0 45px;
  border:1px solid var(--edu-line);
  border-radius:999px;
  outline:0;
  background:#fff;
  color:var(--edu-text);
  font-size:14px;
  transition:border-color .25s ease, box-shadow .25s ease;
}

.med-edu-search input::placeholder{
  color:#a0a7aa;
}

.med-edu-search input:focus{
  border-color:var(--edu-point);
  box-shadow:0 0 0 4px rgba(155,121,87,.10);
}

.med-edu-search-icon{
  position:absolute;
  top:50%;
  left:17px;
  z-index:1;
  width:18px;
  height:18px;
  transform:translateY(-50%);
  color:#8a9397;
  pointer-events:none;
}

.med-edu-search-icon svg{
  display:block;
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
}

/* 연도 그룹 */
.med-edu-list{
  margin-top:32px;
}

.med-edu-year-group{
  border-top:1px solid var(--edu-line);
  opacity:0;
  transform:translateY(24px);
  transition:opacity .65s ease, transform .65s ease;
}

.med-edu-year-group.is-visible{
  opacity:1;
  transform:translateY(0);
}

.med-edu-year-group:last-child{
  border-bottom:1px solid var(--edu-line);
}

.med-edu-year-head{
  display:grid;
  grid-template-columns:170px minmax(0,1fr) 48px;
  align-items:center;
  width:100%;
  min-height:112px;
  text-align:left;
}

.med-edu-year{
  color:var(--edu-deep);
  font-family:"Cormorant Garamond","Times New Roman",serif;
  font-size:46px;
  font-weight:600;
  line-height:1;
  letter-spacing:-.02em;
}

.med-edu-year-info{
  display:flex;
  align-items:center;
  gap:13px;
  color:var(--edu-muted);
  font-size:15px;
}

.med-edu-year-info strong{
  color:var(--edu-text);
  font-size:18px;
  font-weight:600;
}

.med-edu-year-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:48px;
  height:27px;
  padding:0 10px;
  border-radius:999px;
  background:var(--edu-soft);
  color:var(--edu-point);
  font-size:12px;
  font-weight:700;
}

.med-edu-toggle{
  position:relative;
  width:44px;
  height:44px;
  border:1px solid var(--edu-line);
  border-radius:50%;
  transition:background .25s ease, border-color .25s ease;
}

.med-edu-toggle::before,
.med-edu-toggle::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:14px;
  height:1px;
  background:var(--edu-deep);
  transform:translate(-50%,-50%);
  transition:transform .3s ease;
}

.med-edu-toggle::after{
  transform:translate(-50%,-50%) rotate(90deg);
}

.med-edu-year-head[aria-expanded="true"] .med-edu-toggle{
  border-color:var(--edu-deep);
  background:var(--edu-deep);
}

.med-edu-year-head[aria-expanded="true"] .med-edu-toggle::before,
.med-edu-year-head[aria-expanded="true"] .med-edu-toggle::after{
  background:#fff;
}

.med-edu-year-head[aria-expanded="true"] .med-edu-toggle::after{
  transform:translate(-50%,-50%) rotate(0deg);
}

.med-edu-year-panel{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .45s cubic-bezier(.22,.61,.36,1);
}

.med-edu-year-group.is-open .med-edu-year-panel{
  grid-template-rows:1fr;
}

.med-edu-year-panel-inner{
  min-height:0;
  overflow:hidden;
}

.med-edu-items{
  position:relative;
  margin:0 0 48px 170px;
  padding-left:38px;
}

.med-edu-items::before{
  content:"";
  position:absolute;
  top:9px;
  bottom:9px;
  left:6px;
  width:1px;
  background:var(--edu-line);
}

.med-edu-item{
  position:relative;
  display:grid;
  grid-template-columns:105px minmax(0,1fr);
  gap:28px;
  padding:0 0 32px;
}

.med-edu-item:last-child{
  padding-bottom:0;
}

.med-edu-item::before{
  content:"";
  position:absolute;
  top:8px;
  left:-38px;
  width:13px;
  height:13px;
  border:3px solid #fff;
  border-radius:50%;
  background:var(--edu-point);
  box-shadow:0 0 0 1px rgba(155,121,87,.28);
}

.med-edu-date{
  padding-top:1px;
  color:var(--edu-point);
  font-family:"Cormorant Garamond","Pretendard",serif;
  font-size:16px;
  font-weight:700;
  letter-spacing:.02em;
}

.med-edu-content{
  min-width:0;
  padding:0 0 31px;
  border-bottom:1px solid #eef0ef;
}

.med-edu-item:last-child .med-edu-content{
  padding-bottom:0;
  border-bottom:0;
}

.med-edu-content h3{
  margin:0;
  color:var(--edu-text);
  font-size:18px;
  font-weight:600;
  line-height:1.55;
  letter-spacing:-.035em;
  word-break:keep-all;
}

.med-edu-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 20px;
  margin-top:10px;
}

.med-edu-meta span{
  position:relative;
  color:var(--edu-muted);
  font-size:14px;
  line-height:1.6;
  letter-spacing:-.02em;
}

.med-edu-meta span + span::before{
  content:"";
  position:absolute;
  top:9px;
  left:-11px;
  width:2px;
  height:2px;
  border-radius:50%;
  background:#aab0b2;
}


/* 엑셀에서 빨간색으로 표시된 주요 이력 */
.med-edu-item.is-featured::before{
  background:var(--edu-highlight);
  box-shadow:
    0 0 0 1px rgba(180,61,53,.32),
    0 0 0 6px rgba(180,61,53,.08);
}

.med-edu-item.is-featured .med-edu-date{
  color:var(--edu-highlight);
}

.med-edu-item.is-featured .med-edu-content{
  padding:18px 20px 20px;
  border:1px solid rgba(180,61,53,.20);
  border-radius:15px;
  background:var(--edu-highlight-soft);
  box-shadow:0 9px 24px rgba(143,47,41,.06);
}

.med-edu-item.is-featured:last-child .med-edu-content{
  padding:18px 20px 20px;
  border:1px solid rgba(180,61,53,.20);
}

.med-edu-item.is-featured .med-edu-content h3{
  color:var(--edu-highlight-dark);
  font-weight:700;
}

.med-edu-item.is-featured .med-edu-meta span{
  color:#78625f;
}

.med-edu-featured-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:25px;
  margin-bottom:9px;
  padding:4px 10px;
  border-radius:999px;
  background:var(--edu-highlight);
  color:#fff;
  font-size:12px;
  font-weight:700;
  line-height:1.3;
  letter-spacing:-.02em;
}

.med-edu-item-more{
  display:flex;
  justify-content:center;
  margin:28px 0 0;
}

.med-edu-item-more button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:142px;
  height:42px;
  padding:0 20px;
  border:1px solid var(--edu-line);
  border-radius:999px;
  color:var(--edu-muted);
  font-size:13px;
  font-weight:600;
  transition:color .25s ease, border-color .25s ease, background .25s ease;
}

.med-edu-item-more button:hover{
  color:var(--edu-deep);
  border-color:var(--edu-deep);
  background:#fafafa;
}

/* 하단 더보기 */
.med-edu-more-wrap{
  margin-top:40px;
  text-align:center;
}

.med-edu-more-years{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:190px;
  height:52px;
  padding:0 26px !important;
  border:1px solid var(--edu-deep) !important;
  border-radius:999px;
  color:var(--edu-deep);
  font-size:14px;
  font-weight:700;
  transition:color .25s ease, background .25s ease;
}

.med-edu-more-years:hover{
  color:#fff;
  background:var(--edu-deep) !important;
}

.med-edu-more-years svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.med-edu-empty{
  padding:90px 20px;
  border-top:1px solid var(--edu-line);
  border-bottom:1px solid var(--edu-line);
  color:var(--edu-muted);
  text-align:center;
  font-size:16px;
}

.med-edu-history .blind{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* 상단 페이드업 */
.med-edu-history [data-med-edu-reveal]{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .75s ease, transform .75s ease;
}

.med-edu-history [data-med-edu-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

/* 반응형 */
@media (max-width:1100px){
  .med-edu-history{
    padding:90px 0;
  }

  .med-edu-heading{
    grid-template-columns:1fr;
    gap:42px;
  }

  .med-edu-summary{
    max-width:680px;
  }

  .med-edu-toolbar{
    align-items:flex-start;
    flex-direction:column-reverse;
  }

  .med-edu-search{
    width:100%;
    max-width:420px;
    flex-basis:auto;
  }

  .med-edu-year-tabs{
    width:100%;
  }
}

@media (max-width:767px){
  .med-edu-history{
    padding:65px 0;
  }

  .med-edu-inner{
    padding:0 20px;
  }

  .med-edu-heading{
    gap:32px;
    padding-bottom:36px;
  }

  .med-edu-eyebrow{
    margin-bottom:16px;
    font-size:12px;
  }

  .med-edu-heading h2{
    font-size:32px;
    line-height:1.35;
  }

  .med-edu-heading-copy > p{
    margin-top:18px;
    font-size:15px;
    line-height:1.75;
  }

  .med-edu-heading-copy > p br{
    display:none;
  }

  .med-edu-summary{
    grid-template-columns:1fr 1fr;
    border-radius:17px;
  }

  .med-edu-summary-item{
    padding:20px 12px;
  }

  .med-edu-summary-item:nth-child(3){
    grid-column:1 / -1;
    border-top:1px solid var(--edu-line);
    border-left:0;
  }

  .med-edu-summary-item strong{
    font-size:20px;
  }

  .med-edu-toolbar{
    gap:18px;
    margin-top:28px;
  }

  .med-edu-search{
    max-width:none;
  }

  .med-edu-year-btn{
    min-width:62px;
    height:39px;
    padding:0 15px !important;
    font-size:13px;
  }

  .med-edu-list{
    margin-top:20px;
  }

  .med-edu-year-head{
    grid-template-columns:88px minmax(0,1fr) 40px;
    min-height:86px;
  }

  .med-edu-year{
    font-size:34px;
  }

  .med-edu-year-info{
    gap:8px;
  }

  .med-edu-year-info strong{
    font-size:15px;
  }

  .med-edu-year-count{
    min-width:42px;
    height:24px;
    padding:0 8px;
    font-size:11px;
  }

  .med-edu-toggle{
    width:36px;
    height:36px;
  }

  .med-edu-items{
    margin:0 0 34px 0;
    padding-left:28px;
  }

  .med-edu-items::before{
    left:5px;
  }

  .med-edu-item{
    display:block;
    padding-bottom:25px;
  }

  .med-edu-item::before{
    left:-28px;
    width:11px;
    height:11px;
  }

  .med-edu-date{
    margin-bottom:6px;
    font-size:14px;
  }

  .med-edu-content{
    padding-bottom:24px;
  }

  .med-edu-content h3{
    font-size:16px;
    line-height:1.55;
  }

  .med-edu-meta{
    display:block;
    margin-top:8px;
  }

  .med-edu-meta span{
    display:block;
    font-size:13px;
  }

  .med-edu-meta span + span{
    margin-top:2px;
  }

  .med-edu-meta span + span::before{
    display:none;
  }


  .med-edu-item.is-featured .med-edu-content,
  .med-edu-item.is-featured:last-child .med-edu-content{
    padding:15px 16px 17px;
    border-radius:13px;
  }

  .med-edu-featured-label{
    min-height:23px;
    margin-bottom:7px;
    padding:3px 9px;
    font-size:11px;
  }

  .med-edu-more-wrap{
    margin-top:30px;
  }

  .med-edu-more-years{
    width:100%;
    max-width:280px;
  }
}

@media (prefers-reduced-motion:reduce){
  .med-edu-history *,
  .med-edu-history *::before,
  .med-edu-history *::after{
    scroll-behavior:auto !important;
    transition:none !important;
    animation:none !important;
  }

  .med-edu-history [data-med-edu-reveal],
  .med-edu-year-group{
    opacity:1 !important;
    transform:none !important;
  }
}

