/*======================================================
BLOG LAYOUT
======================================================*/

.blog-layout{
   padding:140px 20px;
}
.blog-layout .inner{

    display:grid;
    grid-template-columns:220px minmax(0,1fr);

    gap:90px;

    align-items:start;

}
/*======================================================
TOC
======================================================*/

.blog-toc{
    width:180px;
    position:sticky;

    top:120px;

    align-self:start;

}

.toc-title{

    display:block;

    margin-bottom:20px;

    font-size:12px;

    letter-spacing:.18em;

    font-weight:700;

    color:#3182F6;

}

.blog-toc ul{

    margin:0;

    padding:0;

    list-style:none;

}

.blog-toc li{

    margin-bottom:14px;

}

.blog-toc a{

    position:relative;

    display:block;

    padding-left:18px;

    font-size:15px;

    color:#888;

    transition:.25s;

}

.blog-toc a:before{

    content:"";

    position:absolute;

    left:0;

    top:9px;

    width:6px;

    height:6px;

    border-radius:50%;

    background:#ddd;

    transition:.25s;

}

.blog-toc a:hover{

    color:#111;

}

.blog-toc a.active{

    color:#3182F6;

    font-weight:700;

}

.blog-toc a.active:before{

    background:#3182F6;

}

.blog-layout .blog-hero{
    padding:0;
    margin-bottom: 50px !important;
    margin:0;
}
/*======================================================
CONTENT
======================================================*/

.blog-content{

    width: 100%;
}

.blog-category{

    display:inline-flex;

    padding:8px 16px;

    border-radius:100px;

    background:#EEF5FF;

    color:#3182F6;

    font-size:14px;

    font-weight:700;

    margin-bottom:24px;

}



.blog-summary{

    margin:30px 0;

    font-size:20px;

    line-height:1.8;

    color:#666;

}

.blog-info{

    display:flex;

    align-items:center;

    gap:16px;



    color:#777;

}

.blog-info span:nth-child(even){

    width:5px;

    height:5px;

    border-radius:50%;

    background:#d8d8d8;

}

.blog-content img{

    width:100%;

    display:block;

    border-radius:24px;

    margin-bottom:80px;

}





@media (max-width:1200px){

.blog-layout .inner{

    display:block;

}

.blog-toc{

    display:none;

}

.blog-content{

    max-width:860px;
    width:100%;
    margin:0 auto;

}

}

@media (max-width:860px){
.blog-layout .inner{

    display:grid;
    grid-template-columns:1fr;
    gap:0;

}

.blog-toc{
    display:none;
}
.blog-layout{

    padding:70px 20px;

}



.blog-summary{

    font-size:17px;

    line-height:1.7;

}





.blog-content img{

    border-radius:16px;

    margin-bottom:50px;

}

}


/* ======================================================
TYPOGRAPHY
====================================================== */

/* Desktop */
.blog-content h1{
    font-size:40px;
    line-height:1.25;
    letter-spacing:-0.04em;
    font-weight:800;
    margin-bottom:28px;
}

.blog-content h2{
    font-size:28px;
    line-height:1.4;
    letter-spacing:-0.03em;
    font-weight:700;
    margin-bottom:20px;
}

.blog-content h3{
    font-size:24px;
    line-height:1.5;
    letter-spacing:-0.02em;
    font-weight:700;
    margin-bottom:18px;
}

.blog-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:24px;
        font-weight:300;
}

.blog-content small,
.blog-content .small{
    display:block;
    font-size:14px;
    line-height:1.8;
    color:#888;
}

.blog-summary{
    font-size:18px;
    line-height:1.8;
}

.blog-info{
    font-size:14px;
}
.blog-content,
.blog-content p,
.blog-content li,
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content blockquote{

    word-break: keep-all;
    overflow-wrap: break-word;

}
/* ======================================================
MOBILE
====================================================== */

@media (max-width:860px){

.blog-content h1{
    font-size:32px;
    line-height:1.3;
    margin-bottom:20px;
}

.blog-content h2{
    font-size:24px;
    line-height:1.4;
    margin-bottom:18px;
}

.blog-content h3{
    font-size:20px;
    line-height:1.5;
    margin-bottom:16px;
}

.blog-content p{
    font-size:16px;
    line-height:1.85;
}

.blog-summary{
    font-size:16px;
    line-height:1.8;
}

.blog-content small,
.blog-content .small{
    font-size:13px;
}

.blog-info{
    font-size:13px;
}

}


