/*공지사항 notice*/
.page-hero{
    position: relative;
    padding: 160px var(--pad-x) 80px;
    background: linear-gradient(180deg,
      var(--night-deep) 0%,
      var(--night) 30%,
      var(--purple) 70%,
      var(--magenta-wine) 100%
    );
    color: #fff;
    overflow: hidden;
}
  
.page-hero::before{
    content: 'NOTICE';
    position: absolute;
    bottom: -50px;
    right: -40px;
    font-family: var(--font-display);
    font-size: clamp(180px, 22vw, 360px);
    color: rgba(255, 255, 255, 0.04);
    line-height: 0.8;
    pointer-events: none;
}
.page-hero.faq::before{
    content: 'FAQ';
     right: -30px;
}
  
.page-hero::after{
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 20% 30%, rgba(212, 55, 124, 0.3), transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 203, 71, 0.12), transparent 50%),
      radial-gradient(1.5px 1.5px at 15% 25%, white, transparent),
      radial-gradient(1px 1px at 35% 45%, rgba(255,255,255,0.7), transparent),
      radial-gradient(2px 2px at 65% 30%, white, transparent),
      radial-gradient(1px 1px at 85% 50%, rgba(255,255,255,0.7), transparent);
    pointer-events: none;
}
  
  /* === 페이지 히어로 거품 (메인 무드와 통일, 절제된 버전) === */
