/* ===============================
   1) 사이트 보이는 포스팅 래퍼
   =============================== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        line-height: 1.6;
        color: #1d1d1f;
        background-color: #f5f5f7;
        overflow-x: hidden;
    }

    .container{
        max-width: 1920px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Hero Banner with Aurora Effect */
    .hero-banner {
        height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        background-size: 400% 400%;
        animation: aurora 8s ease-in-out infinite;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, 
            rgba(102, 126, 234, 0.8), 
            rgba(118, 75, 162, 0.6), 
            rgba(240, 147, 251, 0.7),
            rgba(255, 154, 158, 0.6),
            rgba(250, 208, 196, 0.5),
            rgba(143, 211, 244, 0.7)
        );
        background-size: 300% 300%;
        animation: auroraOverlay 12s linear infinite;
        opacity: 0.7;
        z-index: 1;
    }

    .hero-banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at center, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 255, 255, 0.05) 50%, 
            transparent 100%);
        z-index: 2;
    }

    @keyframes aurora {
        0% { background-position: 0% 50%; }
        25% { background-position: 100% 25%; }
        50% { background-position: 100% 75%; }
        75% { background-position: 0% 100%; }
        100% { background-position: 0% 50%; }
    }

    @keyframes auroraOverlay {
        0% {
            background-position: 0% 0%;
            transform: rotate(0deg) scale(1);
        }
        33% {
            background-position: 100% 50%;
            transform: rotate(120deg) scale(1.1);
        }
        66% {
            background-position: 50% 100%;
            transform: rotate(240deg) scale(0.9);
        }
        100% {
            background-position: 0% 0%;
            transform: rotate(360deg) scale(1);
        }
    }

    .hero-content {
        max-width: 1200px;
        padding: 0 40px;
        animation: fadeInUp 1s ease-out;
        position: relative;
        z-index: 3;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 6rem);
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
        line-height: 1.1;
        word-break: keep-all;
        hyphens: none;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.8rem);
        font-weight: 300;
        margin-bottom: 40px;
        opacity: 0.9;
        line-height: 1.4;
        word-break: keep-all;
        hyphens: none;
    }

    .cta-button {
        display: inline-block;
        padding: 16px 32px;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 18px;
        transition: all 0.3s ease;
        backdrop-filter: blur(20px);
    }

    .cta-button:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    /* Main Content */
    .main-content {
        max-width: 1920px;
        margin: 0 auto;
        padding: 80px 40px;
    }

    .section {
        margin-bottom: 120px;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 3.5rem);
        font-weight: 700;
        margin-bottom: 60px;
        text-align: center;
        color: #1d1d1f;
        letter-spacing: -0.02em;
        line-height: 1.2;
        word-break: keep-all;
        hyphens: none;
    }

    .content-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 80px;
        margin-bottom: 80px;
    }

    .content-card {
        background: white;
        padding: 40px;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .content-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    }

    .card-title {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        font-weight: 700;
        margin-bottom: 20px;
        color: #1d1d1f;
        line-height: 1.3;
        word-break: keep-all;
        hyphens: none;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .card-content {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.7;
        color: #6e6e73;
        word-break: keep-all;
        hyphens: none;
    }

    .card-icon{
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #eff6ff, #dbeafe);
        border: 1px solid rgba(37, 99, 235, 0.12);
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
    }

    .card-icon svg{
        width: 20px;
        height: 20px;
        stroke: #2563eb;
    }

    /* Feature Section */
    .feature-section {
        background: white;
        padding: 100px 40px;
        margin: 80px 0;
        border-radius: 32px;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 80px;
        max-width: 1920px;
        margin: 0 auto;
    }

    .feature-item {
        text-align: center;
        padding: 30px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #0071e3, #005bb5);
        border-radius: 20px;
        margin: 0 auto 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        box-shadow: 0 16px 40px rgba(0, 113, 227, 0.25);
    }

    .feature-icon svg{
        width: 34px;
        height: 34px;
        stroke: #fff;
    }

    .feature-title {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        font-weight: 600;
        margin-bottom: 15px;
        color: #1d1d1f;
        line-height: 1.3;
        word-break: keep-all;
        hyphens: none;
    }

    .feature-desc {
        color: #6e6e73;
        line-height: 1.6;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        word-break: keep-all;
        hyphens: none;
    }

    /* CTA Section */
    .cta-section {
        text-align: center;
        padding: 100px 40px;
        background: linear-gradient(135deg, #1d1d1f, #333);
        color: white;
        border-radius: 32px;
        margin-top: 80px;
    }

    .cta-title {
        font-size: clamp(2rem, 6vw, 4rem);
        font-weight: 800;
        margin-bottom: 30px;
        letter-spacing: -0.02em;
        line-height: 1.2;
        word-break: keep-all;
        hyphens: none;
    }

    .cta-desc {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        margin-bottom: 50px;
        opacity: 0.8;
        line-height: 1.4;
        word-break: keep-all;
        hyphens: none;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary {
        padding: 18px 36px;
        background: #0071e3;
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        background: #005bb5;
        transform: translateY(-2px);
    }

    .btn-secondary {
        padding: 18px 36px;
        background: transparent;
        color: white;
        text-decoration: none;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        font-weight: 600;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }

    /* Footer */
    .footer {
        background: #1d1d1f;
        color: #a1a1a6;
        padding: 60px 40px 30px;
        text-align: center;
    }

    .footer-content {
        max-width: 1920px;
        margin: 0 auto;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .footer-links a {
        color: #a1a1a6;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: white;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    /* Reviews Section - Complete CSS */
    .review-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-bottom: 30px;
        border-left: 5px solid #2563eb;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        opacity: 0;
        animation: fadeInUp 0.6s ease forwards;
    }

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .review-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .review-card:hover::before {
        left: 100%;
    }

    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .reviewer-name {
        font-weight: bold;
        color: #333;
        font-size: 1.1rem;
    }

    .reviewer-location {
        color: #666;
        font-size: 0.9rem;
        margin-top: 5px;
    }

    .rating {
        font-size: 1.2rem;
    }

    .review-content {
        color: #555;
        line-height: 1.6;
        font-size: 1rem;
    }

    /* Animation Delays */
    .review-card:nth-child(2) { animation-delay: 0.1s; }
    .review-card:nth-child(3) { animation-delay: 0.2s; }
    .review-card:nth-child(4) { animation-delay: 0.3s; }
    .review-card:nth-child(5) { animation-delay: 0.4s; }
    .review-card:nth-child(6) { animation-delay: 0.5s; }
    .review-card:nth-child(7) { animation-delay: 0.6s; }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile Responsiveness */
    @media (max-width: 1920px) {
        .main-content,
        .footer-content {
            padding-left: 20px;
            padding-right: 20px;
        }
    }

    @media (max-width: 1200px) {
        .content-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
        }
        
        .feature-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
        }
    }

    @media (max-width: 768px) {
        .hero-banner {
            height: 80vh;
        }
        
        .hero-title {
            font-size: 2.5rem;
            line-height: 1.1;
            margin-bottom: 15px;
        }
        
        .hero-subtitle {
            font-size: 1rem;
            line-height: 1.4;
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 1.8rem;
            line-height: 1.2;
            margin-bottom: 40px;
        }
        
        .card-title {
            font-size: 1.2rem;
            line-height: 1.3;
            margin-bottom: 15px;
        }
        
        .card-content {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        .feature-title {
            font-size: 1.1rem;
            line-height: 1.3;
        }
        
        .feature-desc {
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .cta-title {
            font-size: 2rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .cta-desc {
            font-size: 1.1rem;
            line-height: 1.4;
            margin-bottom: 30px;
        }

        .content-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .feature-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .footer-links {
            flex-direction: column;
            gap: 20px;
        }

        .main-content,
        .feature-section,
        .cta-section,
        .footer {
            padding-left: 20px;
            padding-right: 20px;
        }

        .review-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        
        .rating {
            align-self: flex-end;
        }
        
        .review-card {
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .reviewer-name {
            font-size: 1rem;
        }
        
        .reviewer-location {
            font-size: 0.85rem;
        }
        
        .review-content {
            font-size: 0.9rem;
            line-height: 1.5;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 2.2rem;
        }
        
        .hero-subtitle {
            font-size: 0.95rem;
        }
        
        .section-title {
            font-size: 1.6rem;
        }
        
        .card-title {
            font-size: 1.1rem;
        }
        
        .card-content {
            font-size: 0.85rem;
        }
        
        .cta-title {
            font-size: 1.8rem;
        }
        
        .cta-desc {
            font-size: 1rem;
        }
    }

    /* Scroll animations */
    .scroll-animate {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }

    .scroll-animate.active {
        opacity: 1;
        transform: translateY(0);
    }




/* =========================================================
   접기 스타일 통일본
   - guide-onefold / ptk-toggle 둘 다 캐러셀 접기 톤으로 맞춤
   - 기존 클래스명 유지
   ========================================================= */

/* ===== 공통 접기 톤 : guide-onefold ===== */
.guide-onefold{
  max-width:1180px;
  margin:0 auto;
  padding:0 18px 24px;
}

.guide-onefold details{
  margin:4px 0 18px;
  border:0;
  border-radius:0;
  background:transparent;
  overflow:visible;
  box-shadow:none;
}

.guide-onefold summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:28px;
  padding:2px 18px 2px 0;
  background:transparent;
  border:0;
  border-bottom:1px solid #e9edf1;
  border-radius:0;
  box-shadow:none;
}

.guide-onefold summary::-webkit-details-marker{
  display:none;
}

.guide-onefold details[open] summary{
  border-bottom:1px solid #e9edf1;
}

.guide-onefold .fold-kicker{
  display:none;
}

.guide-onefold .fold-title{
  display:block;
  margin:0;
  padding:0;
  font-size:12px;
  font-weight:500;
  line-height:1.2;
  color:#5f6b76;
  letter-spacing:-0.01em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.guide-onefold .fold-desc{
  display:none;
}

.guide-onefold .fold-state{
  display:none;
}

.guide-onefold .fold-arrow{
  position:absolute;
  right:2px;
  top:50%;
  width:auto;
  height:auto;
  border:0;
  border-radius:0;
  background:transparent;
  transform:translateY(-50%);
  transition:transform .18s ease;
}

.guide-onefold .fold-arrow::before,
.guide-onefold .fold-arrow::after{
  display:none;
}

.guide-onefold .fold-arrow:after{
  content:"▾";
  display:block;
  font-size:10px;
  line-height:1;
  color:#98a2ad;
}

.guide-onefold details[open] .fold-arrow{
  transform:translateY(-50%) rotate(180deg);
  background:transparent;
  border:0;
}

.guide-onefold .fold-panel{
  padding:12px 0 14px;
  background:transparent;
}

/* ===== 공통 접기 톤 : ptk-toggle ===== */
.ptk-toggle{
  margin:4px 0 18px;
}

.ptk-toggle details{
  border:0;
  border-radius:0;
  background:transparent;
  overflow:visible;
  box-shadow:none;
}

.ptk-toggle summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:0;
  min-height:28px;
  padding:2px 18px 2px 0;
  font-family:'Noto Sans KR','Malgun Gothic',sans-serif;
  font-size:12px;
  font-weight:500;
  color:#5f6b76;
  background:transparent;
  border:0;
  border-bottom:1px solid #e9edf1;
  border-radius:0;
  box-shadow:none;
}

.ptk-toggle summary::-webkit-details-marker{
  display:none;
}

.ptk-toggle summary::marker{
  content:"";
}

.ptk-toggle summary:focus{
  outline:none;
}

.ptk-toggle summary:focus-visible{
  outline:none;
  border-radius:0;
}

.ptk-toggle .sum-left{
  display:block;
  min-width:0;
  flex:1;
}

.ptk-toggle .pill{
  display:none;
}

.ptk-toggle .state{
  display:none;
}

.ptk-toggle .hint{
  display:block;
  max-width:none;
  font-weight:500;
  font-size:12px;
  line-height:1.2;
  color:#5f6b76;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.ptk-toggle details:not([open]) .open{
  display:none;
}

.ptk-toggle details[open] .open{
  display:inline;
}

.ptk-toggle details[open] .closed{
  display:none;
}

.ptk-toggle .arrow{
  position:absolute;
  right:2px;
  top:50%;
  flex:none;
  width:auto;
  height:auto;
  border:0;
  border-radius:0;
  background:transparent;
  transform:translateY(-50%);
}

.ptk-toggle .arrow::before{
  content:"▾";
  position:static;
  display:block;
  width:auto;
  height:auto;
  border:0;
  font-size:10px;
  line-height:1;
  color:#98a2ad;
  transform:none;
  transition:transform .18s ease;
}

.ptk-toggle details[open] .arrow::before{
  transform:rotate(180deg);
}

.ptk-toggle .panel{
  padding:12px 0 14px;
  background:transparent;
}

/* ===== 모바일 ===== */
@media (max-width:780px){
  .guide-onefold{
    padding:0 12px 20px;
  }

  .guide-onefold summary{
    padding:2px 18px 2px 0;
  }

  .guide-onefold .fold-title{
    font-size:12px;
    margin:0;
  }

  .guide-onefold .fold-arrow{
    right:2px;
    top:50%;
    width:auto;
    height:auto;
  }
}

@media (max-width:600px){
  .ptk-toggle .hint{
    display:block;
  }
}



/* ===============================
   3) 캐러셀스타일
   =============================== */
.sr-all-fold{
  margin:4px 0 18px;
  border:0;
  border-radius:0;
  background:transparent;
  overflow:visible;
}

.sr-all-fold > summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:28px;
  padding:2px 18px 2px 0;
  background:transparent;
  border:0;
  border-bottom:1px solid #e9edf1;
  border-radius:0;
  box-shadow:none;
}

.sr-all-fold > summary::-webkit-details-marker{
  display:none;
}

.sr-sum-wrap{
  display:block;
  min-width:0;
  flex:1;
}

.sr-title{
  display:block;
  font-size:12px;
  font-weight:500;
  line-height:1.2;
  color:#5f6b76;
  letter-spacing:-0.01em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.sr-arrow{
  position:absolute;
  right:2px;
  top:50%;
  transform:translateY(-50%);
  font-size:10px;
  line-height:1;
  color:#98a2ad;
  transition:transform .18s ease;
}

.sr-all-fold[open] .sr-arrow{
  transform:translateY(-50%) rotate(180deg);
}

.sr-content{
  padding:12px 0 14px;
  background:transparent;
}

/* ===== 가전내구제 캐러셀 전용 스타일 ===== */
.naver-grid-widget{
  margin:0 0 8px;
}

.ngw-title{
  margin:0 0 12px;
  font-size:28px;
  line-height:1.25;
  font-weight:900;
  color:#111827;
  letter-spacing:-0.04em;
}

.ngw-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}

.ngw-item{
  margin:0;
  padding:0;
}

.ngw-item a{
  display:block;
  height:100%;
  text-decoration:none;
  color:inherit;
}

.ngw-thumb{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background:#f8fafc;
  border:1px solid #e8edf3;
  box-shadow:0 1px 2px rgba(15,23,42,.03);
}

.ngw-thumb img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:295/220;
  object-fit:cover;
  transition:transform .22s ease;
}

.ngw-item a:hover .ngw-thumb img{
  transform:scale(1.03);
}

.ngw-caption{
  margin:10px 2px 0;
  font-size:15px;
  line-height:1.65;
  font-weight:700;
  color:#111827;
  letter-spacing:-0.02em;
  word-break:keep-all;
}

@media (max-width:1024px){
  .ngw-list{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width:768px){
  .ngw-title{
    font-size:24px;
  }
  .ngw-list{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
  .ngw-caption{
    font-size:14px;
    line-height:1.55;
  }
}

@media (max-width:480px){
  .ngw-list{
    grid-template-columns:1fr;
  }
}




/* ===== 하우투 전용 스타일만 유지 ===== */

.sr-intro,
.sr-step-text{
  font-size:15px;
  line-height:1.9;
  color:#374151;
  letter-spacing:-0.01em;
}

.sr-intro{
  margin:0 0 16px;
}

.sr-group-title{
  margin:20px 0 12px;
  font-size:20px;
  line-height:1.5;
  font-weight:800;
  color:#111827;
  letter-spacing:-0.02em;
}

.sr-step{
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:16px;
  align-items:start;
  margin:0 0 14px;
  padding:16px;
  border:1px solid #e8edf3;
  border-radius:18px;
  background:#fff;
  box-shadow:0 1px 2px rgba(15,23,42,.03);
}

.sr-thumb{
  border-radius:14px;
  overflow:hidden;
  background:#f8fafc;
  border:1px solid #e8edf3;
}

.sr-thumb img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:1/1;
  object-fit:cover;
}

.sr-no{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:68px;
  height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#f3f6f9;
  color:#475569;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  margin:0 0 10px;
}

.sr-step-title{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.55;
  font-weight:800;
  color:#111827;
  letter-spacing:-0.02em;
}

.sr-box{
  margin:16px 0 0;
  padding:16px 18px;
  border:1px solid #e8edf3;
  border-radius:18px;
  background:#fbfcfe;
}

.sr-box-title{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.5;
  font-weight:800;
  color:#111827;
}

.sr-box ul{
  margin:0;
  padding-left:20px;
}

.sr-box li{
  margin:6px 0;
  font-size:15px;
  line-height:1.85;
  color:#374151;
}

@media (max-width:768px){
  .sr-step{
    grid-template-columns:1fr;
  }

  .sr-thumb img{
    aspect-ratio:auto;
  }
}





/* ==========================================================
   PT HERO STYLE 메인히어로
   적용 위치: 외모 > 사용자 정의하기 > 추가 CSS
   ========================================================== */

#pt-hero-main.pt-hero-main{
	position:relative;
	overflow:hidden;
	width:100%;
	min-height:clamp(560px, 78vh, 860px);
	background:#0f172a;
	isolation:isolate;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:0;
}

#pt-hero-main .pt-hero-bg{
	position:absolute;
	inset:0;
	z-index:0;
	background:#0f172a;
}

#pt-hero-main .pt-hero-bg::before{
	content:"";
	position:absolute;
	inset:0;
	z-index:2;
	background:
		linear-gradient(180deg, rgba(15,23,42,.40) 0%, rgba(15,23,42,.55) 50%, rgba(15,23,42,.72) 100%),
		linear-gradient(90deg, rgba(8,15,32,.72) 0%, rgba(8,15,32,.26) 45%, rgba(8,15,32,.58) 100%);
	pointer-events:none;
}

#pt-hero-main .pt-hero-bg::after{
	content:"";
	position:absolute;
	inset:0;
	z-index:3;
	background:
		radial-gradient(circle at 20% 30%, rgba(59,130,246,.20) 0%, rgba(59,130,246,0) 38%),
		radial-gradient(circle at 80% 25%, rgba(6,182,212,.16) 0%, rgba(6,182,212,0) 32%),
		radial-gradient(circle at 55% 85%, rgba(14,165,233,.14) 0%, rgba(14,165,233,0) 34%);
	pointer-events:none;
}

