@charset "utf-8";

/* ----- 인사말 ----- */
.prof-intro {}
.prof-intro-inner {display:flex; align-items:flex-start; gap:30px; padding:0 20px;}
.prof-intro-text {flex:1;}
.prof-hello {font-size:24px; margin-bottom:10px;}
.prof-title {font-size:32px; font-weight:700; line-height:1.4; color:#333; margin-bottom:30px;}
.prof-line {display:block; width:60px; height:2px; background:#333; margin-bottom:30px;}
.prof-desc {font-size:18px; line-height:1.8; margin-bottom:30px;}
.prof-intro-photo {width:420px; flex-shrink:0; position:relative; display:flex; justify-content:center; padding-top:10px;}
.prof-intro-photo::before {content:""; position:absolute; right:-20px; top:100px; width:240px; height:240px; background:#dcecef; border-radius:50%; z-index:0;}
.prof-intro-photo::after {content:""; position:absolute; right:280px; top:55px; width:120px; height:100px; background:radial-gradient(circle, rgb(93 173 173 / 35%) 2px, transparent 3px); background-size:10px 10px; opacity:.6; z-index:0;}
.prof-circle {width:320px; height:320px; border:4px solid #01738a; border-radius:50%; overflow:hidden; position:relative; z-index:2;}
.prof-circle img {width:100%; height:100%; object-fit:cover; display:block;}

.prof-intro .prof-hello {opacity:0; animation:profFade .8s ease .1s forwards;}
.prof-intro .prof-title {opacity:0; animation:profFade .8s ease .25s forwards;}
.prof-intro .prof-line {opacity:0; animation:profFade .8s ease .4s forwards;}
.prof-intro .prof-desc {opacity:0; animation:profFade .8s ease .55s forwards;}
.prof-intro .prof-intro-photo {opacity:0; animation:profFade .9s ease .75s forwards;}
@keyframes profFade {from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);}}

@media (max-width:1024px){
  .prof-intro-inner {flex-direction:column-reverse; align-items:center; text-align:center;}
  .prof-intro-photo {width:auto; padding-top:0;}
  .prof-intro-photo::before {right: -50px; top: 65px; width: 200px; height: 200px;}
  .prof-intro-photo::after {right: 170px; top: 0;}
  .prof-circle {width:260px; height:260px;}
  .prof-hello {font-size: 24px;}
  .prof-title {font-size:26px;}
  .prof-desc {font-size:17px; margin-bottom: 20px;}
  .prof-line {margin:25px auto;}

  .prof-intro .prof-hello {opacity:0; animation:profFade .8s ease .25s forwards;}
  .prof-intro .prof-title {opacity:0; animation:profFade .8s ease .4s forwards;}
  .prof-intro .prof-line {opacity:0; animation:profFade .8s ease .55s forwards;}
  .prof-intro .prof-desc {opacity:0; animation:profFade .8s ease .75s forwards;}
  .prof-intro .prof-intro-photo {opacity:0; animation:profFade .9s ease .1s forwards;}
}
@media (max-width:500px){
  .prof-circle {width: 230px; height: 230px;}
  .prof-intro-photo::before {right: -40px; width: 170px; height: 170px;}
  .prof-intro-photo::after {right: 140px;}
  .prof-hello {font-size: 20px;}
  .prof-title {font-size:22px;}
  .prof-desc {font-size: 16px;}
}

/* ----- 비전 및 교육 목표 ----- */
.ip-flow {margin:0 auto; color:#1c2b22;}
.ip-row {margin:0 0 25px;}
.ip-label {display:inline-flex; align-items:center; justify-content:center; min-width:120px; height:42px; padding:0 20px; border-radius:10px; background:#017187; color:#fff; font-size:19px;}
.ip-box {margin-top:10px; background:#fff; border:1px solid #e7e7e7; border-radius:10px; padding:18px; font-size:18px;}
.ip-row--talent .ip-pills {display:flex; gap:12px; margin-top:12px; margin-bottom: 40px;}
.ip-pill {flex:1; background:#f3f8fa; border:1px solid #e7e7e7; border-radius:999px; padding:14px; text-align:center; font-size:18px;}
.ip-bar {border-radius:12px; padding:18px; text-align:center; font-size:22px; font-weight:bold;}
.ip-bar--main {background:#d5e4e8; color:#017187; margin:18px 0 16px; border-radius: 15px;}
.ip-bar--deep {background:#d5e4e8; color:#017187; margin:25px 0 0; border-radius: 15px;}

.ip-arrow {display:flex; justify-content:center; margin:0 0 14px;}
.ip-arrow__box {position:relative; display:inline-flex; align-items:center; justify-content:center; min-width:340px; padding:14px 20px; background:#f3f8fa; border:1px solid #e7e7e7; border-radius:12px; font-size:20px; font-weight:bold; color:#017187;}
.ip-arrow__box:after {content:""; position:absolute; left:50%; bottom:-10px; transform:translateX(-50%) rotate(45deg); width:18px; height:18px; background:#f3f8fa; border-right:1px solid #e7e7e7; border-bottom:1px solid #e7e7e7;}

@media (prefers-reduced-motion: reduce){
  .ip-flow > * {animation:none !important; opacity:1 !important; transform:none !important;}
}

.ip-flow > * {opacity:0; transform:translateY(10px); animation:ipFade .7s ease forwards;}
.ip-flow > :nth-child(1) {animation-delay:.05s;}
.ip-flow > :nth-child(2) {animation-delay:.18s;}
.ip-flow > :nth-child(3) {animation-delay:.31s;}
.ip-flow > :nth-child(4) {animation-delay:.44s;}
.ip-flow > :nth-child(5) {animation-delay:.57s;}
.ip-flow > :nth-child(6) {animation-delay:.70s;}

@keyframes ipFade {to {opacity:1; transform:translateY(0);}}

@media (max-width:768px){
  .ip-label {font-size: 18px; height: 38px; min-width: 100px;}
  .ip-row--talent .ip-pills {flex-direction: column; gap: 6px;}
  .ip-box {padding: 15px 15px; font-size: 17px;}
  .ip-pill {font-size: 18px; padding: 10px 10px;}
  .ip-bar {padding: 15px 15px; font-size: 19px;}
  .ip-arrow__box {font-size: 18px; padding: 10px 20px; min-width: 300px;}
}

