#boss-guides-canvas{
  --bg:#ffffff;
  --surface:#ffffff;
  --line:#eceef2;
  --soft-line:#f1f3f5;
  --text:#111827;
  --muted:#6b7280;
  --faint:#9ca3af;
  --subtle:#f8fafc;
  --button:#F7F8FB;
  --button-hover:#EEF1F6;
  --point:#5B7BEA;
  --point-soft:rgba(91,123,234,.08);
  --point-text:#4E68CF;
  --max-width:1280px;
  width:100vw;
  max-width:none !important;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  background:var(--bg);
  color:var(--text);
  font-family:"Pretendard","Noto Sans KR","Apple SD Gothic Neo","Malgun Gothic",sans-serif;
  overflow-x:hidden;
}

#boss-guides-canvas *{ box-sizing:border-box; margin:0; padding:0; }
#boss-guides-canvas a{ color:inherit; text-decoration:none; }
#boss-guides-canvas button,
#boss-guides-canvas input,
#boss-guides-canvas select{ font:inherit; }

#boss-guides-canvas .container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:28px 16px 72px;
}

#boss-guides-canvas .hero{
  padding:36px 0 30px;
  border-bottom:1px solid var(--line);
  text-align:center;
}

#boss-guides-canvas .hero h1{
  margin:0;
  font-size:clamp(26px,3.2vw,42px);
  line-height:1.18;
  letter-spacing:-.055em;
  font-weight:700;
}

#boss-guides-canvas .hero-desc{
  margin:12px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.68;
  word-break:keep-all;
}

#boss-guides-canvas .hero-search{
  position:relative;
  max-width:860px;
  margin:28px auto 0;
}

#boss-guides-canvas .section{
  padding:0 0 30px;
  margin-bottom:34px;
  border-bottom:1px solid var(--line);
}

#boss-guides-canvas .hero + .section{
  padding-top:30px;
}

#boss-guides-canvas .section:last-child{
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:0;
}

#boss-guides-canvas .section-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

#boss-guides-canvas .section-title{
  font-size:19px;
  line-height:1.35;
  letter-spacing:-.03em;
  font-weight:700;
  color:var(--text);
}

#boss-guides-canvas .section-hint{
  font-size:13px;
  line-height:1.5;
  color:var(--faint);
  font-weight:400;
}

#boss-guides-canvas .topic-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
}

#boss-guides-canvas .topic-collapsible{
  position:relative;
  --topic-collapsed-height:238px;
  --topic-fade-height:86px;
}

#boss-guides-canvas .topic-toggle{
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}

#boss-guides-canvas .topic-collapsible.has-more{
  max-height:var(--topic-collapsed-height);
  overflow:hidden;
}

#boss-guides-canvas .topic-collapsible.has-more::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:var(--topic-fade-height);
  background:linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.94) 56%, #fff);
  pointer-events:none;
  z-index:1;
}

#boss-guides-canvas .topic-toggle:checked + .topic-collapsible.has-more{
  max-height:none;
  overflow:visible;
}

#boss-guides-canvas .topic-toggle:checked + .topic-collapsible.has-more::after{
  display:none;
}

#boss-guides-canvas .topic-more-panel{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  display:flex;
  justify-content:center;
  padding-top:38px;
  padding-bottom:2px;
  pointer-events:none;
}

#boss-guides-canvas .topic-toggle:checked + .topic-collapsible .topic-more-panel{
  position:relative;
  margin-top:12px;
  padding-top:0;
}

#boss-guides-canvas .topic-more-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-width:136px;
  min-height:50px;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:999px;
  background:rgba(255,255,255,.96);
  box-shadow:0 10px 26px rgba(15,23,42,.07) !important;
  color:#334155;
  padding:0 24px;
  font-family:inherit;
  font-size:15px;
  font-weight:700;
  letter-spacing:-.03em;
  cursor:pointer;
  backdrop-filter:blur(10px);
  pointer-events:auto;
  transition:background .16s ease, transform .16s ease, box-shadow .16s ease;
}

#boss-guides-canvas .topic-more-button:hover{
  background:#fff;
  transform:translateY(-1px);
  box-shadow:0 14px 34px rgba(17,24,39,.11), inset 0 1px 0 rgba(255,255,255,.9) !important;
}

#boss-guides-canvas .topic-more-close{
  display:none;
}