#pt-hero-main .pt-hero-bg .bg{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center center;
	opacity:0;
	transform:scale(1.04);
	animation:ptHeroFade 18s infinite;
	filter:brightness(.78) saturate(1.02);
}

#pt-hero-main .pt-hero-bg .bg-1{ animation-delay:0s; }
#pt-hero-main .pt-hero-bg .bg-2{ animation-delay:6s; }
#pt-hero-main .pt-hero-bg .bg-3{ animation-delay:12s; }

@keyframes ptHeroFade{
	0%   { opacity:0; transform:scale(1.06); }
	6%   { opacity:1; transform:scale(1.03); }
	28%  { opacity:1; transform:scale(1); }
	33%  { opacity:0; transform:scale(1.02); }
	100% { opacity:0; transform:scale(1.02); }
}

#pt-hero-main .main-visual{
	position:relative;
	z-index:5;
	width:100%;
	max-width:1360px;
	min-height:clamp(560px, 78vh, 860px);
	margin:0 auto;
	padding:clamp(72px, 9vw, 120px) 24px 96px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
	box-sizing:border-box;
}

#pt-hero-main .items{
	width:100%;
	max-width:1080px;
	position:relative;
	display:grid;
}

#pt-hero-main .item{
	grid-area:1 / 1;
	opacity:0;
	transform:translateY(16px);
	animation:ptTextFade 18s infinite;
	will-change:opacity, transform;
}

#pt-hero-main .item-1{ animation-delay:0s; }
#pt-hero-main .item-2{ animation-delay:6s; }
#pt-hero-main .item-3{ animation-delay:12s; }

@keyframes ptTextFade{
	0%   { opacity:0; transform:translateY(16px); }
	7%   { opacity:1; transform:translateY(0); }
	27%  { opacity:1; transform:translateY(0); }
	33%  { opacity:0; transform:translateY(-8px); }
	100% { opacity:0; transform:translateY(-8px); }
}

#pt-hero-main .contain{
	width:100%;
	display:flex;
	align-items:center;
	justify-content:center;
}

#pt-hero-main .txt-wrap{
	width:100%;
	max-width:980px;
	margin:0 auto;
	padding:0;
}

#pt-hero-main .h1,
#pt-hero-main #page-title{
	margin:0;
	font-size:clamp(38px, 7vw, 78px);
	line-height:1.08;
	font-weight:900;
	letter-spacing:-0.04em;
	color:#fff;
	text-shadow:0 10px 30px rgba(0,0,0,.24);
	word-break:keep-all;
}

#pt-hero-main .lead{
	max-width:860px;
	margin:20px auto 0;
	font-size:clamp(15px, 2vw, 22px);
	line-height:1.82;
	font-weight:500;
	letter-spacing:-0.02em;
	color:rgba(255,255,255,.94);
	word-break:keep-all;
	text-shadow:0 6px 24px rgba(0,0,0,.22);
}

#pt-hero-main .lead strong{
	color:#ffffff;
	font-weight:800;
}

#pt-hero-main .main_button{
	position:relative;
	z-index:6;
	width:100%;
	margin-top:34px;
	display:flex;
	justify-content:center;
}

#pt-hero-main .main_button > div{
	width:100%;
	display:flex;
	justify-content:center;
}

#pt-hero-main .cta{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:14px;
	flex-wrap:wrap;
}

#pt-hero-main .btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:220px;
	min-height:58px;
	padding:0 26px;
	border-radius:999px;
	font-size:16px;
	font-weight:800;
	letter-spacing:-0.02em;
	text-decoration:none !important;
	transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
	box-sizing:border-box;
	backdrop-filter:blur(8px);
	-webkit-backdrop-filter:blur(8px);
}

#pt-hero-main .btn:hover{
	transform:translateY(-2px);
}

#pt-hero-main .btn--tel{
	color:#fff;
	background:linear-gradient(135deg, #1d4ed8 0%, #2563eb 45%, #38bdf8 100%);
	box-shadow:0 14px 34px rgba(37,99,235,.34);
	border:1px solid rgba(255,255,255,.18);
}

#pt-hero-main .btn--tel:hover{
	box-shadow:0 18px 40px rgba(37,99,235,.42);
}

#pt-hero-main .btn--kakao{
	color:#fff;
	background:rgba(255,255,255,.12);
	border:1px solid rgba(255,255,255,.22);
	box-shadow:0 12px 28px rgba(15,23,42,.20);
}

#pt-hero-main .btn--kakao:hover{
	background:rgba(255,255,255,.18);
	box-shadow:0 16px 34px rgba(15,23,42,.24);
}

#pt-hero-main .pt-hero-lastmod{
	position:absolute;
	left:50%;
	bottom:26px;
	transform:translateX(-50%);
	z-index:6;
	display:inline-flex;
	align-items:center;
	gap:6px;
	padding:8px 14px;
	border-radius:999px;
	background:rgba(255,255,255,.10);
	border:1px solid rgba(255,255,255,.14);
	color:rgba(255,255,255,.88);
	font-size:12px;
	font-weight:600;
	line-height:1;
	letter-spacing:.01em;
	backdrop-filter:blur(8px);
	-webkit-backdrop-filter:blur(8px);
	white-space:nowrap;
}

@media (max-width: 991px){
	#pt-hero-main.pt-hero-main{
		min-height:640px;
	}

	#pt-hero-main .main-visual{
		min-height:640px;
		padding:88px 18px 96px;
	}

	#pt-hero-main .lead{
		line-height:1.72;
		margin-top:16px;
	}

	#pt-hero-main .cta{
		flex-direction:column;
		width:100%;
		max-width:420px;
		margin:0 auto;
	}

	#pt-hero-main .btn{
		width:100%;
		min-width:0;
		min-height:56px;
	}
}

@media (max-width: 767px){
	#pt-hero-main.pt-hero-main{
		min-height:600px;
	}

	#pt-hero-main .main-visual{
		min-height:600px;
		padding:76px 16px 90px;
	}

	#pt-hero-main .txt-wrap{
		max-width:100%;
	}

	#pt-hero-main .h1,
	#pt-hero-main #page-title{
		font-size:clamp(30px, 10vw, 46px);
		line-height:1.14;
	}

	#pt-hero-main .lead{
		font-size:15px;
		line-height:1.7;
		max-width:100%;
	}

	#pt-hero-main .main_button{
		margin-top:28px;
	}

	#pt-hero-main .btn{
		font-size:15px;
		padding:0 20px;
	}

	#pt-hero-main .pt-hero-lastmod{
		bottom:18px;
		font-size:11px;
		padding:7px 12px;
		max-width:calc(100% - 24px);
		overflow:hidden;
		text-overflow:ellipsis;
	}
}

@media (prefers-reduced-motion: reduce){
	#pt-hero-main .pt-hero-bg .bg,
	#pt-hero-main .item{
		animation:none !important;
		opacity:1 !important;
		transform:none !important;
	}

	#pt-hero-main .item:not(.item-1),
	#pt-hero-main .pt-hero-bg .bg:not(.bg-1){
		display:none !important;
	}
}


/* ==========================================================
   PONSUNGJI SUBPAGE COMMON UI
   - 공통 서브페이지 스타일
   - 히어로 아래 본문 영역부터 사용
   - 최신 한국형 모바일/커머스형 톤 반영
========================================================== */

/* ---------- 기본 래퍼 ---------- */
.pt-subpage-wrap{
  --pt-bg:#f5f7fb;
  --pt-surface:#ffffff;
  --pt-surface-2:#f8fbff;
  --pt-line:#e7edf5;
  --pt-line-strong:#d8e3f2;
  --pt-text:#111827;
  --pt-text-soft:#4b5563;
  --pt-text-faint:#6b7280;
  --pt-primary:#2563eb;
  --pt-primary-2:#1d4ed8;
  --pt-accent:#0ea5e9;
  --pt-danger:#ef4444;
  --pt-shadow:0 18px 50px rgba(15,23,42,0.08);
  --pt-shadow-soft:0 10px 30px rgba(15,23,42,0.05);
  --pt-radius-xl:28px;
  --pt-radius-lg:22px;
  --pt-radius-md:16px;
  --pt-radius-sm:12px;
  --pt-max:1240px;
  --pt-speed:.35s;
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(14,165,233,0.08), transparent 24%),
    linear-gradient(180deg,#f8fbff 0%,#f5f7fb 100%);
  color:var(--pt-text);
  overflow:hidden;
}

.pt-subpage-wrap *{
  box-sizing:border-box;
}

.pt-subpage-container{
  width:min(calc(100% - 32px), var(--pt-max));
  margin:0 auto;
  position:relative;
}

/* ---------- 섹션 공통 ---------- */
.pt-sub-section{
  position:relative;
  padding:28px 0;
}

.pt-sub-card{
  position:relative;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.7);
  border-radius:var(--pt-radius-xl);
  box-shadow:var(--pt-shadow);
  overflow:hidden;
}

.pt-sub-card-inner{
  padding:32px;
}

.pt-sub-card--soft{
  background:linear-gradient(180deg,#ffffff 0%,#f9fbff 100%);
  border:1px solid var(--pt-line);
  box-shadow:var(--pt-shadow-soft);
}

.pt-sub-grid{
  display:grid;
  gap:20px;
}

.pt-sub-grid--2{
  grid-template-columns:1.1fr .9fr;
}

.pt-sub-grid--3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

/* ---------- 상단 인트로 ---------- */
.pt-sub-top{
  padding:36px 0 18px;
}

.pt-sub-topbox{
  position:relative;
  padding:34px 34px 30px;
  border-radius:32px;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.96) 0%, rgba(29,78,216,0.95) 48%, rgba(14,165,233,0.95) 100%);
  color:#fff;
  box-shadow:0 28px 70px rgba(37,99,235,0.26);
}