.page-hero-bubbles{
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
  
.ph-bubble{
    position: absolute;
    bottom: -30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
      rgba(255, 255, 255, 0.35),
      rgba(255, 203, 71, 0.15) 60%,
      rgba(255, 140, 66, 0.05)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
      inset 0 0 6px rgba(255, 255, 255, 0.25),
      0 0 10px rgba(255, 203, 71, 0.12);
    animation: phBubbleFloat linear infinite;
    opacity: 0;
}
  
  /* 6개 - 메인보다 절제 */
.ph-bubble:nth-child(1){ left: 8%;  width: 18px; height: 18px; animation-duration: 16s; animation-delay: 0s; }
.ph-bubble:nth-child(2){ left: 22%; width: 12px; height: 12px; animation-duration: 14s; animation-delay: 3s; }
.ph-bubble:nth-child(3){ left: 40%; width: 22px; height: 22px; animation-duration: 18s; animation-delay: 5s; }
.ph-bubble:nth-child(4){ left: 58%; width: 14px; height: 14px; animation-duration: 15s; animation-delay: 2s; }
.ph-bubble:nth-child(5){ left: 75%; width: 20px; height: 20px; animation-duration: 17s; animation-delay: 6s; }
.ph-bubble:nth-child(6){ left: 92%; width: 16px; height: 16px; animation-duration: 19s; animation-delay: 1s; }
  
  @keyframes phBubbleFloat{
    0%{
      bottom: -30px;
      opacity: 0;
      transform: translateX(0) scale(0.8);
  }
    10%{ opacity: 0.6; }
    50%{ transform: translateX(15px) scale(1); }
    90%{ opacity: 0.4; }
    100%{
      bottom: 105%;
      opacity: 0;
      transform: translateX(-8px) scale(0.9);
  }
}
  
  @media (prefers-reduced-motion: reduce){
.ph-bubble{
      animation: none !important;
      opacity: 0.2;
  }
}
  
.page-hero-inner{
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    z-index: 2;
}
  
.breadcrumb{
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}
  
.breadcrumb .sep{ opacity: 0.4; }
.breadcrumb .current{ color: var(--gold); }
  
.page-hero h1{
    font-family: var(--font-display);
    font-size: clamp(72px, 11vw, 160px);
    line-height: 0.9;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
  
.page-hero h1 .acc{ color: var(--gold); }
  
.page-hero-sub{
    font-size: clamp(15px, 1.4vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    line-height: 1.7;
}
  
  /* =====================================
     TOOLBAR (필터 + 검색)
     ===================================== */
.toolbar-wrap{
    position: sticky;
    top: 64px;
    z-index: 50;
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
  
.toolbar{
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 16px var(--pad-x);
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
  
.cat-filter{
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
  
.cat-btn{
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-sub);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 100px;
    transition: all 0.25s;
    white-space: nowrap;
}
  
.cat-btn:hover{
    border-color: var(--primary);
    color: var(--primary);
}
  
.cat-btn.active{
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
  
.cat-btn .count{
    font-family: var(--font-mono);
    font-size: 11px;
    opacity: 0.7;
    margin-left: 4px;
}
  
.search-box{
    position: relative;
    min-width: 280px;
}
  
.search-box input{
    width: 100%;
    padding: 10px 16px 10px 40px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 100px;
    transition: border-color 0.25s;
}
  
.search-box input:focus{
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
  
.search-box input::placeholder{
    color: var(--text-light);
}
  
.search-box::before{
    content: '🔍';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    opacity: 0.5;
}
  
  /* =====================================
     NOTICE LIST
     ===================================== */
.content{
    padding: 64px var(--pad-x) 120px;
    max-width: var(--max-w);
    margin: 0 auto;
}
  
.notice-list{
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
  
.notice-row{
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    gap: 24px;
    align-items: center;
    padding: 20px 32px;
    border-bottom: 1px solid var(--line-soft);
    transition: background 0.2s;
    cursor: pointer;
}
  
.notice-row:last-child{
    border-bottom: none;
}
  
.notice-row:hover{
    background: var(--sky);
}
  
.notice-row.pinned{
    background: linear-gradient(90deg, rgba(255, 184, 0, 0.06), transparent);
    border-bottom-color: var(--line);
}
  
.notice-row.pinned:hover{
    background: linear-gradient(90deg, rgba(255, 184, 0, 0.12), var(--sky));
}
  
.nl-cat{
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    justify-self: start;
}
  
  /* 카테고리별 색상 */
.nl-cat.cat-event{
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary);
}
  
.nl-cat.cat-notice{
    background: rgba(255, 184, 0, 0.15);
    color: var(--gold-deep);
}
  
.nl-cat.cat-found{
    background: rgba(255, 90, 95, 0.1);
    color: var(--coral);
}
  
.nl-cat.cat-press{
    background: rgba(107, 107, 107, 0.1);
    color: var(--text-sub);
}
  
.nl-cat.cat-emergency{
    background: var(--coral);
    color: #fff;
}
  
.nl-title{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}
  
.nl-title .pin{
    color: var(--gold-deep);
    font-size: 14px;
    flex-shrink: 0;
}
  
.nl-title .title-text{
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
  
.nl-title .badge-new{
    flex-shrink: 0;
    padding: 2px 7px;
    background: var(--coral);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 3px;
}
  
.nl-date{
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-sub);
    text-align: right;
    white-space: nowrap;
}
  
  /* 빈 상태 */
.empty-state{
    padding: 80px 24px;
    text-align: center;
}
  
.empty-icon{
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
}
  
.empty-state h3{
    font-size: 20px;
    color: var(--text);
    margin-bottom: 8px;
}
  
.empty-state p{
    font-size: 14px;
    color: var(--text-sub);
}
  
  /* =====================================
     NOTICE DETAIL
     ===================================== */
.notice-detail{
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
  
.nd-header{
    padding: 40px 48px 32px;
    border-bottom: 1px solid var(--line);
}
  
.nd-meta-top{
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
  
.nd-cat{
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}
  
.nd-cat.cat-event{ background: rgba(0, 102, 204, 0.1); color: var(--primary); }
.nd-cat.cat-notice{ background: rgba(255, 184, 0, 0.15); color: var(--gold-deep); }
.nd-cat.cat-found{ background: rgba(255, 90, 95, 0.1); color: var(--coral); }
.nd-cat.cat-press{ background: rgba(107, 107, 107, 0.1); color: var(--text-sub); }
.nd-cat.cat-emergency{ background: var(--coral); color: #fff; }
  
.nd-date{
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-sub);
    letter-spacing: 0.05em;
}
  
.nd-title{
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}
  
.nd-body{
    padding: 40px 48px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
}
  
.nd-body p{
    margin-bottom: 16px;
}
  
.nd-body strong{
    color: var(--primary);
    font-weight: 700;
}
  
.nd-body a{
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
  
.nd-body ul, .nd-body ol{
    margin: 16px 0 16px 24px;
}
  
.nd-body li{ margin-bottom: 8px; }
  
.nd-body blockquote{
    margin: 20px 0;
    padding: 16px 24px;
    background: var(--sky);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-sub);
    font-size: 14px;
}
  
  /* 첨부 이미지 */
.nd-images{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line-soft);
}
  
.nd-image-thumb{
    aspect-ratio: 4/3;
    background: var(--sky);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
  
.nd-image-thumb:hover{
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
  
.nd-image-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  
  /* 하단 네비 */
.nd-footer{
    padding: 32px 48px;
    background: var(--sky);
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
  
.nd-back{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
  
.nd-back:hover{
    border-color: var(--primary);
    color: var(--primary);
}
  
.nd-share{
    display: flex;
    gap: 8px;
    align-items: center;
}
  
.nd-share span{
    font-size: 12px;
    color: var(--text-sub);
    margin-right: 4px;
}
  
.nd-share-btn{
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
}
  
.nd-share-btn:hover{
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* =====================================
     LIGHTBOX
     ===================================== */
.lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  
.lightbox.open{
    display: flex;
    animation: fadeIn 0.3s ease;
  }
  
.lightbox img{
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
  }
  
.lightbox .lb-close{
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  @keyframes fadeIn{
    from{ opacity: 0; }
    to{ opacity: 1; }
  }



  /*FAQ*/
.result-info{ margin-bottom: 24px; font-size: 13px; color: var(--text-sub); display: flex; align-items: center; gap: 8px; }
.result-info .count{ font-family: var(--font-mono); color: var(--magenta-wine); font-weight: 700; }
  
  /* ACCORDION */
.faq-list{ background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item{ border-bottom: 1px solid var(--line-soft); }
.faq-item:last-child{ border-bottom: none; }
  
.faq-question{ width: 100%; text-align: left; padding: 24px 32px; display: flex; align-items: center; gap: 20px; background: transparent; transition: background 0.2s; }
.faq-question:hover{ background: var(--cream); }
.faq-item.open .faq-question{ background: linear-gradient(90deg, rgba(168, 55, 124, 0.04), transparent); }
  
.faq-q-mark{ flex-shrink: 0; width: 36px; height: 36px; background: var(--magenta-wine); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; letter-spacing: 0.02em; }
  
.faq-q-text{ flex: 1; display: flex; flex-direction: column; gap: 4px; }
.faq-q-cat{ display: inline-block; align-self: flex-start; padding: 3px 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.02em; border-radius: 100px; text-transform: uppercase; }
  
.cat-ticket{ background: rgba(255,184,0,0.15); color: var(--gold-deep); }
.cat-entry{ background: rgba(0,102,204,0.1); color: var(--primary); }
.cat-facility{ background: rgba(168,55,124,0.1); color: var(--magenta-wine); }
.cat-refund{ background: rgba(255,90,95,0.1); color: var(--coral); }
.cat-etc{ background: rgba(107,107,107,0.1); color: var(--text-sub); }
  
.faq-q-title{ font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.5; }
  
.faq-arrow{ flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--text-sub); transition: transform 0.3s, color 0.3s; }
.faq-item.open .faq-arrow{ transform: rotate(180deg); color: var(--magenta-wine); }
.faq-arrow svg{ width: 14px; height: 14px; }
  
  /* 답변 */
.faq-answer{ max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.open .faq-answer{ max-height: 1200px; }
  
.faq-answer-inner{ padding: 0 32px 28px 88px; font-size: 15px; line-height: 1.85; color: var(--text-sub); position: relative; }
.faq-answer-inner::before{ content: 'A'; position: absolute; left: 36px; top: -2px; width: 36px; height: 36px; background: var(--cream); border: 1px solid var(--line); color: var(--magenta-wine); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; letter-spacing: 0.02em; }
.faq-answer-inner p{ margin-bottom: 12px; }
.faq-answer-inner p:last-child{ margin-bottom: 0; }
.faq-answer-inner strong{ color: var(--magenta-wine); font-weight: 700; }
.faq-answer-inner a{ color: var(--magenta-wine); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer-inner ul, .faq-answer-inner ol{ margin: 12px 0 12px 20px; }
.faq-answer-inner li{ margin-bottom: 6px; }
.faq-answer-inner blockquote{ margin: 16px 0; padding: 14px 20px; background: var(--lavender); border-left: 3px solid var(--magenta-wine); border-radius: 0 var(--radius) var(--radius) 0; color: var(--text); font-size: 14px; }
  
  /* 빈 상태 */
.empty-state{ padding: 80px 24px; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.empty-icon{ font-size: 48px; margin-bottom: 16px; opacity: 0.4; }
.empty-state h3{ font-size: 20px; color: var(--text); margin-bottom: 8px; }
.empty-state p{ font-size: 14px; color: var(--text-sub); }
  
  /* 하단 CTA */
.help-cta{ margin-top: 64px; padding: 48px; background: linear-gradient(135deg, var(--cream) 0%, var(--peach) 100%); border: 1px solid var(--line); border-radius: var(--radius-lg); text-align: center; }
.help-cta h3{ font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.help-cta p{ font-size: 14px; color: var(--text-sub); margin-bottom: 24px; }
.help-cta-buttons{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.help-btn{ display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; background: var(--surface); color: var(--text); border: 1px solid var(--line); border-radius: 100px; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.help-btn:hover{ border-color: var(--magenta-wine); color: var(--magenta-wine); transform: translateY(-2px); }
.help-btn.primary{ background: var(--magenta-wine); color: #fff; border-color: var(--magenta-wine); }
.help-btn.primary:hover{ background: var(--purple); border-color: var(--purple); }
  
  /* FOOTER */
.footer{ background: var(--night-deep); color: rgba(255,255,255,0.6); padding: 40px var(--pad-x); text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; }
  
  /* ANIM */
.anim-fade{ opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.anim-fade.in{ opacity: 1; transform: translateY(0); }
  

/* 팝업 */

.sb-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sb-popup.open {
  opacity: 1;
}

.sb-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sb-popup-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--surface, #ffffff);
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sb-popup.open .sb-popup-box {
  transform: translateY(0) scale(1);
}

.sb-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 22px;
  font-weight: 300;
  color: #1a1a1a;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  line-height: 1;
}

.sb-popup-close:hover {
  background: #fff;
  transform: scale(1.08);
}

/* ===== 슬라이드 영역 ===== */
.sb-popup-stage {
  position: relative;
  background: #000;
}

.sb-popup-slides {
  position: relative;
  overflow: hidden;
  /* 4:5 비율 기본 */
  aspect-ratio: 4 / 5;
  max-height: 70vh;
}

.sb-popup-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sb-popup-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.sb-popup-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sb-popup-slide a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* ===== prev/next 화살표 ===== */
.sb-popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  line-height: 1;
}

.sb-popup-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.05);
}

.sb-popup-prev { left: 12px; }
.sb-popup-next { right: 12px; }

/* ===== 하단 영역 ===== */
.sb-popup-bottom {
  background: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e8e2da;
}

.sb-popup-dots {
  display: flex;
  gap: 8px;
}

.sb-popup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfd4dc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.sb-popup-dot.active {
  background: var(--primary, #0066CC);
  transform: scale(1.25);
}

.sb-popup-dismiss {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b6b6b;
  cursor: pointer;
  user-select: none;
}

.sb-popup-dismiss input[type="checkbox"] {
  cursor: pointer;
  margin: 0;
  width: 16px;
  height: 16px;
}

.sb-popup-dismiss:hover {
  color: #1a1a1a;
}

body.popup-locked .hero *,
body.popup-locked .hero {
  animation-play-state: paused !important;
}




@media (prefers-reduced-motion: reduce){
  .anim-fade{ opacity: 1 !important; transform: none !important; transition: none !important; }
  .ph-bubble, .btn-foam .liquid::before, .btn-foam .liquid::after, .btn-foam .bubble{ animation: none !important; }
}
  
  /* RESPONSIVE */
@media (max-width: 900px){
  .nav{ display: none; }
  .toolbar{ flex-direction: column; align-items: stretch; }
  .search-box{ min-width: 100%; }
  .cat-filter{ justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .cat-filter::-webkit-scrollbar{ display: none; }
  .content{ padding: 40px 16px 80px; }
  .faq-question{ padding: 20px 20px; gap: 14px; }
  .faq-q-mark{ width: 32px; height: 32px; font-size: 16px; }
  .faq-answer-inner{ padding: 0 20px 22px 66px; font-size: 14px; }
  .faq-answer-inner::before{ left: 22px; width: 32px; height: 32px; font-size: 16px; }
  .help-cta{ padding: 32px 20px; }

}

@media (max-width: 600px) {
    /* 팝업 모바일 */
  .sb-popup{padding: 12px;}
  .sb-popup-box{max-width: 100%;}
  .sb-popup-slides{max-height: 60vh;}
  .sb-popup-arrow{width: 36px; height: 36px; font-size: 22px;}
  .sb-popup-prev{left: 8px;}
  .sb-popup-next{right: 8px;}
  .sb-popup-bottom{padding: 12px 16px;}
  .sb-popup-dismiss{font-size: 12.5px;}
}