.blog-hero{

    position:relative;
    overflow:hidden;

    border-radius:32px;
   
    min-height:unset;

      

}

.blog-hero img{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    margin:0;

}

.blog-hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.58) 38%,
        rgba(0,0,0,.28) 68%,
        rgba(0,0,0,.08) 100%
    );

}

.blog-hero-content{

    position:relative;
    z-index:2;

    

    padding:90px;

}

.white{
    color: #fff !important;
}

.blog-category{

   background:rgba(255,255,255,.18);
    color:#fff;
    backdrop-filter:blur(10px);

}

/* ======================================================
BLOG TIP
====================================================== */

.blog-tip{

    position:relative;

    margin:60px 0;

    padding:34px 38px;

    border:1px solid #E5EDF9;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        #F8FBFF 0%,
        #F2F7FF 100%
    );

    box-shadow:0 12px 30px rgba(49,130,246,.06);

}



.blog-tip-title{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:22px;

    font-size:20px;

    font-weight:700;

    color:#111;

}

.blog-tip ul{

    margin:0;
    padding:0;

    list-style:none;

}

.blog-tip li{

    position:relative;

    padding-left:28px;

    margin-bottom:16px;

    font-size:17px;

    line-height:1.9;

    color:#444;

}

.blog-tip li:last-child{

    margin-bottom:0;

}

.blog-tip li:before{

    content:"✓";

    position:absolute;

    left:0;
    top:1px;

    color:#3182F6;

    font-weight:700;

}
.blog-hero{
    margin-bottom:100px;
}

.blog-section{
    padding:0 !important;
    margin-bottom:100px;
    margin-top: 100px;
}

.blog-section:last-child{
    margin-bottom:0;
}
.blog-tip strong{

      font-weight:700;

    color:#111;

    background:linear-gradient(
    to top,
    rgba(255,230,90,.55) 42%,
    transparent 42%
);

    box-decoration-break:clone;
    -webkit-box-decoration-break:clone;

    padding:0 .12em;

}

.blog-floating{

    position:fixed;

    right:40px;

    top:50%;

    transform:translateY(-50%);

    display:flex;

    flex-direction:column;

    gap:12px;

    z-index:999;

}

.blog-floating a,
.blog-floating button{

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#555;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.25s;

}

.blog-floating a:hover,
.blog-floating button:hover{

    transform:translateY(-3px);

    color:#3182F6;

    box-shadow:0 14px 36px rgba(49,130,246,.18);

}
.blog-floating svg{
    width:22px;
    height:22px;
    display:block;
    stroke:currentColor;
}

.scroll-top{

    position:fixed;

    right:32px;
    bottom:32px;

    width:56px;
    height:56px;

    border:none;

    border-radius:50%;

    background:#3182F6;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    box-shadow:0 12px 35px rgba(49,130,246,.35);

    transition:.25s;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    z-index:9999;

}

.scroll-top.show{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

.scroll-top:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(49,130,246,.45);

}

.scroll-top svg{

    width:22px;
    height:22px;

}
@media(max-width:860px){
.blog-tip{
    padding: 20px;
}
.scroll-top{

    right:20px;
    bottom:20px;

    width:48px;
    height:48px;

}

.scroll-top svg{

    width:20px;
    height:20px;

}

}
@media (max-width:860px){
    

.blog-floating{

    display:none;

}

}
@media (max-width:860px){

.blog-section{
 
    margin-bottom:50px;
    margin-top: 50px;
}

.blog-hero-content{

    left:0;
    right:0;
    bottom:0;

    padding:32px 24px;

    max-width:100%;

}

.blog-hero h1{

    font-size:32px;
    line-height:1.3;

}

.blog-summary{

    margin:18px 0 24px;

    font-size:16px;
    line-height:1.75;

}

.blog-category{

    padding:7px 14px;

    font-size:13px;

    margin-bottom:18px;

}

.blog-info{

    gap:12px;

    font-size:13px;

    flex-wrap:wrap;

}

.blog-info span:nth-child(even){

    width:4px;
    height:4px;

}

}
@media (max-width:860px){

.blog-hero img{

    object-position:center 25%;

}

}
.blog-hero img{
    object-fit:cover;
    object-position:center center;
}





.blog-divider{
    margin:60px 0 32px;
    border-top:1px solid #ececec;
}