.pt-sub-topbox::before{
  content:"";
  position:absolute;
  inset:auto -120px -120px auto;
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.pt-sub-topbox::after{
  content:"";
  position:absolute;
  inset:-100px auto auto -100px;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.pt-sub-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  letter-spacing:-0.02em;
  color:#e0edff;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  margin-bottom:14px;
}

.pt-sub-title{
  margin:0;
  font-size:clamp(30px,4vw,44px);
  line-height:1.15;
  letter-spacing:-0.04em;
  font-weight:900;
  color:#fff;
}

.pt-sub-desc{
  margin:14px 0 0;
  font-size:17px;
  line-height:1.8;
  letter-spacing:-0.02em;
  color:rgba(255,255,255,0.92);
}

.pt-sub-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.pt-sub-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  color:#fff;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.16);
}

/* ---------- 아이콘 배지 ---------- */
.pt-ico-badge{
  width:44px;
  height:44px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#eff6ff 0%,#dbeafe 100%);
  color:var(--pt-primary);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.75);
  flex:0 0 auto;
}

.pt-ico-badge svg{
  width:22px;
  height:22px;
  display:block;
  fill:currentColor;
}

/* ---------- 정보 배지형 박스 ---------- */
.pt-info-strip{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.pt-info-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:46px;
  padding:0 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  color:var(--pt-text);
  background:#fff;
  border:1px solid var(--pt-line);
  box-shadow:var(--pt-shadow-soft);
}

/* ---------- 목차 ---------- */
.pt-toc{
  position:relative;
}

.pt-toc-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.pt-toc-title{
  margin:0;
  font-size:26px;
  line-height:1.3;
  letter-spacing:-0.03em;
  font-weight:900;
  color:var(--pt-text);
}

.pt-toc-sub{
  margin:0;
  color:var(--pt-text-soft);
  font-size:15px;
  line-height:1.7;
}

.pt-toc-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.pt-toc-item{
  margin:0;
}

.pt-toc-link{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:14px;
  width:100%;
  min-height:88px;
  padding:18px 18px 18px 16px;
  border-radius:20px;
  text-decoration:none;
  color:var(--pt-text);
  background:linear-gradient(180deg,#ffffff 0%,#f9fbff 100%);
  border:1px solid var(--pt-line);
  box-shadow:var(--pt-shadow-soft);
  transition:transform var(--pt-speed), box-shadow var(--pt-speed), border-color var(--pt-speed);
}

.pt-toc-link:hover{
  transform:translateY(-3px);
  border-color:#bfd5ff;
  box-shadow:0 20px 40px rgba(37,99,235,0.12);
}

.pt-toc-num{
  width:40px;
  height:40px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg,var(--pt-primary) 0%, var(--pt-accent) 100%);
  flex:0 0 auto;
}

.pt-toc-text{
  display:block;
  padding-top:2px;
}

.pt-toc-text strong{
  display:block;
  font-size:16px;
  line-height:1.45;
  letter-spacing:-0.02em;
  font-weight:900;
  color:var(--pt-text);
}

.pt-toc-text span{
  display:block;
  margin-top:5px;
  font-size:13px;
  line-height:1.6;
  color:var(--pt-text-faint);
}

/* ---------- 본문 아티클 ---------- */
.pt-article{
  position:relative;
}

.pt-article-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.pt-article-title{
  margin:0;
  font-size:28px;
  line-height:1.3;
  letter-spacing:-0.03em;
  font-weight:900;
  color:var(--pt-text);
}

.pt-article-copy{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:var(--pt-text-soft);
}

.pt-article-block{
  position:relative;
  margin-top:18px;
  padding:26px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--pt-line);
  box-shadow:var(--pt-shadow-soft);
  scroll-margin-top:120px;
}

.pt-article-block:first-child{
  margin-top:0;
}

.pt-article-block h2{
  display:flex;
  align-items:center;
  gap:14px;
  margin:0 0 16px;
  font-size:24px;
  line-height:1.35;
  letter-spacing:-0.03em;
  font-weight:900;
  color:var(--pt-text);
}

.pt-article-block h2 .num{
  width:46px;
  height:46px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg,var(--pt-primary) 0%,var(--pt-accent) 100%);
  box-shadow:0 14px 24px rgba(37,99,235,0.2);
  flex:0 0 auto;
}

.pt-article-block p{
  margin:0 0 16px;
  font-size:16px;
  line-height:1.95;
  letter-spacing:-0.015em;
  color:var(--pt-text);
  word-break:keep-all;
}

.pt-article-block p:last-child{
  margin-bottom:0;
}

.pt-article-block a{
  color:var(--pt-primary-2);
  font-weight:800;
  text-decoration:none;
  border-bottom:1px solid rgba(37,99,235,0.22);
  transition:color var(--pt-speed), border-color var(--pt-speed);
}

.pt-article-block a:hover{
  color:#1e40af;
  border-color:rgba(30,64,175,0.38);
}

/* ---------- 포인트 박스 ---------- */
.pt-pointbox{
  margin-top:18px;
  padding:22px 22px 20px;
  border-radius:22px;
  background:linear-gradient(180deg,#eff6ff 0%,#f8fbff 100%);
  border:1px solid #dbeafe;
}

.pt-pointbox-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 12px;
  font-size:18px;
  line-height:1.45;
  letter-spacing:-0.02em;
  font-weight:900;
  color:#0f172a;
}

.pt-check-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.pt-check-list li{
  position:relative;
  padding-left:28px;
  color:var(--pt-text);
  font-size:15px;
  line-height:1.8;
}

.pt-check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:16px;
  height:16px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--pt-primary) 0%,var(--pt-accent) 100%);
  box-shadow:0 6px 12px rgba(37,99,235,0.22);
}

.pt-check-list li::after{
  content:"";
  position:absolute;
  left:5px;
  top:14px;
  width:6px;
  height:3px;
  border-left:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(-45deg);
}

/* ---------- 요약 / 박스형 정보 ---------- */
.pt-summary-box{
  padding:24px;
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid var(--pt-line);
  box-shadow:var(--pt-shadow-soft);
}

.pt-summary-box h3{
  margin:0 0 12px;
  font-size:20px;
  line-height:1.4;
  letter-spacing:-0.02em;
  font-weight:900;
  color:var(--pt-text);
}

.pt-summary-box p{
  margin:0;
  font-size:15px;
  line-height:1.85;
  color:var(--pt-text-soft);
}

/* ---------- 내부/외부 링크 카드 ---------- */
.pt-link-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.pt-link-card{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff 0%,#f9fbff 100%);
  border:1px solid var(--pt-line);
  box-shadow:var(--pt-shadow-soft);
  text-decoration:none;
  color:var(--pt-text);
  transition:transform var(--pt-speed), box-shadow var(--pt-speed), border-color var(--pt-speed);
}

.pt-link-card:hover{
  transform:translateY(-3px);
  border-color:#bfd5ff;
  box-shadow:0 18px 40px rgba(37,99,235,0.12);
}

.pt-link-card strong{
  display:block;
  margin:0 0 6px;
  font-size:16px;
  line-height:1.45;
  letter-spacing:-0.02em;
  font-weight:900;
  color:var(--pt-text);
}

.pt-link-card span{
  display:block;
  font-size:13px;
  line-height:1.7;
  color:var(--pt-text-faint);
}

/* ---------- CTA ---------- */
.pt-cta-box{
  position:relative;
  padding:30px;
  border-radius:30px;
  overflow:hidden;
  background:linear-gradient(135deg,#0f172a 0%,#1e3a8a 55%,#2563eb 100%);
  color:#fff;
  box-shadow:0 28px 70px rgba(30,58,138,0.22);
}

.pt-cta-box::before{
  content:"";
  position:absolute;
  right:-70px;
  bottom:-70px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,0.18), rgba(255,255,255,0));
}

.pt-cta-box h3{
  margin:0 0 12px;
  font-size:28px;
  line-height:1.25;
  letter-spacing:-0.03em;
  font-weight:900;
  color:#fff;
}

.pt-cta-box p{
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,0.9);
}

.pt-cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.pt-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:148px;
  min-height:52px;
  padding:0 20px;
  border-radius:999px;
  text-decoration:none;
  font-size:15px;
  font-weight:900;
  letter-spacing:-0.02em;
  transition:transform var(--pt-speed), box-shadow var(--pt-speed), opacity var(--pt-speed);
}

.pt-cta-btn:hover{
  transform:translateY(-2px);
}

.pt-cta-btn--light{
  color:#0f172a;
  background:#fff;
  box-shadow:0 14px 28px rgba(255,255,255,0.16);
}

.pt-cta-btn--ghost{
  color:#fff;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.2);
}

/* ---------- 브레드크럼 ---------- */
.pt-breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
  font-size:13px;
  line-height:1.6;
  color:var(--pt-text-faint);
}

.pt-breadcrumb a{
  color:var(--pt-text-faint);
  text-decoration:none;
}

.pt-breadcrumb a:hover{
  color:var(--pt-primary);
}

/* ---------- 공통 애니메이션 ---------- */
.pt-fade-up{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}

.pt-fade-up.is-visible{
  opacity:1;
  transform:none;
}

.pt-float{
  animation:ptFloat 4.6s ease-in-out infinite;
}

@keyframes ptFloat{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
  100%{ transform:translateY(0); }
}

/* ---------- 인라인 아이콘 ---------- */
.pt-inline-icon{
  width:1.15em;
  height:1.15em;
  vertical-align:-0.18em;
  margin-right:6px;
  fill:currentColor;
}

/* ---------- 반응형 ---------- */
@media (max-width: 1080px){
  .pt-sub-grid--2,
  .pt-sub-grid--3{
    grid-template-columns:1fr;
  }

  .pt-toc-list,
  .pt-link-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .pt-subpage-container{
    width:min(calc(100% - 24px), var(--pt-max));
  }

  .pt-sub-section{
    padding:20px 0;
  }

  .pt-sub-card-inner,
  .pt-article-block,
  .pt-summary-box,
  .pt-cta-box{
    padding:22px 18px;
  }

  .pt-sub-topbox{
    padding:26px 20px 22px;
    border-radius:24px;
  }

  .pt-sub-title{
    font-size:clamp(26px,8vw,34px);
  }

  .pt-sub-desc{
    font-size:15px;
    line-height:1.85;
  }

  .pt-toc-title,
  .pt-article-title{
    font-size:24px;
  }

  .pt-article-block h2{
    font-size:21px;
    gap:12px;
  }

  .pt-article-block h2 .num{
    width:42px;
    height:42px;
    border-radius:14px;
    font-size:15px;
  }

  .pt-article-block p{
    font-size:15px;
    line-height:1.9;
  }

  .pt-toc-link{
    min-height:auto;
    padding:16px 15px;
    border-radius:18px;
  }

  .pt-toc-num{
    width:36px;
    height:36px;
    border-radius:12px;
    font-size:13px;
  }

  .pt-cta-box h3{
    font-size:24px;
  }

  .pt-cta-btn{
    width:100%;
  }
}






/* =========================================================
   가전내구제 캐러셀 전용
   - 캐러셀만 최대 800px
   - 배너 영향 없음
   - 모바일에서는 가로 스와이프 슬라이드형
========================================================= */

