/* ============================================
   TOGGLE PANEL
============================================ */
.ss-ctt-toggle {
  background: none;
  border: none;
  font-size: 13px;
  opacity: .55;
  margin-bottom: 10px;
  cursor: pointer;
  padding: 0;
  transition: opacity .2s;
}
.ss-ctt-toggle:hover {
  opacity: .75;
}

/* ============================================
   PANEL WRAPPER
============================================ */
.ss-ctt-panel {
  overflow: hidden;
  transition: all .28s ease-out;
}

/* Hidden State (unik) */
.ss-ctt-panel.is-ctt-hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

/* ============================================
   TAB NAV
============================================ */
.ss-ctt-tabs-nav {
  display: flex;
  position: relative;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  gap: 22px;
}

.ss-ctt-tab-btn {
  background: none;
  border: none;
  font-family: "Lato", sans-serif;
  font-size: 15.8px;
  padding: 6px 0 12px;
  cursor: pointer;
  opacity: .6;
  transition: opacity .25s;
}
.ss-ctt-tab-btn.active {
  opacity: 1;
}

/* Indicator Line */
.ss-ctt-tab-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 36px;
  height: 2px;
  background: #d33;
  border-radius: 1px;
  opacity: .9;
  transition: transform .22s ease, width .22s ease;
}

/* ============================================
   TAB CONTENT
============================================ */
.ss-ctt-tabs-content {
  margin-top: 6px;
}

.ss-ctt-tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .26s ease-out, transform .26s ease-out;
}
.ss-ctt-tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0px);
}

/* ============================================
   IKLAN (NAMESPACE CTT)
============================================ */
.ss-ctt-ads-wrap {
  margin-top: 26px;
}

.ss-ctt-iklan-footnote {
  margin-top: .6em;
  font-size: .65em;
  color: #777;
  font-style: italic;
  border-top: 1px solid #eee;
  padding-top: .4em;
}
.ss-ctt-iklan-footnote a {
  color: #d33;
  text-decoration: none;
}
.ss-ctt-iklan-footnote a:hover {
  text-decoration: underline;
}