#boss-guides-canvas .topic-more-button::after{
  content:"";
  flex:0 0 auto;
  width:8px;
  height:8px;
  border-right:2px solid var(--point);
  border-bottom:2px solid var(--point);
  margin-top:-3px;
  transform:rotate(45deg);
  transition:transform .18s ease;
}

#boss-guides-canvas .topic-toggle:checked + .topic-collapsible .topic-more-open{
  display:none;
}

#boss-guides-canvas .topic-toggle:checked + .topic-collapsible .topic-more-close{
  display:inline;
}

#boss-guides-canvas .topic-toggle:checked + .topic-collapsible .topic-more-button::after{
  margin-top:4px;
  transform:rotate(225deg);
}

#boss-guides-canvas .topic-card{
  display:flex;
  min-height:64px;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:4px;
  padding:12px 16px;
  border:0 !important;
  border-radius:18px;
  background:var(--button);
  box-shadow:none !important;
  transition:background .16s ease, color .16s ease;
}

#boss-guides-canvas .topic-card:hover{
  background:var(--button-hover);
}

#boss-guides-canvas .topic-card:nth-child(-n+8){
  background:var(--point-soft);
}

#boss-guides-canvas .topic-title{
  min-width:0;
  font-size:14px;
  line-height:1.3;
  letter-spacing:-.028em;
  font-weight:600;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

#boss-guides-canvas .topic-card:nth-child(-n+8) .topic-title{
  color:var(--point-text);
}

#boss-guides-canvas .topic-meta{
  font-size:12px;
  line-height:1.2;
  color:var(--faint);
  font-weight:400;
}

#boss-guides-canvas .topic-empty,
#boss-guides-canvas .guide-empty{
  border-radius:16px;
  background:var(--subtle);
  padding:24px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

#boss-guides-canvas .controls{
  display:flex;
  justify-content:flex-end;
  margin-bottom:12px;
}

#boss-guides-canvas .search-wrap{
  position:relative;
}

#boss-guides-canvas .search-wrap::before{
  content:"";
  position:absolute;
  left:18px;
  top:50%;
  width:15px;
  height:15px;
  transform:translateY(-50%);
  border:2px solid var(--point);
  border-radius:999px;
  pointer-events:none;
}

#boss-guides-canvas .search-wrap::after{
  content:"";
  position:absolute;
  left:31px;
  top:calc(50% + 5px);
  width:8px;
  height:2px;
  background:var(--point);
  transform:rotate(45deg);
  border-radius:999px;
  pointer-events:none;
}

#boss-guides-canvas .input{
  width:100%;
  height:74px;
  padding:0 92px 0 52px;
  border:2px solid rgba(91,123,234,.82) !important;
  border-radius:999px;
  background:#fff;
  box-shadow:none !important;
  color:var(--text);
  font-size:18px;
  font-weight:500;
  letter-spacing:-.03em;
  outline:none;
  caret-color:var(--point);
}

#boss-guides-canvas .hero-search-button{
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border:0;
  border-radius:50%;
  background:transparent;
  color:var(--point);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
}

#boss-guides-canvas .hero-search-button svg{
  width:34px;
  height:34px;
}

#boss-guides-canvas .input::placeholder{
  color:rgba(17,17,17,.42);
}

#boss-guides-canvas .select{
  width:180px;
  height:38px;
  padding:0 16px;
  border:0 !important;
  border-radius:999px;
  background:var(--button);
  box-shadow:none !important;
  color:#5B6472;
  font-size:14px;
  font-weight:600;
  outline:none;
}

#boss-guides-canvas .input:focus{
  border-color:var(--point) !important;
}

#boss-guides-canvas .live-search-results{
  max-width:860px;
  margin:12px auto 0;
  padding:16px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  text-align:left;
}

#boss-guides-canvas .live-search-results[hidden]{
  display:none;
}

#boss-guides-canvas .live-search-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

#boss-guides-canvas .live-search-head strong{
  font-size:15px;
  line-height:1.35;
  letter-spacing:-.03em;
  font-weight:700;
  color:var(--text);
}

#boss-guides-canvas .live-search-head span{
  color:var(--faint);
  font-size:12px;
  white-space:nowrap;
}

#boss-guides-canvas .live-search-group{
  display:grid;
  gap:8px;
}

