.bit-article-header{
  margin-top: 0;
}

.bit-article-title{
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 6px;
  color: #111827;
}

.bit-article-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
}

.bit-article-author{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #29a4c5;
  font-weight: 600;
}

.bit-article-date{
  color: #9ca3af;
  font-weight: 600;
}

.bit-article-meta-sep{
  display: none;
}

/* ── Reactions bar (Like + Laporkan) ── */
.bit-article-reactions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 4px;
}

.bit-article-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border: 1.5px solid rgba(41,164,197,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #6b7280;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
  -webkit-tap-highlight-color: transparent;
}

.bit-article-like-btn:hover {
  background: rgba(255,255,255,.92);
}

.bit-article-like-btn:active {
  transform: scale(.96);
}

.bit-article-like-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: fill .2s ease, stroke .2s ease, transform .2s ease;
}

.bit-article-like-btn.is-liked {
  color: #ef4444;
  border-color: rgba(239,68,68,.35);
  background: rgba(255,241,241,.85);
}

.bit-article-like-btn.is-liked .bit-article-like-icon {
  fill: #ef4444;
  stroke: #ef4444;
  transform: scale(1.15);
}

.bit-article-like-count {
  font-size: 13px;
  font-weight: 800;
  min-width: 10px;
}

.bit-article-report-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid rgba(41,164,197,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #6b7280;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
  -webkit-tap-highlight-color: transparent;
}

.bit-article-report-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.bit-article-report-btn:hover {
  background: rgba(255,255,255,.92);
}

.bit-article-report-btn:active {
  transform: scale(.96);
}

/* ── Share Button ── */
.bit-article-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid rgba(41,164,197,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #6b7280;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.bit-article-share-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.bit-article-share-btn:hover {
  background: rgba(255,255,255,.92);
}

.bit-article-share-btn:active {
  transform: scale(.96);
}

/* ── Share Dropdown ── */
.bit-share-dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(41,164,197,.22);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,.13), 0 1.5px 6px rgba(41,164,197,.08);
  z-index: 200;
  min-width: 190px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: bitShareDDIn .14s ease;
}

@keyframes bitShareDDIn {
  from { opacity: 0; transform: translateX(-50%) translateY(6px) scale(.97); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.bit-share-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: none;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  border-radius: 10px;
  color: #374151;
  transition: background .12s;
  text-decoration: none;
}

.bit-share-item:hover {
  background: rgba(41,164,197,.08);
}

.bit-share-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 16px;
  flex-shrink: 0;
}

.bit-share-item-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.bit-share-item--copy .bit-share-item-icon  { background: rgba(107,114,128,.10); border: 1px solid rgba(107,114,128,.18); }
.bit-share-item--wa .bit-share-item-icon    { background: rgba(37,211,102,.10);  border: 1px solid rgba(37,211,102,.25); }
.bit-share-item--line .bit-share-item-icon  { background: rgba(0,195,0,.10);     border: 1px solid rgba(0,195,0,.25); }
.bit-share-item--email .bit-share-item-icon { background: rgba(107,114,128,.10); border: 1px solid rgba(107,114,128,.18); }
.bit-share-item--tg .bit-share-item-icon    { background: rgba(0,136,204,.10);   border: 1px solid rgba(0,136,204,.22); }

.bit-share-item-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

/* ── Comments Empty State ── */
.bit-comments-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 16px 28px;
  gap: 12px;
  text-align: center;
}

.bit-comments-empty-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(41,164,197,.12), rgba(41,164,197,.06));
  border: 1.5px solid rgba(41,164,197,.22);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(41,164,197,.75);
  box-shadow: 0 6px 18px rgba(41,164,197,.10);
  animation: bitEmptyBounce 2.8s ease-in-out infinite;
}

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

.bit-comments-empty-icon svg {
  width: 36px;
  height: 36px;
}

.bit-comments-empty-title {
  font-weight: 900;
  font-size: 15px;
  color: #1f2937;
  letter-spacing: -.01em;
}

.bit-comments-empty-sub {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.5;
}

.bit-comments-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(41,164,197,.14), rgba(41,164,197,.08));
  border: 1px solid rgba(41,164,197,.25);
  font-size: 13px;
  font-weight: 800;
  color: #1d9bd1;
  cursor: pointer;
  text-decoration: none;
  transition: background .14s, transform .12s;
}