/* 데스크톱/태블릿: 캐러셀만 폭 제한 */
.elementor-shortcode > .naver-grid-widget{
  width: 800px !important;
  max-width: calc(100% - 24px) !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.elementor-shortcode > .naver-grid-widget .ngw-list{
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.elementor-shortcode > .naver-grid-widget .ngw-item,
.elementor-shortcode > .naver-grid-widget .ngw-item > a,
.elementor-shortcode > .naver-grid-widget .ngw-thumb,
.elementor-shortcode > .naver-grid-widget .ngw-thumb img,
.elementor-shortcode > .naver-grid-widget .ngw-caption,
.elementor-shortcode > .naver-grid-widget .ngw-title{
  box-sizing: border-box !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.elementor-shortcode > .naver-grid-widget .ngw-thumb{
  overflow: hidden !important;
}

.elementor-shortcode > .naver-grid-widget .ngw-thumb img{
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

/* 모바일: 아래로 떨어지는 1열/2열 대신 가로 슬라이드형 */
@media (max-width: 768px){
  .elementor-shortcode > .naver-grid-widget{
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
  }

  .elementor-shortcode > .naver-grid-widget .ngw-list{
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 2px 8px !important;
    margin: 0 !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .elementor-shortcode > .naver-grid-widget .ngw-list::-webkit-scrollbar{
    display: none !important;
  }

  .elementor-shortcode > .naver-grid-widget .ngw-item{
    flex: 0 0 calc(78% - 6px) !important;
    max-width: calc(78% - 6px) !important;
    scroll-snap-align: start !important;
  }

  .elementor-shortcode > .naver-grid-widget .ngw-caption{
    font-size: 14px !important;
    line-height: 1.55 !important;
  }
}

/* 아주 작은 모바일 */
@media (max-width: 480px){
  .elementor-shortcode > .naver-grid-widget{
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
  }

  .elementor-shortcode > .naver-grid-widget .ngw-list{
    gap: 10px !important;
    padding-bottom: 6px !important;
  }

  .elementor-shortcode > .naver-grid-widget .ngw-item{
    flex: 0 0 84% !important;
    max-width: 84% !important;
  }

  .elementor-shortcode > .naver-grid-widget .ngw-title{
    font-size: 24px !important;
  }

  .elementor-shortcode > .naver-grid-widget .ngw-caption{
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
}






    /* =========================================
       가장 티 안 나는 얇은 접기 스타일
       - 기존 본문 구조 유지
       - 바깥 래퍼만 추가
    ========================================= */
    #bs-thin-fold{
      width:100%;
      margin:0;
      padding:0;
      box-sizing:border-box;
    }
    #bs-thin-fold *{
      box-sizing:border-box;
    }
    #bs-thin-fold-toggle{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:5px 0;
      margin:0 0 10px 0;
      border:0;
      background:transparent;
      cursor:pointer;
      appearance:none;
      -webkit-appearance:none;
      color:#767676;
      font-size:11px;
      line-height:1;
      letter-spacing:-0.02em;
    }
    #bs-thin-fold-toggle:focus{
      outline:none;
    }
    #bs-thin-fold-toggle .thin-line{
      display:block;
      width:100%;
      max-width:140px;
      height:1px;
      background:rgba(0,0,0,0.11);
      flex:0 0 auto;
    }
    #bs-thin-fold-toggle .thin-text{
      flex:0 0 auto;
      white-space:nowrap;
      opacity:.82;
    }
    #bs-thin-fold-toggle .thin-arrow{
      flex:0 0 auto;
      font-size:10px;
      opacity:.68;
      transform:translateY(-1px);
      transition:transform .18s ease;
    }
    #bs-thin-fold.open #bs-thin-fold-toggle .thin-arrow{
      transform:translateY(-1px) rotate(180deg);
    }
    #bs-thin-fold-content{
      max-height:0;
      overflow:hidden;
      opacity:0;
      transition:max-height .35s ease, opacity .22s ease;
    }
    #bs-thin-fold.open #bs-thin-fold-content{
      max-height:30000px;
      opacity:1;
    }











    #detective-kboard-thin-fold{
      position: relative;
      width: 100%;
      margin: 0 !important;
      padding: 0 !important;
    }

    #detective-kboard-thin-fold .dkf{
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
    }

    #detective-kboard-thin-fold .dkf > summary{
      list-style: none;
      cursor: pointer;
      position: relative;
      height: 16px;
      margin: 0 !important;
      padding: 0 !important;
      display: flex;
      align-items: center;
      justify-content: center;
      user-select: none;
      opacity: .52;
      transition: opacity .2s ease;
    }

    #detective-kboard-thin-fold .dkf > summary::-webkit-details-marker{
      display: none;
    }

    #detective-kboard-thin-fold .dkf > summary::before{
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      border-top: 1px solid rgba(0,0,0,.08);
    }

    #detective-kboard-thin-fold .dkf-handle{
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      height: 14px;
      padding: 0 8px;
      font-size: 9px;
      line-height: 1;
      letter-spacing: .02em;
      color: rgba(0,0,0,.42);
      background: rgba(255,255,255,.96);
      border: 1px solid rgba(0,0,0,.06);
      border-radius: 999px;
      box-shadow: 0 2px 8px rgba(0,0,0,.04);
      white-space: nowrap;
    }

    #detective-kboard-thin-fold .dkf-handle::before{
      content: "";
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(0,0,0,.22);
      flex: 0 0 4px;
    }

    #detective-kboard-thin-fold .dkf-handle .txt-close{
      display: none;
    }

    #detective-kboard-thin-fold .dkf[open] > summary{
      opacity: .85;
      margin-bottom: 10px !important;
    }

    #detective-kboard-thin-fold .dkf[open] .dkf-handle .txt-open{
      display: none;
    }

    #detective-kboard-thin-fold .dkf[open] .dkf-handle .txt-close{
      display: inline;
    }

    #detective-kboard-thin-fold .dkf-content{
      margin: 0 !important;
      padding: 0 !important;
    }

    #detective-kboard-thin-fold .kboard-latest *{
      box-sizing: border-box;
    }

    #detective-kboard-thin-fold .hs-wrap{
      font-family:'Noto Sans KR', sans-serif;
      color:#2d3748;
    }

    #detective-kboard-thin-fold .hs-hero{
      background:linear-gradient(135deg,#f5f9ff,#edf5ff);
      border:1px solid rgba(47,111,179,.10);
      border-radius:16px;
      padding:28px 24px;
      margin:0 0 24px 0;
      box-shadow:0 10px 24px rgba(20,61,107,.06);
    }

    #detective-kboard-thin-fold .hs-hero h2{
      margin:0 0 12px 0;
      font-size:2rem;
      line-height:1.28;
      font-weight:800;
      color:#143d6b;
      letter-spacing:-0.02em;
    }

    #detective-kboard-thin-fold .hs-hero p{
      margin:0;
      font-size:1rem;
      line-height:1.9;
      color:#38506a;
    }

    #detective-kboard-thin-fold .hs-chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:14px 0 0 0;
    }

    #detective-kboard-thin-fold .hs-chip{
      display:inline-flex;
      align-items:center;
      padding:7px 11px;
      border-radius:999px;
      background:#fff;
      color:#245b95;
      font-size:12px;
      font-weight:700;
      border:1px solid rgba(47,111,179,.12);
    }

    #detective-kboard-thin-fold .hs-toc{
      background:#fff;
      border:1px solid rgba(47,111,179,.10);
      border-radius:16px;
      padding:22px;
      margin:0 0 26px 0;
      box-shadow:0 8px 18px rgba(20,61,107,.04);
    }

    #detective-kboard-thin-fold .hs-toc-title{
      margin:0 0 14px 0;
      font-size:18px;
      font-weight:800;
      color:#143d6b;
    }

    #detective-kboard-thin-fold .hs-toc-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
    }

    #detective-kboard-thin-fold .hs-toc a{
      display:block;
      text-decoration:none;
      color:#245b95;
      font-size:14px;
      line-height:1.7;
      font-weight:600;
      padding:10px 12px;
      border-radius:12px;
      background:#f7fbff;
      border:1px solid rgba(47,111,179,.08);
    }

    #detective-kboard-thin-fold .hs-post{
      border:1px solid rgba(47,111,179,.10);
      border-radius:18px;
      padding:24px;
      margin:0 0 22px 0;
      background:#fff;
      box-shadow:0 10px 24px rgba(20,61,107,.05);
    }

    #detective-kboard-thin-fold .hs-no{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:72px;
      height:30px;
      padding:0 12px;
      border-radius:999px;
      background:#143d6b;
      color:#fff;
      font-size:12px;
      font-weight:800;
      margin:0 0 14px 0;
      letter-spacing:.06em;
    }

    #detective-kboard-thin-fold .hs-post h2{
      margin:0 0 12px 0;
      font-size:1.58rem;
      line-height:1.35;
      font-weight:800;
      color:#143d6b;
      letter-spacing:-0.02em;
    }

    #detective-kboard-thin-fold .hs-post h3{
      margin:20px 0 10px 0;
      font-size:1.15rem;
      line-height:1.5;
      font-weight:800;
      color:#1f5d98;
      letter-spacing:-0.01em;
    }

    #detective-kboard-thin-fold .hs-post p{
      margin:0 0 14px 0;
      font-size:1rem;
      line-height:1.9;
      color:#2d3748;
    }

    #detective-kboard-thin-fold .hs-lead{
      font-size:1.04rem;
      color:#38506a;
      font-weight:600;
    }

    #detective-kboard-thin-fold .hs-point{
      background:linear-gradient(135deg,#f5f9ff,#eef6ff);
      border-left:4px solid #2f6fb3;
      border-radius:14px;
      padding:18px 18px 16px;
      margin:16px 0;
    }

    #detective-kboard-thin-fold .hs-point b{
      display:block;
      margin:0 0 10px 0;
      font-size:15px;
      color:#143d6b;
    }

    #detective-kboard-thin-fold .hs-point ul,
    #detective-kboard-thin-fold .hs-post-toc ol{
      margin:0;
      padding-left:18px;
    }

    #detective-kboard-thin-fold .hs-point li,
    #detective-kboard-thin-fold .hs-post-toc li{
      margin:0 0 8px 0;
      line-height:1.8;
      color:#35516f;
    }

    #detective-kboard-thin-fold .hs-mini-table{
      width:100%;
      border-collapse:collapse;
      margin:18px 0;
    }

    #detective-kboard-thin-fold .hs-mini-table th,
    #detective-kboard-thin-fold .hs-mini-table td{
      border:1px solid #d9e7f7;
      padding:12px;
      text-align:left;
      font-size:14px;
      line-height:1.7;
      vertical-align:top;
    }

    #detective-kboard-thin-fold .hs-mini-table th{
      background:#2f6fb3;
      color:#fff;
      font-weight:800;
    }

    #detective-kboard-thin-fold .hs-mini-table tr:nth-child(even) td{
      background:#f7fbff;
    }

    #detective-kboard-thin-fold .hs-faq{
      border-top:1px dashed rgba(47,111,179,.18);
      margin-top:18px;
      padding-top:16px;
    }

    #detective-kboard-thin-fold .hs-faq-q{
      margin:0 0 8px 0;
      font-size:15px;
      font-weight:800;
      color:#1f5d98;
    }

    #detective-kboard-thin-fold .hs-faq-a{
      margin:0 0 12px 0;
      font-size:15px;
      line-height:1.85;
      color:#41556b;
    }

    #detective-kboard-thin-fold .hs-keywords{
      margin:16px 0 0 0;
      font-size:.94rem;
      line-height:1.8;
      color:#245b95;
      font-weight:600;
    }

    #detective-kboard-thin-fold .hs-post-toc{
      background:#f8fbff;
      border:1px solid rgba(47,111,179,.08);
      border-radius:14px;
      padding:16px;
      margin:14px 0 18px 0;
    }

    #detective-kboard-thin-fold .hs-post-toc b{
      display:block;
      margin-bottom:10px;
      color:#143d6b;
      font-size:15px;
    }

    @media (max-width: 768px){
      #detective-kboard-thin-fold .dkf > summary{
        height: 14px;
      }

      #detective-kboard-thin-fold .dkf-handle{
        height: 12px;
        padding: 0 7px;
        font-size: 8px;
      }

      #detective-kboard-thin-fold .hs-hero{
        padding:22px 18px;
      }

      #detective-kboard-thin-fold .hs-hero h2{
        font-size:1.62rem;
      }

      #detective-kboard-thin-fold .hs-post{
        padding:20px 16px;
      }

      #detective-kboard-thin-fold .hs-post h2{
        font-size:1.34rem;
      }

      #detective-kboard-thin-fold .hs-toc-grid{
        grid-template-columns:1fr;
      }
    }




  .main-add-section{padding:0;margin:0}
  .xet-container{max-width:1180px;margin:0 auto;padding:0 18px}
  .main__container{width:100%}
  .nw-box,.faq,.warn,.nw-callout{
    background:#fff;border:1px solid #ece7db;border-radius:18px;
    box-shadow:0 8px 24px rgba(17,24,39,.05)
  }
  .nw-box{padding:18px 20px}
  .nw-infobox,.table{width:100%;border-collapse:collapse}
  .nw-infobox th,.nw-infobox td,.table th,.table td{
    border-bottom:1px solid #f0ebe2;padding:14px 14px;text-align:left;vertical-align:top
  }
  .nw-infobox tr:last-child th,.nw-infobox tr:last-child td,
  .table tr:last-child th,.table tr:last-child td{border-bottom:0}
  .nw-infobox th,.table th{width:160px;background:#fff8ea;color:#7a5400;font-weight:800}
  .nw-toc{background:#fff;border:1px solid #ece7db;border-radius:18px;padding:18px 20px;margin:0 0 18px;box-shadow:0 8px 24px rgba(17,24,39,.04)}
  .nw-toc strong{display:block;margin-bottom:10px}
  .nw-toc ol{margin:0;padding-left:18px}
  .nw-toc li{margin:7px 0}
  .nw-tag{
    display:inline-flex;align-items:center;gap:6px;padding:7px 12px;border-radius:999px;
    background:#fff8ea;border:1px solid #f0d9a8;color:#8a5d00;font-size:13px;font-weight:700;margin:0 8px 8px 0
  }
  .nw-hr{border:none;border-top:1px solid #efe7d6;margin:16px 0 20px}
  .nw-callout,.warn{padding:16px 18px;margin:0 0 18px;background:linear-gradient(180deg,#fffaf0 0%,#fff 100%)}
  .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:0 0 18px}
  .card{
    background:#fff;border:1px solid #ece7db;border-radius:18px;padding:18px 18px 16px;
    box-shadow:0 8px 24px rgba(17,24,39,.04)
  }
  .card b{display:block;margin-bottom:8px}
  .card ul,.nw-box ul,.warn ul,.nw-callout ul,.table ul{margin:0 0 0 18px}
  .small{font-size:13px;color:#6b7280}
  .faq{padding:16px 18px;margin:0 0 14px}
  .faq b{display:block;margin-bottom:8px}
  .disclaimer{display:block;margin:16px 0 0;color:#6b7280;font-size:13px;line-height:1.8}

  .guide-onefold{max-width:1180px;margin:0 auto;padding:0 18px 24px}
  .guide-onefold details{border:1px solid #ece7db;border-radius:24px;background:linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);box-shadow:0 12px 30px rgba(17,24,39,.06);overflow:hidden}
  .guide-onefold summary{list-style:none;cursor:pointer;padding:22px 22px 18px;position:relative;background:radial-gradient(circle at top right, rgba(205,151,49,.12), transparent 28%),linear-gradient(135deg,#ffffff 0%,#fffaf0 100%)}
  .guide-onefold summary::-webkit-details-marker{display:none}
  .guide-onefold details[open] summary{border-bottom:1px solid #ece7db}
  .guide-onefold .fold-kicker{display:inline-flex;align-items:center;gap:6px;padding:7px 12px;border-radius:999px;background:#fff8ea;border:1px solid #f0d9a8;color:#8a5d00;font-size:13px;font-weight:800}
  .guide-onefold .fold-title{display:block;margin:12px 56px 6px 0;color:#111827;font-size:30px;font-weight:900;line-height:1.25}
  .guide-onefold .fold-desc{display:block;margin:0 56px 0 0;color:#4b5563;font-size:15px;line-height:1.7}
  .guide-onefold .fold-state{position:absolute;top:20px;right:64px;display:inline-flex;align-items:center;justify-content:center;min-height:36px;padding:8px 14px;border-radius:999px;border:1px solid #ead7ae;background:#ffffff;color:#8c6b21;font-size:12px;font-weight:900;line-height:1;white-space:nowrap}
  .guide-onefold .fold-state .open{display:none}
  .guide-onefold details[open] .fold-state .closed{display:none}
  .guide-onefold details[open] .fold-state .open{display:inline}
  .guide-onefold .fold-arrow{position:absolute;top:18px;right:18px;width:40px;height:40px;border-radius:50%;border:1px solid #ead7ae;background:#fffefb;transition:transform .22s ease, background .22s ease, border-color .22s ease}
  .guide-onefold .fold-arrow::before,.guide-onefold .fold-arrow::after{content:"";position:absolute;top:19px;width:9px;height:2px;background:#8f6814;border-radius:2px}
  .guide-onefold .fold-arrow::before{left:11px;transform:rotate(45deg)}
  .guide-onefold .fold-arrow::after{right:11px;transform:rotate(-45deg)}
  .guide-onefold details[open] .fold-arrow{transform:rotate(180deg);background:#fff6e5;border-color:#e6d0a0}
  .guide-onefold .fold-panel{padding-top:8px}

  @media (max-width:780px){
    .grid{grid-template-columns:1fr}
    .nw-infobox,.nw-infobox tbody,.nw-infobox tr,.nw-infobox th,.nw-infobox td,
    .table,.table tbody,.table tr,.table th,.table td{display:block;width:100%}
    .nw-infobox th,.nw-infobox td,.table th,.table td{border-bottom:0;padding:10px 12px}
    .nw-infobox tr,.table tr{border-bottom:1px solid #f0ebe2}
    .h2.title{font-size:28px}
    .guide-onefold{padding:0 12px 20px}
    .guide-onefold summary{padding:18px 18px 16px}
    .guide-onefold .fold-title{font-size:24px;margin-right:52px}
    .guide-onefold .fold-desc{margin-right:52px;font-size:14px}
    .guide-onefold .fold-state{right:56px;top:16px;padding:8px 10px;font-size:11px}
    .guide-onefold .fold-arrow{right:14px;top:14px;width:36px;height:36px}
    .guide-onefold .fold-arrow::before,.guide-onefold .fold-arrow::after{top:17px;width:8px}
    .guide-onefold .fold-arrow::before{left:10px}
    .guide-onefold .fold-arrow::after{right:10px}
  }







  .guide-onefold{margin:0;padding:0;}
  .guide-onefold details{
    border:0;
    border-radius:0;
    background:transparent;
    overflow:visible;
  }
  .guide-onefold summary{
    list-style:none;
    cursor:pointer;
    padding:6px 2px;
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:nowrap;
    background:transparent;
    border:0;
  }
  .guide-onefold summary::-webkit-details-marker{display:none;}
  .guide-onefold .fold-kicker{display:none;}
  .guide-onefold .fold-title{
    flex:1 1 auto;
    min-width:0;
    font-size:12px;
    font-weight:500;
    color:rgba(17,24,39,.52);
    letter-spacing:-0.01em;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .guide-onefold .fold-desc{display:none;}
  .guide-onefold .fold-state{
    margin-left:auto;
    display:inline-flex;
    align-items:center;
    gap:4px;
    font-size:11px;
    line-height:1;
    color:rgba(107,114,128,.55);
    white-space:nowrap;
  }
  .guide-onefold .fold-state .open{display:none;}
  .guide-onefold details[open] .fold-state .closed{display:none;}
  .guide-onefold details[open] .fold-state .open{display:inline;}
  .guide-onefold .fold-arrow{
    width:6px;
    height:6px;
    border-right:1px solid rgba(156,163,175,.55);
    border-bottom:1px solid rgba(156,163,175,.55);
    transform:rotate(45deg);
    transition:transform .18s ease;
    margin-top:-2px;
    flex:0 0 auto;
  }
  .guide-onefold details[open] .fold-arrow{
    transform:rotate(-135deg);
    margin-top:1px;
  }
  .guide-onefold .fold-panel{
    border-top:0;
    padding-top:0;
  }
  @media (max-width:768px){
    .guide-onefold summary{padding:5px 0;gap:6px;}
    .guide-onefold .fold-title{font-size:11px;}
    .guide-onefold .fold-state{font-size:10px;}
  }









    #detective-kboard-thin-fold{
      position: relative;
      width: 100%;
      margin: 0 !important;
      padding: 0 !important;
    }

    #detective-kboard-thin-fold .dkf{
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
    }

    #detective-kboard-thin-fold .dkf > summary{
      list-style: none;
      cursor: pointer;
      position: relative;
      height: 16px;
      margin: 0 !important;
      padding: 0 !important;
      display: flex;
      align-items: center;
      justify-content: center;
      user-select: none;
      opacity: .52;
      transition: opacity .2s ease;
    }

    #detective-kboard-thin-fold .dkf > summary::-webkit-details-marker{
      display: none;
    }

    #detective-kboard-thin-fold .dkf > summary::before{
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      border-top: 1px solid rgba(0,0,0,.08);
    }

    #detective-kboard-thin-fold .dkf-handle{
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      height: 14px;
      padding: 0 8px;
      font-size: 9px;
      line-height: 1;
      letter-spacing: .02em;
      color: rgba(0,0,0,.42);
      background: rgba(255,255,255,.96);
      border: 1px solid rgba(0,0,0,.06);
      border-radius: 999px;
      box-shadow: 0 2px 8px rgba(0,0,0,.04);
      white-space: nowrap;
    }

    #detective-kboard-thin-fold .dkf-handle::before{
      content: "";
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(0,0,0,.22);
      flex: 0 0 4px;
    }

    #detective-kboard-thin-fold .dkf[open] > summary{
      opacity: .85;
      margin-bottom: 10px !important;
    }

    #detective-kboard-thin-fold .dkf-content{
      margin: 0 !important;
      padding: 0 !important;
    }

    /* KBoard 최신글 가로형 */
    #detective-kboard-thin-fold #kboard-thumbnail-latest,
    #detective-kboard-thin-fold .kboard-thumbnail-latest,
    #detective-kboard-thin-fold .kboard-latest{
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
    }

    #detective-kboard-thin-fold #kboard-thumbnail-latest ul,
    #detective-kboard-thin-fold .kboard-thumbnail-latest ul,
    #detective-kboard-thin-fold .kboard-latest ul{
      display: flex !important;
      gap: 10px !important;
      list-style: none !important;
      padding: 0 !important;
      margin: 0 !important;
      min-width: max-content !important;
    }

    #detective-kboard-thin-fold #kboard-thumbnail-latest ul li,
    #detective-kboard-thin-fold .kboard-thumbnail-latest ul li,
    #detective-kboard-thin-fold .kboard-latest ul li{
      width: 150px !important;
      min-width: 150px !important;
      flex: 0 0 150px !important;
      flex-shrink: 0 !important;
    }

    #detective-kboard-thin-fold #kboard-thumbnail-latest ul li img,
    #detective-kboard-thin-fold .kboard-thumbnail-latest ul li img,
    #detective-kboard-thin-fold .kboard-latest ul li img{
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }

    /* 너무 튀지 않게 텍스트/메타 정리 */
    #detective-kboard-thin-fold .kboard-latest *{
      box-sizing: border-box;
    }

    @media (max-width: 768px){
      #detective-kboard-thin-fold .dkf > summary{
        height: 14px;
      }

      #detective-kboard-thin-fold .dkf-handle{
        height: 12px;
        padding: 0 7px;
        font-size: 8px;
      }

      #detective-kboard-thin-fold #kboard-thumbnail-latest ul li,
      #detective-kboard-thin-fold .kboard-thumbnail-latest ul li,
      #detective-kboard-thin-fold .kboard-latest ul li{
        width: 130px !important;
        min-width: 130px !important;
        flex: 0 0 130px !important;
      }
    }








    :root{
        --bg:#f4f7fb;
        --bg-soft:#edf3f9;
        --surface:#ffffff;
        --surface-2:#f8fbff;
        --text:#111827;
        --sub:#4b5563;
        --muted:#6b7280;
        --line:#dde6ef;
        --line-strong:#c9d6e4;
        --primary:#1e40af;
        --primary-2:#0f766e;
        --primary-3:#2563eb;
        --dark:#0b1220;
        --dark-2:#111827;
        --shadow-sm:0 10px 24px rgba(15,23,42,.06);
        --shadow:0 20px 48px rgba(15,23,42,.08);
        --shadow-lg:0 30px 80px rgba(15,23,42,.12);
        --radius-xs:14px;
        --radius-sm:18px;
        --radius:28px;
        --radius-lg:36px;
    }

    *{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }

    body{
        font-family:'Pretendard',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
        line-height:1.7;
        color:var(--text);
        background:
            radial-gradient(circle at 0% 0%, rgba(37,99,235,.06) 0, transparent 28%),
            radial-gradient(circle at 100% 10%, rgba(15,118,110,.05) 0, transparent 24%),
            linear-gradient(180deg,#f8fbff 0%,#f4f7fb 52%,#eef3f8 100%);
        overflow-x:hidden;
        letter-spacing:-0.01em;
    }

    .container{
        max-width:1280px;
        margin:0 auto;
        padding:0 20px;
    }

    .h1, .h2, .h3{
        margin:0;
        padding:0;
        font-size:inherit;
        font-weight:inherit;
        line-height:inherit;
        color:inherit;
    }

    /* Hero */
    .hero-banner{
        min-height:100vh;
        background:
            radial-gradient(circle at 20% 20%, rgba(37,99,235,.22), transparent 28%),
            radial-gradient(circle at 80% 25%, rgba(15,118,110,.16), transparent 20%),
            linear-gradient(135deg,#09111f 0%,#0f172a 52%,#11233d 100%);
        display:flex;
        align-items:center;
        justify-content:center;
        color:#fff;
        text-align:center;
        position:relative;
        overflow:hidden;
    }

    .hero-banner::before{
        content:'';
        position:absolute;
        inset:0;
        background:
            linear-gradient(120deg, rgba(255,255,255,.08), transparent 34%),
            linear-gradient(300deg, rgba(255,255,255,.03), transparent 45%);
        z-index:1;
    }

    .hero-banner::after{
        content:'';
        position:absolute;
        width:44vw;
        height:44vw;
        right:-10vw;
        bottom:-16vw;
        border-radius:50%;
        background:radial-gradient(circle, rgba(59,130,246,.20) 0%, rgba(59,130,246,0) 72%);
        filter:blur(20px);
        z-index:1;
    }

    .hero-content{
        max-width:1100px;
        padding:0 30px;
        position:relative;
        z-index:2;
        animation:fadeInUp .9s ease-out;
    }

    .hero-title{
        font-size:clamp(2.6rem,7vw,5.8rem);
        font-weight:800;
        margin-bottom:18px;
        letter-spacing:-0.04em;
        line-height:1.04;
        word-break:keep-all;
    }

    .hero-subtitle{
        max-width:860px;
        margin:0 auto 34px;
        font-size:clamp(1rem,2.4vw,1.45rem);
        font-weight:400;
        opacity:.9;
        line-height:1.7;
        word-break:keep-all;
    }

    .cta-button{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        min-height:58px;
        padding:0 28px;
        background:rgba(255,255,255,.09);
        border:1px solid rgba(255,255,255,.2);
        color:#fff;
        text-decoration:none;
        border-radius:999px;
        font-weight:700;
        font-size:16px;
        backdrop-filter:blur(16px);
        transition:all .25s ease;
        box-shadow:0 16px 38px rgba(0,0,0,.18);
    }

    .cta-button:hover{
        transform:translateY(-2px);
        background:rgba(255,255,255,.14);
        border-color:rgba(255,255,255,.34);
    }

    /* Main */
    .main-content{
        max-width:1360px;
        margin:0 auto;
        padding:96px 28px 100px;
    }

    .section{
        margin-bottom:120px;
        position:relative;
    }

    .section-title{
        max-width:940px;
        margin:0 auto 52px;
        font-size:clamp(1.9rem,4.6vw,3.25rem);
        font-weight:800;
        text-align:center;
        color:var(--text);
        letter-spacing:-0.035em;
        line-height:1.24;
        word-break:keep-all;
    }

    .content-grid{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:24px;
        margin-bottom:20px;
    }

    .content-card{
        position:relative;
        background:linear-gradient(180deg,#ffffff 0%,#f9fbfe 100%);
        padding:34px 30px;
        border-radius:var(--radius);
        border:1px solid var(--line);
        box-shadow:var(--shadow);
        overflow:hidden;
        transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .content-card::before{
        content:'';
        position:absolute;
        inset:0 0 auto 0;
        height:4px;
        background:linear-gradient(90deg,var(--primary),var(--primary-2));
    }

    .content-card::after{
        content:'';
        position:absolute;
        top:-50px;
        right:-30px;
        width:120px;
        height:120px;
        border-radius:50%;
        background:radial-gradient(circle, rgba(37,99,235,.08) 0, rgba(37,99,235,0) 72%);
        pointer-events:none;
    }

    .content-card:hover{
        transform:translateY(-6px);
        box-shadow:var(--shadow-lg);
        border-color:var(--line-strong);
    }

    .card-title{
        font-size:clamp(1.12rem,2.6vw,1.42rem);
        font-weight:800;
        margin-bottom:14px;
        color:var(--text);
        line-height:1.45;
        word-break:keep-all;
    }

    .card-content{
        font-size:clamp(.95rem,2.2vw,1rem);
        line-height:1.95;
        color:var(--sub);
        word-break:keep-all;
    }

    /* Feature */
    .feature-section{
        position:relative;
        background:
            radial-gradient(circle at 15% 20%, rgba(59,130,246,.18), transparent 24%),
            radial-gradient(circle at 85% 18%, rgba(20,184,166,.12), transparent 22%),
            linear-gradient(135deg,#09111f 0%,#111827 56%,#12253f 100%);
        padding:86px 30px;
        margin:78px 0;
        border-radius:var(--radius-lg);
        overflow:hidden;
        box-shadow:0 28px 80px rgba(15,23,42,.18);
    }

    .feature-section .section-title{
        color:#fff;
        position:relative;
        z-index:1;
    }

    .feature-grid{
        display:grid;
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:20px;
        max-width:1280px;
        margin:0 auto;
        position:relative;
        z-index:1;
    }

    .feature-item{
        text-align:left;
        padding:30px 26px;
        border-radius:24px;
        background:rgba(255,255,255,.06);
        border:1px solid rgba(255,255,255,.12);
        backdrop-filter:blur(14px);
    }

    .feature-icon{
        width:72px;
        height:72px;
        background:linear-gradient(135deg,#2563eb,#0f766e);
        border-radius:20px;
        margin:0 0 22px;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:1.9rem;
        color:#fff;
        box-shadow:0 14px 30px rgba(37,99,235,.22);
    }

    .feature-title{
        font-size:clamp(1.08rem,2.5vw,1.24rem);
        font-weight:800;
        margin-bottom:10px;
        color:#fff;
        line-height:1.4;
        word-break:keep-all;
    }

    .feature-desc{
        color:rgba(255,255,255,.82);
        line-height:1.85;
        font-size:clamp(.92rem,2vw,1rem);
        word-break:keep-all;
    }

    /* CTA */
    .cta-section{
        text-align:center;
        padding:92px 28px;
        background:
            radial-gradient(circle at 15% 20%, rgba(59,130,246,.18), transparent 25%),
            radial-gradient(circle at 82% 22%, rgba(20,184,166,.12), transparent 20%),
            linear-gradient(135deg,#08111f 0%,#111827 54%,#0f2036 100%);
        color:#fff;
        border-radius:var(--radius-lg);
        margin-top:70px;
        overflow:hidden;
        box-shadow:0 30px 90px rgba(15,23,42,.20);
    }

    .cta-title{
        font-size:clamp(2rem,5.5vw,3.6rem);
        font-weight:800;
        margin-bottom:18px;
        letter-spacing:-0.035em;
        line-height:1.2;
        word-break:keep-all;
    }

    .cta-desc{
        max-width:760px;
        margin:0 auto 34px;
        font-size:clamp(1rem,2.5vw,1.18rem);
        opacity:.85;
        line-height:1.8;
        word-break:keep-all;
    }

    .cta-buttons{
        display:flex;
        gap:14px;
        justify-content:center;
        flex-wrap:wrap;
    }

    .btn-primary{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        min-height:58px;
        padding:0 28px;
        background:linear-gradient(135deg,#2563eb,#0f766e);
        color:#fff;
        text-decoration:none;
        border-radius:999px;
        font-weight:800;
        font-size:16px;
        transition:all .25s ease;
        box-shadow:0 16px 36px rgba(37,99,235,.24);
    }

    .btn-primary:hover{
        transform:translateY(-2px);
        box-shadow:0 22px 44px rgba(37,99,235,.28);
    }

    .btn-secondary{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        min-height:58px;
        padding:0 28px;
        background:rgba(255,255,255,.06);
        color:#fff;
        text-decoration:none;
        border:1px solid rgba(255,255,255,.16);
        border-radius:999px;
        font-weight:800;
        font-size:16px;
        transition:all .25s ease;
        backdrop-filter:blur(10px);
    }

    .btn-secondary:hover{
        transform:translateY(-2px);
        background:rgba(255,255,255,.10);
        border-color:rgba(255,255,255,.28);
    }

    /* Footer */
    .footer{
        background:#08111d;
        color:#9cb0c4;
        padding:54px 24px 30px;
        text-align:center;
        border-top:1px solid rgba(255,255,255,.05);
    }

    .footer-content{
        max-width:1280px;
        margin:0 auto;
    }

    .footer-links{
        display:flex;
        justify-content:center;
        gap:16px 28px;
        margin-bottom:22px;
        flex-wrap:wrap;
    }

    .footer-links a{
        color:#c7d5e3;
        text-decoration:none;
        transition:color .25s ease, opacity .25s ease;
        opacity:.88;
    }

    .footer-links a:hover{
        color:#fff;
        opacity:1;
    }

    .footer-text{
        font-size:.92rem;
        color:#90a3b8;
    }

    /* Reviews - PC 한 줄 오류 강제 차단 */
    #reviews{
        display:block !important;
        width:100% !important;
        margin:0 !important;
        padding:0 !important;
        clear:both !important;
    }

    #reviews .container{
        max-width:1200px !important;
        margin:0 auto !important;
        padding:0 20px !important;
        display:grid !important;
        grid-template-columns:minmax(0,1fr) !important;
        gap:16px !important;
        width:100% !important;
        float:none !important;
        flex:none !important;
    }

    #reviews .section-title{
        width:100% !important;
        margin:0 auto 38px !important;
        grid-column:1 / -1 !important;
    }

    #reviews .review-card{
        display:block !important;
        width:100% !important;
        max-width:none !important;
        min-width:0 !important;
        margin:0 !important;
        grid-column:1 / -1 !important;
        float:none !important;
        clear:both !important;
        position:relative;
        overflow:hidden;
        padding:26px 28px;
        border-radius:24px;
        background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
        border:1px solid var(--line);
        box-shadow:var(--shadow-sm);
        transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        opacity:0;
        animation:fadeInUp .6s ease forwards;
    }

    #reviews .review-card::before{
        content:'';
        position:absolute;
        inset:0 0 auto 0;
        height:3px;
        background:linear-gradient(90deg,var(--primary),var(--primary-2));
    }

    #reviews .review-card::after{
        content:'';
        position:absolute;
        right:-36px;
        top:-44px;
        width:120px;
        height:120px;
        border-radius:50%;
        background:radial-gradient(circle, rgba(37,99,235,.08) 0, rgba(37,99,235,0) 72%);
        pointer-events:none;
    }

    #reviews .review-card:hover{
        transform:translateY(-4px);
        box-shadow:var(--shadow);
        border-color:var(--line-strong);
    }

    #reviews .review-header{
        display:flex !important;
        justify-content:space-between !important;
        align-items:flex-start !important;
        gap:16px !important;
        margin-bottom:12px !important;
        position:relative;
        z-index:1;
    }

    #reviews .reviewer-name{
        font-weight:800;
        color:var(--text);
        font-size:1.04rem;
        line-height:1.4;
    }

    #reviews .reviewer-location{
        color:var(--muted);
        font-size:.92rem;
        margin-top:4px;
        line-height:1.5;
    }

    #reviews .rating{
        display:inline-flex !important;
        align-items:center !important;
        justify-content:center !important;
        white-space:nowrap !important;
        min-width:96px !important;
        min-height:40px !important;
        padding:0 14px !important;
        border-radius:999px !important;
        background:#eff6ff !important;
        border:1px solid #d8e6ff !important;
        color:#1d4ed8 !important;
        font-size:.88rem !important;
        font-weight:800 !important;
        flex:0 0 auto !important;
    }

    #reviews .review-content{
        color:var(--sub);
        line-height:1.88;
        font-size:.97rem;
        position:relative;
        z-index:1;
        word-break:keep-all;
    }

    .review-card:nth-child(2){ animation-delay:0.06s; }
    .review-card:nth-child(3){ animation-delay:0.12s; }
    .review-card:nth-child(4){ animation-delay:0.18s; }
    .review-card:nth-child(5){ animation-delay:0.24s; }
    .review-card:nth-child(6){ animation-delay:0.30s; }
    .review-card:nth-child(7){ animation-delay:0.36s; }

    /* FAQ */
    #pt-faq-karen{
        --pt-bg:#ffffff;
        --pt-card:#ffffff;
        --pt-soft:#f5f9ff;
        --pt-line:#dbe6f2;
        --pt-text:#111827;
        --pt-sub:#5d6b7d;
        --pt-accent:#1e40af;
        --pt-accent-2:#0f766e;
        --pt-point:#eef5ff;
        --pt-point-2:#dbeafe;
        --pt-shadow:0 14px 34px rgba(15,23,42,.08);
        --pt-radius:24px;
        position:relative;
        width:100%;
        margin:0;
        padding:40px 20px;
        background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
        box-sizing:border-box;
        font-family:'Pretendard','Noto Sans KR',sans-serif;
        border-radius:32px;
        border:1px solid var(--line);
        box-shadow:var(--shadow);
    }

    #pt-faq-karen *{
        box-sizing:border-box;
    }

    #pt-faq-karen .pt-faq-karen-wrap{
        max-width:1200px;
        margin:0 auto;
    }

    #pt-faq-karen .pt-faq-karen-head{
        text-align:center;
        margin-bottom:26px;
    }

    #pt-faq-karen .pt-faq-karen-eyebrow{
        display:inline-flex;
        align-items:center;
        gap:8px;
        padding:8px 14px;
        border:1px solid #d9e5f2;
        border-radius:999px;
        background:#fff;
        color:#4b5b6c;
        font-size:13px;
        font-weight:800;
        letter-spacing:.04em;
        margin-bottom:14px;
    }

    #pt-faq-karen .pt-faq-karen-eyebrow::before{
        content:"";
        width:8px;
        height:8px;
        border-radius:50%;
        background:linear-gradient(135deg,#2563eb,#0f766e);
        flex:0 0 auto;
    }

    #pt-faq-karen .pt-faq-karen-title{
        margin:0;
        color:var(--pt-text);
        font-size:clamp(28px,4vw,40px);
        line-height:1.25;
        font-weight:800;
        letter-spacing:-0.03em;
        word-break:keep-all;
    }

    #pt-faq-karen .pt-faq-karen-desc{
        max-width:860px;
        margin:14px auto 0;
        color:var(--pt-sub);
        font-size:16px;
        line-height:1.9;
        word-break:keep-all;
    }

    #pt-faq-karen .pt-faq-karen-list{
        display:grid;
        grid-template-columns:1fr;
        gap:14px;
        margin-top:28px;
    }

    #pt-faq-karen details{
        background:var(--pt-card);
        border:1px solid var(--pt-line);
        border-radius:var(--pt-radius);
        overflow:hidden;
        box-shadow:var(--pt-shadow);
        transition:border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    }

    #pt-faq-karen details:hover{
        transform:translateY(-2px);
        border-color:#bfd2e6;
        box-shadow:0 20px 42px rgba(15,23,42,.10);
    }

    #pt-faq-karen details[open]{
        border-color:#bfd4ee;
        background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
    }

    #pt-faq-karen summary{
        list-style:none;
        display:flex;
        align-items:center;
        gap:14px;
        padding:20px 22px;
        cursor:pointer;
        user-select:none;
    }

    #pt-faq-karen summary::-webkit-details-marker{
        display:none;
    }

    #pt-faq-karen .pt-faq-karen-num{
        width:38px;
        height:38px;
        flex:0 0 auto;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        border-radius:12px;
        background:linear-gradient(135deg,#1e3a8a,#2563eb);
        color:#fff;
        font-size:13px;
        font-weight:800;
        box-shadow:0 10px 22px rgba(37,99,235,.18);
    }

    #pt-faq-karen .pt-faq-karen-q{
        flex:1 1 auto;
        min-width:0;
        color:var(--pt-text);
        font-size:18px;
        line-height:1.6;
        font-weight:800;
        word-break:keep-all;
    }

    #pt-faq-karen .pt-faq-karen-plus{
        width:34px;
        height:34px;
        flex:0 0 auto;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        border-radius:999px;
        background:var(--pt-point);
        color:#1d4ed8;
        font-size:22px;
        line-height:1;
        font-weight:700;
        transition:transform .25s ease, background .25s ease, color .25s ease;
    }

    #pt-faq-karen details[open] .pt-faq-karen-plus{
        transform:rotate(45deg);
        background:var(--pt-point-2);
        color:#1e3a8a;
    }

    #pt-faq-karen .pt-faq-karen-a{
        padding:0 22px 22px;
    }

    #pt-faq-karen .pt-faq-karen-a-inner{
        position:relative;
        border:1px solid #e2edf8;
        background:var(--pt-soft);
        border-radius:18px;
        padding:18px 18px 18px 54px;
        color:#374151;
        font-size:15.5px;
        line-height:1.9;
        word-break:keep-all;
    }

    #pt-faq-karen .pt-faq-karen-a-inner::before{
        content:"A";
        position:absolute;
        left:16px;
        top:16px;
        width:28px;
        height:28px;
        border-radius:9px;
        display:flex;
        align-items:center;
        justify-content:center;
        background:#dbeafe;
        color:#1e40af;
        font-size:13px;
        font-weight:800;
    }

    #pt-faq-karen .pt-faq-karen-a-inner p{
        margin:0 0 10px;
    }

    #pt-faq-karen .pt-faq-karen-a-inner p:last-child{
        margin-bottom:0;
    }

    #pt-faq-karen .pt-faq-karen-a-inner ul{
        margin:0 0 10px 0;
        padding:0;
        list-style:none;
    }

    #pt-faq-karen .pt-faq-karen-a-inner li{
        position:relative;
        margin:0;
        padding-left:18px;
        color:#334155;
    }

    #pt-faq-karen .pt-faq-karen-a-inner li + li{
        margin-top:4px;
    }

    #pt-faq-karen .pt-faq-karen-a-inner li::before{
        content:"";
        position:absolute;
        left:0;
        top:.82em;
        width:7px;
        height:7px;
        border-radius:50%;
        background:#94a3b8;
        transform:translateY(-50%);
    }

    #pt-faq-karen .pt-faq-karen-map-actions{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
        margin-top:12px;
    }

    #pt-faq-karen .pt-faq-karen-map-btn{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        min-height:44px;
        padding:0 16px;
        border-radius:12px;
        text-decoration:none;
        font-size:14px;
        font-weight:700;
        transition:transform .2s ease, opacity .2s ease, box-shadow .2s ease;
    }

    #pt-faq-karen .pt-faq-karen-map-btn:hover{
        transform:translateY(-1px);
        opacity:.96;
    }

    #pt-faq-karen .pt-faq-karen-map-btn.naver{
        background:#03c75a;
        color:#fff;
        box-shadow:0 10px 20px rgba(3,199,90,.18);
    }

    #pt-faq-karen .pt-faq-karen-map-btn.google{
        background:#0f172a;
        color:#fff;
        box-shadow:0 10px 20px rgba(15,23,42,.18);
    }

    /* Animations */
    @keyframes fadeInUp{
        from{
            opacity:0;
            transform:translateY(38px);
        }
        to{
            opacity:1;
            transform:translateY(0);
        }
    }

    .scroll-animate{
        opacity:0;
        transform:translateY(38px);
        transition:all .8s ease;
    }

    .scroll-animate.active{
        opacity:1;
        transform:translateY(0);
    }

    /* Responsive */
    @media (max-width:1100px){
        .content-grid{
            grid-template-columns:1fr;
        }

        .feature-grid{
            grid-template-columns:1fr;
        }
    }

    @media (max-width:768px){
        .hero-banner{
            min-height:84vh;
        }

        .hero-title{
            font-size:2.45rem;
            margin-bottom:14px;
        }

        .hero-subtitle{
            font-size:1rem;
            margin-bottom:28px;
            line-height:1.65;
        }

        .section-title{
            font-size:1.78rem;
            margin-bottom:32px;
            line-height:1.28;
        }

        .main-content,
        .feature-section,
        .cta-section,
        .footer{
            padding-left:18px;
            padding-right:18px;
        }

        .main-content{
            padding-top:74px;
            padding-bottom:80px;
        }

        .content-card{
            padding:26px 20px;
            border-radius:22px;
        }

        .card-title{
            font-size:1.06rem;
        }

        .card-content{
            font-size:.93rem;
            line-height:1.85;
        }

        .feature-item{
            padding:24px 20px;
        }

        .cta-title{
            font-size:1.9rem;
        }

        .cta-desc{
            font-size:.98rem;
            line-height:1.75;
            margin-bottom:26px;
        }

        .cta-buttons{
            flex-direction:column;
            align-items:center;
        }

        .footer-links{
            flex-direction:column;
            gap:12px;
        }

        #reviews .container{
            padding:0 14px !important;
        }

        #reviews .review-card{
            padding:22px 18px !important;
            border-radius:20px !important;
        }

        #reviews .review-header{
            flex-direction:column !important;
            align-items:flex-start !important;
            gap:10px !important;
        }

        #reviews .rating{
            align-self:flex-start !important;
        }

        #reviews .review-content{
            font-size:.93rem;
            line-height:1.8;
        }

        #pt-faq-karen{
            padding:30px 14px;
            border-radius:24px;
        }

        #pt-faq-karen summary{
            padding:18px 16px;
            gap:12px;
        }

        #pt-faq-karen .pt-faq-karen-num{
            width:34px;
            height:34px;
            border-radius:10px;
            font-size:13px;
        }

        #pt-faq-karen .pt-faq-karen-q{
            font-size:16px;
        }

        #pt-faq-karen .pt-faq-karen-a{
            padding:0 16px 16px;
        }

        #pt-faq-karen .pt-faq-karen-a-inner{
            padding:18px 16px 18px 48px;
            font-size:14.5px;
        }

        #pt-faq-karen .pt-faq-karen-map-btn{
            width:100%;
        }
    }

    @media (max-width:480px){
        .hero-title{
            font-size:2.15rem;
        }

        .hero-subtitle{
            font-size:.94rem;
        }

        .section-title{
            font-size:1.58rem;
        }

        .cta-title{
            font-size:1.68rem;
        }
    }




           #pt-faq-karen{
              --pt-bg:#ffffff;
              --pt-card:rgba(255,255,255,.98);
              --pt-soft:#f5f9ff;
              --pt-line:#d9e5f2;
              --pt-text:#0f172a;
              --pt-sub:#5b6b7f;
              --pt-accent:#0f172a;
              --pt-accent-2:#1d4ed8;
              --pt-point:#edf4ff;
              --pt-point-2:#dbeafe;
              --pt-shadow:0 16px 38px rgba(15,23,42,.08);
              --pt-radius:24px;
              position:relative;
              width:100%;
              margin:0;
              padding:42px 20px;
              background:linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
              box-sizing:border-box;
              font-family:'Pretendard','Noto Sans KR',sans-serif;
            }

            #pt-faq-karen *{
              box-sizing:border-box;
            }

            #pt-faq-karen .pt-faq-karen-wrap{
              max-width:1200px;
              margin:0 auto;
            }

            #pt-faq-karen .pt-faq-karen-head{
              text-align:center;
              margin-bottom:28px;
            }

            #pt-faq-karen .pt-faq-karen-eyebrow{
              display:inline-flex;
              align-items:center;
              gap:8px;
              padding:8px 14px;
              border:1px solid #dbe6f3;
              border-radius:999px;
              background:#fff;
              color:#46576b;
              font-size:13px;
              font-weight:700;
              letter-spacing:.04em;
              margin-bottom:14px;
            }

            #pt-faq-karen .pt-faq-karen-eyebrow::before{
              content:"";
              width:8px;
              height:8px;
              border-radius:999px;
              background:linear-gradient(135deg,#2563eb,#0f766e);
              flex:0 0 auto;
            }

            #pt-faq-karen .pt-faq-karen-title{
              margin:0;
              color:var(--pt-text);
              font-size:clamp(28px,4vw,42px);
              line-height:1.25;
              font-weight:800;
              letter-spacing:-0.03em;
              word-break:keep-all;
            }

            #pt-faq-karen .pt-faq-karen-desc{
              max-width:860px;
              margin:14px auto 0;
              color:var(--pt-sub);
              font-size:16px;
              line-height:1.9;
              word-break:keep-all;
            }

            #pt-faq-karen .pt-faq-karen-list{
              display:grid;
              grid-template-columns:1fr;
              gap:14px;
              margin-top:30px;
            }

            #pt-faq-karen details{
              background:var(--pt-card);
              border:1px solid var(--pt-line);
              border-radius:var(--pt-radius);
              overflow:hidden;
              box-shadow:var(--pt-shadow);
              transition:border-color .25s ease, transform .25s ease, box-shadow .25s ease;
            }

            #pt-faq-karen details:hover{
              transform:translateY(-2px);
              border-color:#bfd2e8;
              box-shadow:0 20px 44px rgba(15,23,42,.10);
            }

            #pt-faq-karen details[open]{
              border-color:#b7d0ef;
              background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
            }

            #pt-faq-karen summary{
              list-style:none;
              display:flex;
              align-items:center;
              gap:14px;
              padding:22px 24px;
              cursor:pointer;
              user-select:none;
            }

            #pt-faq-karen summary::-webkit-details-marker{
              display:none;
            }

            #pt-faq-karen .pt-faq-karen-num{
              width:40px;
              height:40px;
              flex:0 0 auto;
              display:inline-flex;
              align-items:center;
              justify-content:center;
              border-radius:13px;
              background:linear-gradient(135deg,#0f172a,#1d4ed8);
              color:#fff;
              font-size:14px;
              font-weight:800;
              box-shadow:0 10px 24px rgba(29,78,216,.18);
            }

            #pt-faq-karen .pt-faq-karen-q{
              flex:1 1 auto;
              min-width:0;
              color:var(--pt-text);
              font-size:18px;
              line-height:1.6;
              font-weight:800;
              word-break:keep-all;
            }

            #pt-faq-karen .pt-faq-karen-plus{
              width:34px;
              height:34px;
              flex:0 0 auto;
              display:inline-flex;
              align-items:center;
              justify-content:center;
              border-radius:999px;
              background:var(--pt-point);
              color:#1d4ed8;
              font-size:22px;
              line-height:1;
              font-weight:700;
              transition:transform .25s ease, background .25s ease, color .25s ease;
            }

            #pt-faq-karen details[open] .pt-faq-karen-plus{
              transform:rotate(45deg);
              background:var(--pt-point-2);
              color:#1e3a8a;
            }

            #pt-faq-karen .pt-faq-karen-a{
              padding:0 24px 24px;
            }

            #pt-faq-karen .pt-faq-karen-a-inner{
              position:relative;
              border:1px solid #e2edf8;
              background:var(--pt-soft);
              border-radius:18px;
              padding:20px 20px 20px 58px;
              color:#374151;
              font-size:15.5px;
              line-height:1.9;
              word-break:keep-all;
            }

            #pt-faq-karen .pt-faq-karen-a-inner::before{
              content:"A";
              position:absolute;
              left:18px;
              top:18px;
              width:28px;
              height:28px;
              border-radius:9px;
              display:flex;
              align-items:center;
              justify-content:center;
              background:#dbeafe;
              color:#1e40af;
              font-size:13px;
              font-weight:800;
            }

            #pt-faq-karen .pt-faq-karen-a-inner p{
              margin:0 0 10px;
            }

            #pt-faq-karen .pt-faq-karen-a-inner p:last-child{
              margin-bottom:0;
            }

            #pt-faq-karen .pt-faq-karen-a-inner ul{
              margin:0 0 10px 0;
              padding:0;
              list-style:none;
            }

            #pt-faq-karen .pt-faq-karen-a-inner li{
              position:relative;
              margin:0;
              padding-left:18px;
              color:#334155;
            }

            #pt-faq-karen .pt-faq-karen-a-inner li + li{
              margin-top:4px;
            }

            #pt-faq-karen .pt-faq-karen-a-inner li::before{
              content:"";
              position:absolute;
              left:0;
              top:.82em;
              width:7px;
              height:7px;
              border-radius:999px;
              background:#94a3b8;
              transform:translateY(-50%);
            }

            #pt-faq-karen .pt-faq-karen-map-actions{
              display:flex;
              flex-wrap:wrap;
              gap:10px;
              margin-top:12px;
            }

            #pt-faq-karen .pt-faq-karen-map-btn{
              display:inline-flex;
              align-items:center;
              justify-content:center;
              min-height:44px;
              padding:0 16px;
              border-radius:12px;
              text-decoration:none;
              font-size:14px;
              font-weight:700;
              transition:transform .2s ease, opacity .2s ease, box-shadow .2s ease;
            }

            #pt-faq-karen .pt-faq-karen-map-btn:hover{
              transform:translateY(-1px);
              opacity:.96;
            }

            #pt-faq-karen .pt-faq-karen-map-btn.naver{
              background:#03c75a;
              color:#fff;
              box-shadow:0 10px 20px rgba(3,199,90,.18);
            }

            #pt-faq-karen .pt-faq-karen-map-btn.google{
              background:var(--pt-accent);
              color:#fff;
              box-shadow:0 10px 20px rgba(15,23,42,.18);
            }

            @media (max-width:768px){
              #pt-faq-karen{
                padding:34px 14px;
              }

              #pt-faq-karen summary{
                padding:18px 16px;
                gap:12px;
              }

              #pt-faq-karen .pt-faq-karen-num{
                width:34px;
                height:34px;
                border-radius:10px;
                font-size:13px;
              }

              #pt-faq-karen .pt-faq-karen-q{
                font-size:16px;
              }

              #pt-faq-karen .pt-faq-karen-a{
                padding:0 16px 18px;
              }

              #pt-faq-karen .pt-faq-karen-a-inner{
                padding:18px 16px 18px 50px;
                font-size:14.5px;
              }

              #pt-faq-karen .pt-faq-karen-map-btn{
                width:100%;
              }
            }





