/* ========================= */
/*   WRAPPER & HEADER FORUM  */
/* ========================= */

#forum {
  margin-top: 12px;
}

/* Header hijau FORUM hanya di dalam #forum */
#forum .page-header {
  background: #01A532;
  color: #fff;
  padding: 14px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  border-radius: 10px;
}

/* Tombol POSTING di header */
#forum .header-post-btn {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #01A532;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

#forum .page-header-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#forum .page-header-sub {
  font-size: 12px;
  opacity: 0.95;
  margin-top: 2px;
  font-weight: 400;
}

/* Sedikit rapikan padding section forum agar konsisten */
.wg-section#butuh-cepat,
.wg-section#tanpa-toko {
  padding-left: 12px;
  padding-right: 12px;
}




/* ========================= */
/*  SECTION 1: BUTUH CEPAT   */
/* ========================= */

#butuh-cepat .bc-wrapper {
  background: #f5f6f7;
  border-radius: 10px;
  padding: 8px 6px 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

#butuh-cepat .bc-feed-frame {
  height: 260px;
  overflow: hidden;
  position: relative;
}

#butuh-cepat .bc-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: bcScrollUp 30s linear infinite;
}

#butuh-cepat .bc-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Kartu postingan */
#butuh-cepat .wg-post {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

/* === PATCH utama: badge jangan nabrak === */
#butuh-cepat .wg-sec-badge {
  position: static !important;              /* bukan absolute */
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(24,119,242,0.06);
  border: 1px solid rgba(24,119,242,0.18);
  color: #0b3a86;
}

/* Sumber (Facebook / WhatsApp / Langsung) di dalam badge */
#butuh-cepat .wg-source {
  font-size: 10px;
  font-weight: 600;
  color: #01A532;
}

/* Header nama + avatar */
#butuh-cepat .wg-post-header {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

#butuh-cepat .wg-avatar {
  width: 36px;
  height: 36px;
  background: #d8d8d8;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}

#butuh-cepat .wg-user-name {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
}

/* TAG (Kurir, Kosan, dll) */
#butuh-cepat .wg-tag {
  display: inline-block;
  margin-left: 4px;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #1877f2;
  color: #fff;
  white-space: nowrap;
}

/* Waktu & lokasi */
#butuh-cepat .wg-time {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #777;
}

/* Isi teks kebutuhan */
#butuh-cepat .wg-text {
  margin: 6px 0 8px;
  font-size: 13px;
  line-height: 1.4rem;
}

/* Tombol WA */
#butuh-cepat .wg-wa-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

/* Animasi scroll */
@keyframes bcScrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}


/* ========================= */
/*  SECTION 2: TANPA TOKO    */
/* ========================= */

#tanpa-toko .tt-wrapper {
  background: #ffffff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Judul kecil di dalam kartu */
#tanpa-toko .tt-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

#tanpa-toko .tt-subtitle {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

/* Slider horizontal */
#tanpa-toko .tt-slider {
  display: flex;
  flex-direction: row;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}

#tanpa-toko .tt-slider::-webkit-scrollbar {
  display: none;
}

/* Kartu foto */
#tanpa-toko .tt-card {
  flex-shrink: 0;
  width: 230px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Gambar */
#tanpa-toko .tt-img-wrap {
  width: 100%;
  height: 130px;
  overflow: hidden;
}

#tanpa-toko .tt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge hitam di atas gambar */
#tanpa-toko .tt-sec-badge {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.75);
  color: #fff;
}

/* Caption di bawah gambar */
#tanpa-toko .tt-caption {
  padding: 8px 10px 10px;
}

/* Biar teks tidak nabrak dan boleh turun baris */
#tanpa-toko .tt-caption * {
  display: block;
  white-space: normal;
}

#tanpa-toko .tt-user {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

#tanpa-toko .tt-time {
  font-size: 11px;
  color: #777;
  margin-bottom: 4px;
}

#tanpa-toko .tt-text {
  font-size: 12px;
  line-height: 1.4rem;
  color: #444;
}

/* === PATCH TERAKHIR: RAPIKAN BADGE BUTUH CEPAT === */
#butuh-cepat article.wg-post .wg-sec-badge {
  position: relative !important;   /* Bukan absolute lagi */
  top: auto !important;
  right: auto !important;
  left: 0 !important;
  transform: none !important;

  display: inline-flex !important;
  align-items: center;
  gap: 4px;

  margin: 0 0 4px 0 !important;

  font-size: 10px !important;
  padding: 2px 6px !important;
  border-radius: 999px;
  background: rgba(24,119,242,0.06);
  border: 1px solid rgba(24,119,242,0.18);
  color: #0b3a86;
}

/* teks sumber di dalam badge */
#butuh-cepat article.wg-post .wg-sec-badge .wg-source {
  font-size: 10px !important;
  font-weight: 600;
  color: #01A532;
}

/* Footer Butuh Cepat */
#butuh-cepat .wg-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

/* Badge baru */
#butuh-cepat .bc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(24,119,242,0.06);
  border: 1px solid rgba(24,119,242,0.18);
  color: #0b3a86;
}

/* Sumber */
#butuh-cepat .bc-source {
  font-size: 10px;
  font-weight: 600;
  color: #01A532;
}

#butuh-cepat .wg-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

#butuh-cepat .bc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(24,119,242,0.06);
  border: 1px solid rgba(24,119,242,0.18);
  color: #0b3a86;
}

#butuh-cepat .bc-source {
  font-size: 10px;
  font-weight: 600;
  color: #01A532;
}