.blog-point{
    display:inline-flex;
    align-items:center;
    padding:6px 12px;
    border-radius:999px;
    background:#f4f7fb;
    color:#3182f6;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:18px;
}

.blog-check{
    margin:24px 0 0;
    padding-left:20px;
}

.blog-check li{
    margin-bottom:10px;
    color:#555;
    line-height:1.8;
}

.blog-item{
    position:relative;
    padding:70px 0 50px;
    border-top:1px solid #ececec;
}

.blog-num{
    position:absolute;
    top:38px;
    right:0;
    font-size:64px;
    font-weight:800;
    color:#f3f5f7;
    line-height:1;
    user-select:none;
    pointer-events:none;
}

.blog-item h3{
    position:relative;
    z-index:2;
}

.blog-content strong{
    font-weight:600;
    color:#111;
    background:linear-gradient(
        to top,
        rgba(49,130,246,.18) 42%,
        transparent 42%
    );
    padding:0 .12em;
    box-decoration-break:clone;
    -webkit-box-decoration-break:clone;
}


/* ======================================================
   HIGHLIGHT
====================================================== */

.mark-yellow,
.mark-blue{
    font-weight:600;
    color:#111;
    padding:0 .12em;
    box-decoration-break:clone;
    -webkit-box-decoration-break:clone;
}

.mark-yellow{
    background:linear-gradient(
        to top,
        rgba(255,224,92,.45) 42%,
        transparent 42%
    );
}

.mark-blue{
    background:linear-gradient(
        to top,
        rgba(49,130,246,.18) 42%,
        transparent 42%
    );
}


/* ======================================================
   COST GUIDE
====================================================== */

.cost-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:24px;

    margin:55px 0;

}

.cost-card{

    padding:34px;

    border:1px solid #ececec;

    border-radius:22px;

    background:#fff;

    transition:.3s;

}

.cost-card:hover{

    transform:translateY(-6px);

    border-color:#3182F6;

    box-shadow:0 18px 45px rgba(49,130,246,.08);

}

.cost-icon{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:52px;

    height:52px;

    border-radius:14px;

    background:#EEF5FF;

    font-size:24px;

    margin-bottom:22px;

}

.cost-card h3{

    margin-bottom:16px;

}

.cost-card p{

    margin:0;

}

@media(max-width:860px){

.cost-grid{

    grid-template-columns:1fr;

}

}

/* ======================================================
   SCHEDULE
====================================================== */

.schedule-grid{

    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px;
    margin:55px 0;

}

.schedule-card{

    position:relative;

    padding:36px;

    border:1px solid #ECECEC;
    border-radius:24px;

    background:#fff;

    transition:.3s;

}

.schedule-card:hover{

    transform:translateY(-6px);

    border-color:#3182F6;

    box-shadow:0 18px 45px rgba(49,130,246,.08);

}

.schedule-icon{

    display:flex;

    align-items:center;
    justify-content:center;

    width:64px;
    height:64px;

    border-radius:18px;

    background:#EEF5FF;

    font-size:30px;

    margin-bottom:20px;

}

.schedule-num{

    display:inline-block;

    padding:6px 14px;

    border-radius:999px;

    background:#F5F8FC;

    color:#3182F6;

    font-size:12px;

    font-weight:700;

    letter-spacing:.08em;

    margin-bottom:18px;

}

.schedule-card h3{

    margin-bottom:16px;

    font-size:24px;

}

.schedule-card p{

    margin:0;

    color:#666;

    line-height:1.9;

}

@media(max-width:860px){

.schedule-grid{

    grid-template-columns:1fr;

}

.schedule-card{

    padding:30px;

}

.schedule-icon{

    width:58px;
    height:58px;

    font-size:26px;

}

.schedule-card h3{

    font-size:22px;

}

}

/* ======================================================
   CHECK LIST
====================================================== */

.check-grid{

    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
    margin:55px 0;

}

.check-card{

    padding:34px;
    border:1px solid #ececec;
    border-radius:22px;
    background:#fff;
    transition:.3s;

}

.check-card:hover{

    transform:translateY(-6px);
    border-color:#3182F6;
    box-shadow:0 18px 45px rgba(49,130,246,.08);

}

.check-icon{

    display:flex;
    align-items:center;
    justify-content:center;

    width:56px;
    height:56px;

    border-radius:16px;
    background:#EEF5FF;

    font-size:28px;

    margin-bottom:22px;

}