/* =========================
   durabless.store 서브페이지 공통 CSS
   ========================= */

#bo_v_con.gdn-subpage{
  width:100%;
  max-width:100%;
  margin:0;
  padding:0;
  color:#1f2937;
  font-family:'Pretendard','Noto Sans KR',sans-serif;
  font-size:17px;
  line-height:1.95;
  letter-spacing:-0.02em;
  word-break:keep-all;
}

#bo_v_con.gdn-subpage *{
  box-sizing:border-box;
}

#bo_v_con.gdn-subpage a{
  color:inherit;
  text-decoration:none;
}

#bo_v_con.gdn-subpage img{
  max-width:100%;
  height:auto;
  display:block;
  border:0;
}

#bo_v_con.gdn-subpage .gdn-wrap{
  max-width:1120px;
  margin:0 auto;
  padding:36px 24px 10px;
}

#bo_v_con.gdn-subpage .gdn-hero{
  position:relative;
  overflow:hidden;
  margin-bottom:24px;
  padding:32px 30px;
  border:1px solid rgba(15,23,42,0.08);
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(59,130,246,0.08), transparent 32%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  box-shadow:0 18px 50px rgba(15,23,42,0.06);
}

#bo_v_con.gdn-subpage .gdn-badge{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:#eff6ff;
  color:#2563eb;
  font-size:13px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:14px;
}