#boss-guides-canvas .live-search-label{
  margin:12px 0 2px;
  color:#4b5563;
  font-size:12px;
  font-weight:700;
}

#boss-guides-canvas .live-search-label:first-child{
  margin-top:0;
}

#boss-guides-canvas .live-result-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:42px;
  padding:10px 12px;
  border-radius:12px;
  background:var(--subtle);
  transition:background .16s ease;
}

#boss-guides-canvas .live-result-item:hover{
  background:var(--button-hover);
}

#boss-guides-canvas .live-result-item strong{
  min-width:0;
  font-size:14px;
  line-height:1.35;
  letter-spacing:-.03em;
  font-weight:600;
  word-break:keep-all;
}

#boss-guides-canvas .live-result-item span{
  flex:0 0 auto;
  color:var(--faint);
  font-size:12px;
  white-space:nowrap;
}

#boss-guides-canvas .live-search-empty{
  padding:18px 12px;
  border-radius:12px;
  background:var(--subtle);
  color:var(--muted);
  font-size:13px;
  text-align:center;
}

#boss-guides-canvas .guides-inline-ad{
  width:100%;
  margin:18px 0 0;
  padding:0 !important;
}

#boss-guides-canvas .guides-inline-ad .maintalk-inline-display-ad{
  width:100%;
  padding:0 !important;
}

#boss-guides-canvas .guides-inline-ad .maintalk-inline-display-ad__inner{
  width:100%;
  aspect-ratio:6 / 1;
  background:transparent;
  overflow:hidden;
  padding:0 !important;
}

#boss-guides-canvas .guides-inline-ad .maintalk-inline-display-ad__ins{
  display:block !important;
  width:100%;
  height:100%;
  padding:0 !important;
}

#boss-guides-canvas .active-filters{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

#boss-guides-canvas .active-filter{
  border:0 !important;
  box-shadow:none !important;
  background:transparent;
  color:rgba(17,17,17,.64);
  font-size:13px;
  font-weight:600;
  letter-spacing:-.03em;
  cursor:pointer;
}

#boss-guides-canvas .active-filter::before{
  content:"#";
  margin-right:2px;
  color:var(--point);
  font-weight:700;
}

#boss-guides-canvas .active-filter{
  color:var(--text);
}

#boss-guides-canvas .guide-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  column-gap:34px;
  row-gap:0;
}

#boss-guides-canvas .guide-grid.is-loading{
  opacity:.5;
}

#boss-guides-canvas .guide-card{
  display:block;
  min-height:0;
  padding:18px 0;
  border:0 !important;
  border-bottom:1px solid var(--soft-line) !important;
  border-radius:0;
  background:#fff;
  box-shadow:none !important;
  color:inherit;
  cursor:pointer;
}

#boss-guides-canvas .guide-card:hover{
  background:#fff;
}

#boss-guides-canvas .guide-card:first-child{
  padding-top:0;
}

#boss-guides-canvas .guide-content{
  min-width:0;
}

#boss-guides-canvas .guide-meta{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:7px;
}

#boss-guides-canvas .guide-badge{
  display:inline-flex;
  align-items:center;
  height:24px;
  padding:0 10px;
  border-radius:999px;
  background:var(--point-soft);
  color:var(--point-text);
  font-size:11px;
  font-weight:600;
}

#boss-guides-canvas .guide-updated{
  font-size:12px;
  color:var(--faint);
}

#boss-guides-canvas .guide-title{
  margin:0;
  font-size:16px;
  line-height:1.48;
  letter-spacing:-.02em;
  font-weight:600;
  word-break:keep-all;
  display:block;
  overflow:visible;
}

#boss-guides-canvas .guide-desc{
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
  line-height:1.68;
  word-break:keep-all;
  display:-webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

#boss-guides-canvas .pager{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

#boss-guides-canvas .pager-info{
  font-size:12px;
  color:var(--muted);
  font-weight:400;
  min-width:72px;
  text-align:center;
}

#boss-guides-canvas .btn{
  height:38px;
  padding:0 14px;
  border:0 !important;
  border-radius:999px;
  background:var(--button);
  box-shadow:none !important;
  color:#5B6472;
  font-size:12px;
  font-weight:600;
  cursor:pointer;
  transition:background .16s ease;
  white-space:nowrap;
}

#boss-guides-canvas .btn:hover{
  background:var(--button-hover);
}