.check-card h3{

    margin-bottom:16px;

}

.check-card p{

    margin:0;
    color:#666;
    line-height:1.9;

}

@media(max-width:860px){

.check-grid{

    grid-template-columns:1fr;

}

.check-card{

    padding:30px;

}

}


.faq-icon{
    position:relative;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#EEF5FF;
    flex-shrink:0;
}

.faq-icon::before,
.faq-icon::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    background:#3182F6;
    transform:translate(-50%,-50%);
    transition:.3s;
}

/* 가로 */
.faq-icon::before{
    width:16px;
    height:2px;
}

/* 세로 */
.faq-icon::after{
    width:2px;
    height:16px;
}

/* 열렸을 때 X */
.faq-item.active .faq-icon::before{
    transform:translate(-50%,-50%) rotate(45deg);
}

.faq-item.active .faq-icon::after{
    transform:translate(-50%,-50%) rotate(-45deg);
    width:16px;
    height:2px;
}
.faq-list{
    margin: 0 !important;
}

/* ======================================================
   BLOG CTA
====================================================== */

.blog-cta{

    position:relative;
    overflow:hidden;

       margin-bottom: 100px;
    margin-top: 100px;

    padding:90px 80px;

    border-radius:36px;

    background:#0F172A;

    color:#fff;

}

.blog-cta-bg{

    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at 18% 18%,
        rgba(49,130,246,.35),
        transparent 42%),

        radial-gradient(circle at 82% 82%,
        rgba(49,130,246,.20),
        transparent 45%);

}

.blog-cta-content{

    position:relative;
    z-index:2;

    text-align:center;

}

.blog-cta-logo{

    width:220px !important;

    display:block;
border-radius: 0 !important;
    margin:0 auto 38px !important;

}

.blog-cta h2{

    color:#fff;

    font-size:44px;

    line-height:1.3;

    margin-bottom:22px;

}

.blog-cta p{

    color:rgba(255,255,255,.72);

    font-size:18px;

    line-height:1.9;

    margin-bottom:46px;

}

.blog-cta-btns{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.blog-cta-btns .cta-btn{

    min-width:220px;

    height:60px;

    padding:0 34px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:999px;

    font-size:17px;

    font-weight:700;

    transition:.35s ease;

}

/* ==========================
   PRIMARY
========================== */

.blog-cta-btns .primary{

    background:#3182F6;

    color:#fff;

    box-shadow:
        0 15px 40px rgba(49,130,246,.35);

}

.blog-cta-btns .primary:hover{

    background:#4A90FF;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:
        0 22px 55px rgba(49,130,246,.45);

}

/* ==========================
   SECONDARY
========================== */

.blog-cta-btns .secondary{

    background:rgba(255,255,255,.08);

    color:#fff;

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

}

.blog-cta-btns .secondary:hover{

    background:#fff;

    color:#111;

    border-color:#fff;

    transform:translateY(-4px);

    box-shadow:
        0 18px 45px rgba(255,255,255,.12);

}

/* ==========================
   MOBILE
========================== */

@media(max-width:860px){

.blog-cta{

          margin-bottom: 50px;
        margin-top: 50px;

    padding:60px 24px;

    border-radius:24px;

}

.blog-cta-logo{

    width:170px;

    margin-bottom:28px;

}

.blog-cta h2{

    font-size:30px;

}

.blog-cta p{

    font-size:16px;

    margin-bottom:34px;

}

.blog-cta-btns{

    flex-direction:column;

    gap:14px;

}

.blog-cta-btns .cta-btn{

    width:100%;

    min-width:0;

    height:56px;

    font-size:16px;

}

}

.related-post{

    margin-top:100px;
    margin-bottom: 100px;
    padding: 0 !important;

}

.related-post .blog-grid{

    margin-top:60px;

}

.related-post .services-head{

    margin-bottom:0;

}

.related-post .blog-grid{

    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;

}
@media(max-width:860px){

.related-post .blog-grid{
  margin-top:50px;
    margin-bottom: 50px;
    grid-template-columns:1fr;

}

}

.related-post .blog-title{

    font-size:14px !important;
    line-height:1.35;

}

.related-post .blog-view{

  border-radius: 29px !important;
    padding: 4px 12px !important;
    height: 33px;
}
.icon1{
    margin-bottom: 0 !important;
}