#bo_v_con.gdn-subpage h1{
  margin:0 0 14px;
  color:#0f172a;
  font-size:clamp(30px,4vw,42px);
  line-height:1.28;
  font-weight:800;
  letter-spacing:-0.03em;
}

#bo_v_con.gdn-subpage .gdn-lead{
  margin:0;
  color:#475569;
  font-size:18px;
  line-height:1.9;
}

#bo_v_con.gdn-subpage .gdn-section{
  margin:0 0 20px;
  padding:28px 26px;
  border:1px solid rgba(15,23,42,0.07);
  border-radius:24px;
  background:#ffffff;
  box-shadow:0 12px 34px rgba(15,23,42,0.045);
}

#bo_v_con.gdn-subpage .gdn-section h2{
  margin:0 0 14px;
  color:#111827;
  font-size:23px;
  line-height:1.45;
  font-weight:800;
  letter-spacing:-0.02em;
}

#bo_v_con.gdn-subpage p{
  margin:0 0 18px;
  color:#374151;
}

#bo_v_con.gdn-subpage p:last-child{
  margin-bottom:0;
}

#bo_v_con.gdn-subpage .gdn-note{
  margin-top:18px;
  padding:16px 18px;
  border:1px solid #e5e7eb;
  border-radius:18px;
  background:#f8fafc;
  color:#475569;
  font-size:15px;
  line-height:1.85;
}

