@charset "utf-8";

/* 패스스트랙 */
.ft-theme-pink{
    --ft-deep:#d6337a;
    --ft-main:#ec5f9a;
    --ft-soft:#fff0f6;
    --ft-line:#f5c9dc;
    --ft-hero1:#fff6fa;
    --ft-hero2:#f6cfe1;
    --ft-navy:#232a3b;
    --ft-gray:#555b66;
    --ft-gray2:#aaa;
    --ft-note-bg:#fff6f9;
    --ft-note-text:#a05070;
    --ft-shadow:rgba(214,51,122,0.06);
}
.ft-theme-teal{
    --ft-deep:#256870;
    --ft-main:#2f7d86;
    --ft-soft:#e5f6f8;
    --ft-line:#cfe0e2;
    --ft-hero1:#ecf3f4;
    --ft-hero2:#cfe6e8;
    --ft-navy:#1f2429;
    --ft-gray:#565c63;
    --ft-gray2:#aaa;
    --ft-note-bg:#edf7f8;
    --ft-note-text:#4f7a80;
    --ft-shadow:rgba(37,104,112,0.06);
 }
  
  .ft-hero{
    position:relative;
    overflow:hidden;
    background:var(--ft-hero1);
    padding:40px;
    margin-bottom:8px;
  }
  .ft-hero-inner{
    margin:0 auto;
    position:relative;
    z-index:1;
  }
  .ft-title-row{
    display:flex;
    align-items:baseline;
    flex-wrap:wrap;
    gap:8px;
  }
  .ft-title-kr,
  .ft-title-en{
    font-size:25px;
    font-weight:700;
  }
  .ft-title-kr{color:var(--ft-deep);}
  .ft-title-en{color:var(--ft-navy);}
  .ft-subtitle{
    font-size:clamp(14px,2.2vw,18px);
    font-weight:700;
    color:var(--ft-navy);
    margin-top:25px;
  }
  .ft-desc{
    color:var(--ft-gray);
    font-size:clamp(13px,2vw,15px);
    line-height:1.6;
    margin-top:10px;
  }

  /* section title */
  .ft-section-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:clamp(17px,2.4vw,20px);
    font-weight:700;
    color:var(--ft-navy);
    margin:32px 0 18px;
  }
  .ft-section-title .ft-bar{
    width:6px;
    height:20px;
    background:var(--ft-main);
    border-radius:2px;
  }

  /* steps */
  .ft-steps{
    display:flex;
    align-items:stretch;
    gap:5px;
  }
  .ft-step-item{
    flex:1 1 0;
    min-width:0;
    display:flex;
    align-items:center;
    gap:6px;
  }
  .ft-step-card{
    flex:1;
    height:100%;
    border:1px solid var(--ft-line);
    border-radius:14px;
    padding:20px 16px 22px;
    text-align:center;
    box-shadow:0 2px 8px var(--ft-shadow);
	box-sizing:border-box;
  }
  .ft-step-badge{
    display:inline-block;
    background:linear-gradient(135deg,var(--ft-main),var(--ft-deep));
    color:#fff;
    font-size:13px;
    font-weight:700;
    line-height:1;
    padding:9px 16px;
    border-radius:999px;
    margin-bottom:14px;
  }
  .ft-step-icon{
    width:50px;
    height:50px;
    margin:0 auto 14px;
    color:var(--ft-deep);
	opacity:0.5;
  }
  .ft-step-icon svg{width:100%;height:100%;}
  .ft-step-title{
    font-weight:700;
    font-size:15px;
    line-height:1.4;
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--ft-navy);
    margin-bottom:8px;
  }
  .ft-step-desc{
    font-size:13px;
    color:var(--ft-gray);
    line-height:1.5;
  }
  .ft-step-note{
    font-size:11.5px;
    color:#666666;
    line-height:1.6;
    margin-top:10px;
    padding-top:10px;
    border-top:1px dashed var(--ft-line);
  }
  .ft-arrow{
    flex:0 0 auto;
    color:var(--ft-gray2);
    display:flex;
    align-items:center;
    justify-content:center;
    width:30px;
  }
  .ft-arrow svg{width:30px;height:30px;}

  /* info grid */
  .ft-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }
  .ft-info-card{
    border:1px solid #ddd;
    padding:20px 22px 24px;
  }
  .ft-info-head{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    font-size:16px;
    color:var(--ft-navy);
    margin-bottom:20px;
  }
  .ft-info-head .ft-icon-circle{
    width:30px;
    height:30px;
    border-radius:50%;
    background:var(--ft-soft);
    color:var(--ft-deep);
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
  }
  .ft-info-head .ft-icon-circle svg{width:18px;height:18px;}

  ul.ft-bullets{
    list-style:none;
    margin:0;
    padding:0;
  }
  ul.ft-bullets li{
    position:relative;
    padding-left:14px;
    font-size:13.5px;
    color:var(--ft-gray);
    line-height:1.7;
    margin-bottom:10px;
  }
  ul.ft-bullets li::before{
    content:"";
    position:absolute;
    left:0;
    top:9px;
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--ft-main);
  }

  ol.ft-docs{
    list-style:none;
    margin:0 0 14px;
    padding:0;
  }
  ol.ft-docs li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:13.5px;
    color:var(--ft-navy);
    margin-bottom:10px;
    line-height:1.5;
  }
  ol.ft-docs li .ft-num{
    flex:0 0 auto;
    width:20px;
    height:20px;
    border-radius:50%;
    background:var(--ft-main);
    color:#fff;
    font-size:11px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:1px;
  }
  .ft-note{
    font-size:12px;
    color:var(--ft-note-text);
    line-height:1.6;
    background:var(--ft-note-bg);
    border-radius:10px;
    padding:10px 12px;
  }

  table.ft-doctor{
    width:100%;
    border-collapse:collapse;
    font-size:13px;
  }
  table.ft-doctor th{
    background:var(--ft-deep);
    color:#fff;
    font-weight:700;
    text-align:center;
    padding:8px 6px;
    border-bottom:1px solid var(--ft-line);
  }
  table.ft-doctor td{
    text-align:center;
    padding:9px 6px;
    border-bottom:1px solid var(--ft-line);
    color:var(--ft-navy);
  }
  table.ft-doctor td:first-child{
    font-weight:700;
  }
  table.ft-doctor tr:last-child td{border-bottom:none;}
  .ft-table-scroll{overflow-x:auto;}

  /* footer banner */
  .ft-banner{
    margin-top:20px;
    border:1px solid #ddd;
    padding:25px 20px;
    display:flex;
    align-items:center;
    gap:20px;
  }
  .ft-banner .ft-icon-circle{
    width:44px;
    height:44px;
    border-radius:50%;
    background:var(--ft-soft);
    color:var(--ft-deep);
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
  }
  .ft-banner .ft-icon-circle svg{width:24px;height:24px;}
  .ft-banner-title{
    font-weight:700;
    font-size:16px;
    color:var(--ft-navy);
    margin-bottom:10px;
  }
  .ft-banner-title .ft-divider{color:var(--ft-main);margin:0 6px;}
  .ft-banner-desc{
    font-size:13px;
    color:var(--ft-gray);
    line-height:1.6;
  }


/********************모바일********************/
@media(max-width:736px){

    .ft-arrow{display:none;}
    .ft-info-grid{grid-template-columns:1fr;}
    .ft-steps{display:grid;grid-template-columns:1fr;}
    .ft-hero{padding:30px 25px;}
    .ft-title-kr,
    .ft-title-en{font-size:20px;}
    .ft-subtitle{font-size:15px;margin-top:18px;}
    .ft-desc{font-size:13px;margin-top:8px;}
    .ft-step-icon{width:40px;height:40px;}
    .ft-step-badge{font-size:11px;padding:7px 13px;}
    .ft-step-title{font-size:14px;min-height:auto;}
    .ft-step-desc{font-size:12px;}
    .ft-banner-title{font-size:15px;}
    .ft-banner .ft-icon-circle{width:30px;height:30px;}
    .ft-banner .ft-icon-circle svg{width:18px;height:18px;}

}



/********************모바일********************/
@media(max-width:520px){

    .ft-hero{border-radius:0 0 20px 20px;padding:28px 16px 32px;}

}