.bit-comments-empty-cta:hover {
  background: linear-gradient(135deg, rgba(41,164,197,.22), rgba(41,164,197,.14));
  transform: translateY(-1px);
}

.bit-icon-user{
  width: 14px;
  height: 14px;
  display: block;
}

.bit-article-author /* ── Comments Empty State ── */
.bit-comments-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 16px 28px;
  gap: 12px;
  text-align: center;
}

.bit-comments-empty-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(41,164,197,.12), rgba(41,164,197,.06));
  border: 1.5px solid rgba(41,164,197,.22);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(41,164,197,.75);
  box-shadow: 0 6px 18px rgba(41,164,197,.10);
  animation: bitEmptyBounce 2.8s ease-in-out infinite;
}

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

.bit-comments-empty-icon svg {
  width: 36px;
  height: 36px;
}

.bit-comments-empty-title {
  font-weight: 900;
  font-size: 15px;
  color: #1f2937;
  letter-spacing: -.01em;
}

.bit-comments-empty-sub {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.5;
}

.bit-comments-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(41,164,197,.14), rgba(41,164,197,.08));
  border: 1px solid rgba(41,164,197,.25);
  font-size: 13px;
  font-weight: 800;
  color: #1d9bd1;
  cursor: pointer;
  text-decoration: none;
  transition: background .14s, transform .12s;
}

.bit-comments-empty-cta:hover {
  background: linear-gradient(135deg, rgba(41,164,197,.22), rgba(41,164,197,.14));
  transform: translateY(-1px);
}

.bit-icon-user{
  color: #111827;
}

.bit-recommended{
  margin-top: 12px;
  padding-top: 0;
}

.bit-recommended .bit-section-title{
  margin-top: 0;
}