#bo_v_con.gdn-subpage .gdn-boxgrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}

#bo_v_con.gdn-subpage .gdn-mini{
  padding:18px;
  border:1px solid #e5e7eb;
  border-radius:20px;
  background:#f8fafc;
}

#bo_v_con.gdn-subpage .gdn-mini strong{
  display:block;
  margin-bottom:8px;
  color:#111827;
  font-size:16px;
  font-weight:800;
}

#bo_v_con.gdn-subpage .gdn-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

#bo_v_con.gdn-subpage .gdn-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  background:#111827;
  color:#fff !important;
  font-size:15px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(17,24,39,0.14);
  transition:transform .2s ease, box-shadow .2s ease;
}

#bo_v_con.gdn-subpage .gdn-btn:hover{
  transform:translateY(-1px);
}

#bo_v_con.gdn-subpage .gdn-btn.is-light{
  background:#eff6ff;
  color:#2563eb !important;
  box-shadow:none;
}

/* 하단 캐러셀 */
.naver-grid-widget{
  width:100%;
  max-width:1120px;
  margin:18px auto 0;
  padding:0 24px 12px;
}

.naver-grid-widget .ngw-title{
  margin:0 0 14px;
  font-size:24px;
  line-height:1.4;
  font-weight:800;
  color:#111827;
  letter-spacing:-0.02em;
}