#boss-guides-canvas .pager-btn[disabled],
#boss-guides-canvas .pager-btn.is-disabled{
  opacity:.45;
  cursor:not-allowed;
  pointer-events:none;
}

@media (max-width:980px){
  #boss-guides-canvas .container{
    padding:0 12px 56px;
  }

  #boss-guides-canvas .hero{
    padding:46px 0 36px;
  }

  #boss-guides-canvas .hero h1{
    font-size:clamp(24px,3vw,34px);
  }

  #boss-guides-canvas .hero-search{
    max-width:760px;
    margin-top:24px;
  }

  #boss-guides-canvas .input{
    height:64px;
    padding:0 76px 0 50px;
    font-size:16px;
  }

  #boss-guides-canvas .hero-search-button{
    right:10px;
    width:44px;
    height:44px;
  }

  #boss-guides-canvas .hero-search-button svg{
    width:24px;
    height:24px;
  }

  #boss-guides-canvas .controls{
    justify-content:stretch;
  }

  #boss-guides-canvas .select{
    height:38px;
    width:100%;
  }

  #boss-guides-canvas .topic-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  #boss-guides-canvas .topic-collapsible{
    --topic-collapsed-height:274px;
    --topic-fade-height:86px;
  }

  #boss-guides-canvas .guide-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    column-gap:24px;
  }

}

@media (max-width:760px){
  #boss-guides-canvas .container{
    padding:0 10px 48px;
  }

  #boss-guides-canvas .hero{
    padding:34px 0 28px;
  }

  #boss-guides-canvas .hero h1{
    font-size:20px;
    line-height:1.32;
  }

  #boss-guides-canvas .hero-desc{
    margin-top:10px;
    font-size:13px;
    line-height:1.6;
  }

  #boss-guides-canvas .hero-search{
    margin-top:24px;
  }

  #boss-guides-canvas .section{
    margin-bottom:24px;
    padding-bottom:24px;
  }

  #boss-guides-canvas .section-header{
    display:block;
    margin-bottom:12px;
  }

  #boss-guides-canvas .section-title{
    font-size:16px;
  }

  #boss-guides-canvas .section-hint{
    margin-top:6px;
    font-size:12px;
  }

  #boss-guides-canvas .input{
    height:56px;
    padding:0 64px 0 44px;
    border-width:1px !important;
    font-size:15px;
  }

  #boss-guides-canvas .hero-search-button{
    right:8px;
    width:38px;
    height:38px;
  }

  #boss-guides-canvas .hero-search-button svg{
    width:28px;
    height:28px;
  }

  #boss-guides-canvas .search-wrap::before{
    left:16px;
    width:14px;
    height:14px;
    border-width:1.8px;
  }

  #boss-guides-canvas .search-wrap::after{
    left:28px;
    width:7px;
  }

  #boss-guides-canvas .live-search-results{
    padding:14px;
  }

  #boss-guides-canvas .guides-inline-ad{
    margin:0;
    padding:0 !important;
  }

  #boss-guides-canvas .live-search-head{
    display:block;
    margin-bottom:10px;
  }

  #boss-guides-canvas .live-search-head span{
    display:block;
    margin-top:5px;
    white-space:normal;
  }

  #boss-guides-canvas .live-result-item{
    align-items:flex-start;
  }

  #boss-guides-canvas .live-result-item span{
    white-space:normal;
    text-align:right;
  }

  #boss-guides-canvas .active-filter{
    font-size:12px;
  }

  #boss-guides-canvas .topic-card{
    min-height:56px;
    padding:10px 12px;
    border-radius:16px;
  }

  #boss-guides-canvas .topic-collapsible{
    --topic-collapsed-height:264px;
  }

  #boss-guides-canvas .topic-more-button{
    min-width:126px;
    min-height:46px;
    padding:0 22px;
    font-size:14px;
  }

  #boss-guides-canvas .topic-title{
    font-size:12px;
  }

  #boss-guides-canvas .topic-meta{
    font-size:11px;
  }

  #boss-guides-canvas .guide-grid{
    grid-template-columns:1fr;
  }

  #boss-guides-canvas .guide-card{
    padding:14px 6px;
  }

  #boss-guides-canvas .guide-title{
    font-size:15px;
  }

  #boss-guides-canvas .guide-desc{
    font-size:12px;
    line-height:1.68;
  }
}