.bit-ulasan-img{
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.bit-article-cover{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  width: 100%;
  aspect-ratio: 16 / 9;
}

.bit-article-cover img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bit-article-content{
  margin-top: 12px;
  padding: 0;
  color: #111827;
}

.bit-article-content p{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: #111827;
}

.bit-article-content h3{
  margin: 14px 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
}

.bit-article-figure{
  margin: 16px 0;
}

.bit-article-figure img{
  width: 100%;
  border-radius: 12px;
  display: block;
}

.bit-article-figure figcaption{
  font-size: 12px;
  color: #5a6b75;
  margin-top: 6px;
  line-height: 1.4;
}

.bit-yt-embed{
  margin: 16px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  background: #000;
  aspect-ratio: 16 / 9;
}

.bit-yt-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.bit-comments{
  margin-top: 18px;
  padding: 16px 16px 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(41,164,197,.22);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.bit-comments-title{
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #111827;
}

.bit-avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.bit-avatar--default{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #111827;
}

.bit-avatar-icon{
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(.95);
}

.bit-guest-composer{
  margin: 10px 0 14px;
}

.bit-guest-note{
  font-size: 11px;
  color: #6b7280;
  margin: 0 0 6px;
  font-weight: 600;
}

.bit-guest-textarea{
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #dbeafe;
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  min-height: 72px;
  resize: vertical;
  outline: none;
  background: #ffffff;
  color: #111827;
}

.bit-guest-textarea:focus{
  border-color: #29a4c5;
  box-shadow: 0 0 0 3px rgba(41,164,197,.18);
}

.bit-guest-footer{
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bit-guest-input{
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  border: 1.5px solid #dbeafe;
  border-radius: 11px;
  padding: 7px 11px;
  font: inherit;
  outline: none;
  background: #ffffff;
  color: #111827;
}

.bit-guest-input:focus{
  border-color: #29a4c5;
  box-shadow: 0 0 0 3px rgba(41,164,197,.12);
}

.bit-guest-actions{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.bit-guest-hint{
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

.bit-guest-post{
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  font-size: 13px;
  background: #2f8fb0;
  color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
}

.bit-guest-post:active{
  transform: translateY(1px);
}

.bit-comment{
  display: flex;
  gap: 10px;
  padding: 10px 0;
}

.bit-comment-body{
  flex: 1;
  min-width: 0;
}

.bit-comment-head{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.bit-comment-name{
  font-weight: 800;
  color: #111827;
  font-size: 15px;
  line-height: 1.1;
}

.bit-comment-time{
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}

.bit-more-btn{
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  color: #111827;
  letter-spacing: 2px;
  padding: 4px 6px;
  border-radius: 10px;
}

.bit-comment-text{
  margin: 10px 0 6px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
}

.bit-readmore{
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  color: #29a4c5;
  text-decoration: none;
  margin-bottom: 8px;
}

.bit-comment-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

.bit-action{
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-weight: 700;
  font-size: 13px;
}

.bit-action .bit-icon{
  width: 16px;
  height: 16px;
  display: block;
  color: #6b7280;
}

.bit-icon-like,
.bit-icon-like path {
  stroke: #6b7280 !important;
  color: #6b7280;
}

.bit-action.is-liked .bit-icon-like,
.bit-action.is-liked .bit-icon-like path {
  stroke: #29a4c5 !important;
  color: #29a4c5;
}

.bit-reply-btn{
  display: none;
}

.bit-reply-open-btn {
  font-size: 12px;
  font-weight: 800;
  color: #29a4c5;
}

/* ── YouTube-style replies toggle ── */
.bit-replies-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  color: #29a4c5;
  padding: 4px 0;
}

.bit-replies-toggle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.bit-replies-toggle.is-open svg {
  transform: rotate(180deg);
}

.bit-replies-toggle:hover {
  opacity: .8;
}

.bit-comment-divider{
  height: 1px;
  background: #dbeafe;
  margin: 8px 0;
}

.bit-load-more{
  width: 100%;
  margin: 14px 0 4px;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: #2f8fb0;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.bit-load-more:hover{
  filter: brightness(.98);
}

.bit-load-more:active{
  transform: translateY(1px);
}

.bit-section-title{
  margin: 0 0 12px;
}

.bit-article-summary{
  margin: 14px 0 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.50));
  border: 1px solid rgba(41,164,197,.16);
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .bit-article-summary {
    padding: 10px 12px;
  }
  .bit-article-summaryHead {
    margin-bottom: 8px;
    padding-left: 12px;
  }
  .bit-article-summaryList {
    gap: 7px;
    padding-left: 12px;
  }
  .bit-article-summaryList li {
    font-size: 13px;
    line-height: 1.55;
    padding-left: 16px;
  }
  .bit-article-summaryList li::before {
    width: 7px;
    height: 7px;
    top: 0.65em;
  }
}

.bit-article-summary::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: rgba(41,164,197,.45);
  opacity: .75;
}

.bit-article-summaryHead{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  padding-left: 14px;
}

.bit-article-summaryTitle{
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1.2;
}

.bit-article-summaryTitle::before{
  content: none !important;
}

.bit-article-summaryTag{
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  background: rgba(41,164,197,.08);
  border: 1px solid rgba(41,164,197,.18);
  opacity: .90;
}

.bit-article-summaryList{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
  padding-left: 14px;
}

.bit-article-summaryList li{
  position: relative;
  padding-left: 18px;
  font-weight: 650;
  line-height: 1.65;
  opacity: .92;
}

.bit-article-summaryList li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(41,164,197,.46);
  box-shadow: 0 0 0 3px rgba(41,164,197,.10);
}

@media (min-width: 1025px){
  .bit-article-summary{
    margin: 16px 0 14px;
    padding: 16px 18px;
    border-radius: 20px;
    max-width: 760px;
  }

  .bit-article-summary::before{
    left: 12px;
    top: 16px;
    bottom: 16px;
  }

  .bit-article-summaryTitle{
    font-size: 15px;
  }

  .bit-article-summaryList{
    gap: 11px;
  }
}

/* WordPress block image caption */
figure.wp-block-image figcaption,
figure.wp-block-image .wp-element-caption{
  font-size: 12px;
  color: #5a6b75;
  margin-top: 6px;
  line-height: 1.4;
  text-align: left;
}

/* ── Gambar artikel: konsisten 16:9 (mobile) ── */
.bit-article-content figure.wp-block-image,
.bit-article-content .wp-block-image {
  margin: 16px 0;
  border-radius: 14px;
  overflow: visible;
  width: 100%;
  aspect-ratio: unset;
  box-shadow: none;
}

.bit-article-content figure.wp-block-image img,
.bit-article-content .wp-block-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.bit-article-content figure.wp-block-image figcaption,
.bit-article-content figure.wp-block-image .wp-element-caption,
.bit-article-content .wp-block-image figcaption,
.bit-article-content .wp-block-image .wp-element-caption {
  display: block !important;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
  text-align: left;
  font-style: normal;
  padding: 5px 0 0;
  background: transparent;
  border-top: none;
  border-radius: 0;
}

/* ── Pagination artikel (ke latest list) ── */
.bit-article-pagination {
  margin-top: 16px;
}

/* ── Auto Caption Gambar ── */
.bit-img-figure {
  margin: 16px 0;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.bit-img-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.bit-img-caption {
  display: block;
  font-size: 12px;
  color: #5a6b75;
  background: rgba(255,255,255,.82);
  text-align: center;
  font-style: italic;
  line-height: 1.5;
  padding: 7px 12px;
  border-top: 1px solid rgba(41,164,197,.10);
}

/* ── Reply nested ── */
.bit-replies-list {
  margin-top: 10px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(41,164,197,.20);
  padding-left: 12px;
}

/* Mobile: max 3 level indent (YouTube-style) */
@media (max-width: 1024px) {
  /* Level 2: kurangi indent */
  .bit-replies-list .bit-replies-list {
    margin-left: 14px;
    padding-left: 10px;
  }
  /* Level 3+: flat, tidak ada indent tambahan */
  .bit-replies-list .bit-replies-list .bit-replies-list,
  .bit-replies-list .bit-replies-list .bit-replies-list .bit-replies-list,
  .bit-replies-list .bit-replies-list .bit-replies-list .bit-replies-list .bit-replies-list {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 0;
  }
  /* Sembunyikan replies toggle di depth 3+ (sudah flat) */
  [data-depth="3"] .bit-replies-toggle,
  [data-depth="4"] .bit-replies-toggle,
  [data-depth="5"] .bit-replies-toggle,
  [data-depth="6"] .bit-replies-toggle {
    display: none !important;
  }

  /* Reply composer di depth 2+ full width keluar dari indent */
  [data-depth="2"] > .bit-comment-body > .bit-reply-composer {
    margin-left: -40px;
    margin-right: -12px;
  }
  [data-depth="3"] > .bit-comment-body > .bit-reply-composer,
  [data-depth="4"] > .bit-comment-body > .bit-reply-composer,
  [data-depth="5"] > .bit-comment-body > .bit-reply-composer {
    margin-left: -80px;
    margin-right: -12px;
  }
}

/* Desktop: max 5 level indent */
@media (min-width: 1025px) {
  /* Level 6+: flat, tidak ada indent tambahan */
  .bit-replies-list .bit-replies-list .bit-replies-list .bit-replies-list .bit-replies-list .bit-replies-list,
  .bit-replies-list .bit-replies-list .bit-replies-list .bit-replies-list .bit-replies-list .bit-replies-list .bit-replies-list {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 0;
  }
  /* Sembunyikan replies toggle di depth 5+ (sudah flat) */
  [data-depth="5"] .bit-replies-toggle,
  [data-depth="6"] .bit-replies-toggle,
  [data-depth="7"] .bit-replies-toggle {
    display: none !important;
  }
}

.bit-comment--reply {
  padding: 8px 0;
}

.bit-comment--reply .bit-avatar {
  width: 28px;
  height: 28px;
}

.bit-comment--reply .bit-comment-name {
  font-size: 13px;
}

.bit-comment--reply .bit-comment-time {
  font-size: 11px;
}

.bit-comment--reply .bit-comment-text {
  font-size: 13px;
}

/* ── Reply composer ── */
.bit-reply-composer {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(41,164,197,.05);
  border: 1px solid rgba(41,164,197,.16);
  border-radius: 12px;
}

.bit-reply-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #dbeafe;
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  font-size: 13px;
  min-height: 60px;
  resize: vertical;
  outline: none;
  background: #ffffff;
  color: #111827;
}

.bit-reply-textarea:focus {
  border-color: #29a4c5;
  box-shadow: 0 0 0 3px rgba(41,164,197,.14);
}

.bit-reply-footer {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bit-reply-input {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #dbeafe;
  border-radius: 10px;
  padding: 6px 10px;
  font: inherit;
  font-size: 13px;
  outline: none;
  background: #ffffff;
  color: #111827;
}

.bit-reply-input:focus {
  border-color: #29a4c5;
  box-shadow: 0 0 0 3px rgba(41,164,197,.12);
}

.bit-reply-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.bit-reply-cancel {
  border: none;
  background: #f3f4f6;
  color: #374151;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.bit-reply-post {
  border: none;
  background: #29a4c5;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}

.bit-reply-post:active {
  transform: translateY(1px);
}

/* ── Character counter inside textarea ── */
.bit-textarea-wrap {
  position: relative;
  display: block;
}

.bit-textarea-wrap .bit-guest-textarea {
  padding-bottom: 28px;
}

.bit-char-counter {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  pointer-events: none;
  line-height: 1;
  transition: color 0.2s ease;
  font-family: inherit;
}


/* ── Report Modal ── */
.bit-report-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 99998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: bitReportFadeIn .18s ease;
  padding-bottom: env(safe-area-inset-bottom, 0);
  isolation: isolate;
}

@media (min-width: 600px) {
  .bit-report-overlay {
    align-items: center;
  }
}

@keyframes bitReportFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.bit-report-modal {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 24px 24px 0 0;
  padding: 20px 20px 28px;
  animation: bitReportSlideUp .22s ease;
  position: relative;
  z-index: 1;
  isolation: isolate;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@media (min-width: 600px) {
  .bit-report-modal {
    border-radius: 24px;
    padding: 24px;
  }
}

@keyframes bitReportSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bit-report-handle {
  width: 36px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 999px;
  margin: 0 auto 18px;
}

@media (min-width: 600px) {
  .bit-report-handle { display: none; }
}

.bit-report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.bit-report-title {
  font-size: 16px;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

.bit-report-close {
  border: none;
  background: #f3f4f6;
  color: #6b7280;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex-shrink: 0;
}

.bit-report-close:hover {
  background: #e5e7eb;
}

.bit-report-subtitle {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  margin: 0 0 16px;
}

.bit-report-options {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.bit-report-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color .12s ease, background .12s ease;
  width: 100%;
}

.bit-report-option:hover {
  border-color: #29a4c5;
  background: rgba(41,164,197,.04);
}

.bit-report-option.is-selected {
  border-color: #29a4c5;
  background: rgba(41,164,197,.07);
}

.bit-report-option-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.bit-report-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bit-report-option-label {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}

.bit-report-option-desc {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  line-height: 1.3;
}

.bit-report-note-wrap {
  margin-bottom: 14px;
  display: none;
}

.bit-report-note-wrap.is-visible {
  display: block;
}

.bit-report-note {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #dbeafe;
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  min-height: 72px;
  resize: none;
  outline: none;
  background: #ffffff;
  color: #111827;
}

.bit-report-note:focus {
  border-color: #29a4c5;
  box-shadow: 0 0 0 3px rgba(41,164,197,.14);
}

.bit-report-submit {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 14px;
  background: #2f8fb0;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: filter .12s ease, transform .1s ease;
}

.bit-report-submit:hover {
  filter: brightness(1.05);
}

.bit-report-submit:active {
  transform: translateY(1px);
}

.bit-report-submit:disabled {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
}

/* ── Write a reply button ── */
.bit-write-reply-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #29a4c5;
  padding: 6px 0 2px;
  text-align: left;
}

.bit-write-reply-btn:hover {
  opacity: .75;
}

/* ── Dislike button ── */
.bit-icon-dislike,
.bit-icon-dislike path {
  stroke: #6b7280 !important;
  color: #6b7280;
}

.bit-action-dislike.is-disliked .bit-icon-dislike,
.bit-action-dislike.is-disliked .bit-icon-dislike path {
  stroke: #29a4c5 !important;
  color: #29a4c5;
}

/* ── Load more replies button ── */
.bit-load-more-replies {
  display: inline-block;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  color: #29a4c5;
  padding: 6px 0 2px;
  text-align: left;
  width: auto;
}

.bit-load-more-replies:hover {
  opacity: .75;
}

.bit-load-more-replies:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ── Ads Mobile Artikel ── */
@media (max-width: 1024px) {
  .bit-ads-mobile {
    width: 100%;
    min-height: 250px;
    margin: 16px 0;
    border-radius: 12px;
    background: rgba(255,255,255,.50);
    border: 1px dashed rgba(41,164,197,.30);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .bit-ads-mobile .bit-ads-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,.25);
    pointer-events: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .bit-ads-mobile-incontent {
    margin: 20px 0;
  }

  /* Pos 2 (bawah comment) tampil di mobile juga */
  .bit-ads-pos2 {
    max-width: 100%;
    min-height: 250px;
    margin: 16px 0;
    border-radius: 12px;
    background: rgba(255,255,255,.50);
    border: 1px dashed rgba(41,164,197,.30);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
}