.naver-grid-widget .ngw-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:16px;
}

.naver-grid-widget .ngw-item{
  margin:0;
}

.naver-grid-widget .ngw-item a{
  display:block;
  overflow:hidden;
  height:100%;
  border:1px solid rgba(15,23,42,0.08);
  border-radius:22px;
  background:#fff;
  box-shadow:0 12px 30px rgba(15,23,42,0.05);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.naver-grid-widget .ngw-item a:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(15,23,42,0.08);
  border-color:rgba(37,99,235,0.2);
}

.naver-grid-widget .ngw-thumb{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f3f4f6;
}

.naver-grid-widget .ngw-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.naver-grid-widget .ngw-item a:hover .ngw-thumb img{
  transform:scale(1.04);
}

.naver-grid-widget .ngw-caption{
  padding:14px 14px 16px;
  color:#111827;
  font-size:15px;
  line-height:1.6;
  font-weight:700;
  letter-spacing:-0.02em;
}

@media (max-width:1024px){
  .naver-grid-widget .ngw-list{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width:768px){
  #bo_v_con.gdn-subpage{
    font-size:16px;
    line-height:1.9;
  }

  #bo_v_con.gdn-subpage .gdn-wrap{
    padding:24px 16px 8px;
  }

  #bo_v_con.gdn-subpage .gdn-hero{
    padding:24px 20px;
    border-radius:22px;
  }

  #bo_v_con.gdn-subpage .gdn-section{
    padding:22px 18px;
    border-radius:20px;
  }

  #bo_v_con.gdn-subpage .gdn-boxgrid{
    grid-template-columns:1fr;
  }

  .naver-grid-widget{
    padding:0 16px 8px;
  }

  .naver-grid-widget .ngw-list{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }

  .naver-grid-widget .ngw-caption{
    font-size:14px;
    padding:12px 12px 14px;
  }
}

@media (max-width:480px){
  .naver-grid-widget .ngw-list{
    grid-template-columns:1fr 1fr;
  }
}




  .xet-thin-fold{
    margin:0;
    padding:0;
    border:0;
  }
  .xet-thin-fold summary{
    list-style:none;
    cursor:pointer;
    height:8px;
    margin:0 0 18px;
    padding:0;
    border:none;
    outline:none;
    position:relative;
  }
  .xet-thin-fold summary::-webkit-details-marker{display:none;}
  .xet-thin-fold summary::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:3px;
    height:1px;
    background:linear-gradient(90deg,rgba(17,24,39,0),rgba(17,24,39,.14),rgba(17,24,39,0));
  }
  .xet-thin-fold[open] summary{margin-bottom:18px;}




  .gdn-video-widget,
  .gdn-video-widget *{
    box-sizing:border-box;
  }

  .gdn-video-widget{
    width:100%;
    margin:0;
    padding:0;
  }

  .gdn-video-frame{
    width:100%;
    max-width:100%;
    margin:0 auto;
  }

  .gdn-video-holder{
    position:relative;
    width:100%;
    overflow:hidden;
    background:#000;
    border-radius:18px;
    box-shadow:0 16px 36px rgba(0,0,0,.16);
  }

  .gdn-video-holder::before{
    content:"";
    display:block;
    padding-top:56.25%;
  }

  .gdn-video-cover,
  .gdn-video-holder iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
  }

  .gdn-video-cover{
    display:block;
    padding:0;
    margin:0;
    background:none;
    border:0;
    cursor:pointer;
    overflow:hidden;
  }

  .gdn-video-cover::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.24) 100%);
    z-index:1;
    transition:opacity .25s ease;
  }

  .gdn-video-thumb{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .gdn-video-play{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:84px;
    height:84px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
    transition:transform .25s ease, background .25s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.22);
  }

  .gdn-video-play-icon{
    display:block;
    width:0;
    height:0;
    margin-left:4px;
    border-top:14px solid transparent;
    border-bottom:14px solid transparent;
    border-left:22px solid #fff;
  }

  .gdn-video-cover:hover::before{
    opacity:.88;
  }

  .gdn-video-cover:hover .gdn-video-play{
    transform:translate(-50%,-50%) scale(1.05);
    background:rgba(255,255,255,.2);
  }

  .gdn-video-holder iframe{
    display:block;
  }

  @media (max-width:767px){
    .gdn-video-holder{
      border-radius:12px;
    }

    .gdn-video-play{
      width:66px;
      height:66px;
    }

    .gdn-video-play-icon{
      border-top:11px solid transparent;
      border-bottom:11px solid transparent;
      border-left:18px solid #fff;
    }
  }





#pt-hero-main.pt-hero-main,
#pt-hero-main.pt-hero-main *{
	box-sizing:border-box;
}

#pt-hero-main.pt-hero-main{
	position:relative;
	overflow:hidden;
	min-height:clamp(560px,74vh,860px);
	background:#0b0d12;
	isolation:isolate;
}

#pt-hero-main .pt-hero-bg{
	position:absolute;
	inset:0;
	z-index:0;
}

#pt-hero-main .pt-hero-bg::before{
	content:"";
	position:absolute;
	inset:0;
	background:
		linear-gradient(180deg, rgba(6,10,18,.24) 0%, rgba(6,10,18,.48) 42%, rgba(6,10,18,.74) 100%),
		linear-gradient(90deg, rgba(10,16,28,.30) 0%, rgba(10,16,28,.10) 38%, rgba(10,16,28,.30) 100%);
	z-index:2;
	pointer-events:none;
}

#pt-hero-main .pt-hero-bg::after{
	content:"";
	position:absolute;
	inset:auto 0 0 0;
	height:180px;
	background:linear-gradient(180deg, rgba(11,13,18,0) 0%, rgba(11,13,18,.72) 100%);
	z-index:2;
	pointer-events:none;
}

#pt-hero-main .pt-hero-bg .bg{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
	opacity:0;
	transform:scale(1.03);
	filter:saturate(1.03) contrast(1.02);
	animation:ptHeroBgFade 18s infinite;
	will-change:opacity,transform;
}

#pt-hero-main .pt-hero-bg .bg-1{animation-delay:0s;}
#pt-hero-main .pt-hero-bg .bg-2{animation-delay:6s;}
#pt-hero-main .pt-hero-bg .bg-3{animation-delay:12s;}

#pt-hero-main .main-visual{
	position:relative;
	z-index:3;
	min-height:clamp(560px,74vh,860px);
	max-width:1280px;
	margin:0 auto;
	padding:clamp(84px,9vw,120px) 20px clamp(120px,13vw,150px);
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
}

#pt-hero-main .items{
	position:relative;
	width:min(100%, 980px);
	min-height:300px;
}

#pt-hero-main .item{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:0;
	opacity:0;
	transform:translateY(16px);
	animation:ptHeroTextFade 18s infinite;
	will-change:opacity,transform;
}

#pt-hero-main .item-1{animation-delay:0s;}
#pt-hero-main .item-2{animation-delay:6s;}
#pt-hero-main .item-3{animation-delay:12s;}

#pt-hero-main .contain{
	width:100%;
	display:flex;
	align-items:center;
	justify-content:center;
}

#pt-hero-main .txt-wrap{
	width:min(100%, 900px);
	margin:0 auto;
	padding:0 6px;
}

#pt-hero-main .h1{
	margin:0 0 16px;
	font-size:clamp(2.2rem,5.8vw,4.8rem);
	line-height:1.08;
	font-weight:900;
	letter-spacing:-0.04em;
	color:#fff;
	text-shadow:0 10px 30px rgba(0,0,0,.22);
}

#pt-hero-main .lead{
	margin:0 auto;
	width:min(100%, 760px);
	font-size:clamp(1rem,1.45vw,1.2rem);
	line-height:1.88;
	font-weight:500;
	color:rgba(255,255,255,.92);
	word-break:keep-all;
	text-shadow:0 6px 24px rgba(0,0,0,.22);
}

#pt-hero-main .lead strong{
	font-weight:800;
	color:#fff;
}

#pt-hero-main .main_button{
	position:absolute;
	left:50%;
	bottom:clamp(56px,7vw,84px);
	transform:translateX(-50%);
	z-index:5;
	width:min(100%, 980px);
	padding:0 20px;
	display:flex;
	justify-content:center;
}

#pt-hero-main .cta{
	display:flex;
	align-items:center;
	justify-content:center;
}

#pt-hero-main .btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:min(92vw, 360px);
	min-height:64px;
	padding:18px 34px;
	border-radius:999px;
	background:linear-gradient(135deg,#ffd65c 0%, #f5b62a 100%);
	border:1px solid rgba(255,255,255,.18);
	box-shadow:
		0 16px 40px rgba(0,0,0,.24),
		inset 0 1px 0 rgba(255,255,255,.45);
	color:#1f1600 !important;
	text-decoration:none !important;
	font-size:clamp(1rem,1.5vw,1.16rem);
	font-weight:900;
	letter-spacing:-0.02em;
	line-height:1;
	white-space:nowrap;
	transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
	backdrop-filter:blur(10px);
	-webkit-backdrop-filter:blur(10px);
}

#pt-hero-main .btn:hover{
	transform:translateY(-2px);
	box-shadow:
		0 20px 44px rgba(0,0,0,.28),
		inset 0 1px 0 rgba(255,255,255,.55);
	filter:brightness(1.02);
}

#pt-hero-main .btn:focus-visible{
	outline:2px solid #fff;
	outline-offset:3px;
}

#pt-hero-main .pt-hero-lastmod{
	position:absolute;
	left:50%;
	bottom:18px;
	transform:translateX(-50%);
	z-index:5;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:6px;
	padding:9px 14px;
	border-radius:999px;
	background:rgba(255,255,255,.08);
	border:1px solid rgba(255,255,255,.14);
	backdrop-filter:blur(10px);
	-webkit-backdrop-filter:blur(10px);
	color:rgba(255,255,255,.82);
	font-size:.82rem;
	line-height:1;
	white-space:nowrap;
}

#pt-hero-main .pt-hero-lastmod time{
	font-weight:700;
	color:#fff;
}

@keyframes ptHeroBgFade{
	0%{opacity:0;transform:scale(1.03);}
	4%{opacity:1;}
	28%{opacity:1;transform:scale(1.06);}
	33.33%{opacity:0;transform:scale(1.08);}
	100%{opacity:0;}
}

@keyframes ptHeroTextFade{
	0%{opacity:0;transform:translateY(18px);}
	4%{opacity:1;transform:translateY(0);}
	28%{opacity:1;transform:translateY(0);}
	33.33%{opacity:0;transform:translateY(-8px);}
	100%{opacity:0;}
}

#ptq2-fixed-bar{
	position:fixed !important;
	left:0;
	right:0;
	bottom:0 !important;
	z-index:9999999;
	background:#0f172a;
	padding:8px 0 calc(8px + env(safe-area-inset-bottom));
	box-shadow:0 -4px 12px rgba(0,0,0,.45);
}

.admin-bar #ptq2-fixed-bar{
	bottom:32px !important;
}

body{
	padding-bottom:88px;
}

#ptq2-fixed-bar .ptq2-wrap{
	max-width:1200px;
	margin:0 auto;
	padding:0 14px;
	display:flex;
	justify-content:space-between;
	gap:8px;
	box-sizing:border-box;
}

#ptq2-fixed-bar .ptq2-btn{
	flex:1 1 0;
	width:100%;
	text-decoration:none !important;
	border-radius:12px;
	overflow:hidden;
	min-height:54px;
	display:flex;
	align-items:center;
	justify-content:center;
	box-sizing:border-box;
	transition:transform .2s ease, filter .2s ease;
}

#ptq2-fixed-bar .ptq2-btn:hover{
	transform:translateY(-1px);
	filter:brightness(1.03);
}

#ptq2-fixed-bar .ptq2-inner{
	width:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	padding:10px 12px;
	box-sizing:border-box;
}

#ptq2-fixed-bar .ptq2-icon{
	width:28px;
	height:28px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	background:rgba(17,17,17,.10);
	flex:0 0 28px;
}

#ptq2-fixed-bar .ptq2-icon svg{
	width:16px;
	height:16px;
	display:block;
}

#ptq2-fixed-bar .ptq2-label{
	font-size:14px;
	font-weight:800;
	line-height:1.2;
	letter-spacing:-0.02em;
	white-space:nowrap;
}

#ptq2-fixed-bar .ptq2-btn--kakao{
	background:#fee500;
	color:#111;
}

@media (max-width:1024px){
	#pt-hero-main .main-visual{
		padding:96px 18px 138px;
	}

	#pt-hero-main .items{
		min-height:280px;
	}
}

@media (max-width:782px){
	.admin-bar #ptq2-fixed-bar{
		bottom:46px !important;
	}
}

@media (max-width:768px){
	body{
		padding-bottom:84px;
	}

	#ptq2-fixed-bar .ptq2-wrap{
		gap:6px;
		padding:0 10px;
	}

	#ptq2-fixed-bar .ptq2-btn{
		min-height:52px;
		border-radius:10px;
	}

	#ptq2-fixed-bar .ptq2-inner{
		gap:6px;
		padding:9px 10px;
	}

	#ptq2-fixed-bar .ptq2-icon{
		width:24px;
		height:24px;
		flex-basis:24px;
	}

	#ptq2-fixed-bar .ptq2-icon svg{
		width:14px;
		height:14px;
	}

	#ptq2-fixed-bar .ptq2-label{
		font-size:12px;
	}
}

@media (max-width:767px){
	#pt-hero-main.pt-hero-main{
		min-height:560px;
	}

	#pt-hero-main .main-visual{
		min-height:560px;
		padding:84px 14px 132px;
	}

	#pt-hero-main .items{
		min-height:250px;
	}

	#pt-hero-main .txt-wrap{
		padding:0;
	}

	#pt-hero-main .lead{
		font-size:.98rem;
		line-height:1.72;
		width:min(100%, 92vw);
	}

	#pt-hero-main .main_button{
		bottom:56px;
		padding:0 14px;
	}

	#pt-hero-main .btn{
		min-width:min(100%, 340px);
		min-height:60px;
		padding:16px 26px;
		font-size:1rem;
	}

	#pt-hero-main .pt-hero-lastmod{
		bottom:14px;
		font-size:.76rem;
		padding:8px 12px;
	}
}