/************************
  TABEL LORONG KATA (LEGACY — SAFE SCROLL)
  - Tidak mengubah layout paragraf
  - Wrapper scroll horizontal di HP
  - Hover tanpa geser (aman)
*************************/
/* pastikan konten post tidak melebar keluar viewport */
.td-post-content {
  max-width: 100%;
  box-sizing: border-box;
}
/* wrapper tabel agar bisa discroll */
.responsive-table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0 22px;
  border-radius: 8px;
  /* optional: garis tipis agar terlihat rapi tanpa “memotong” */
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}
/* tabel inti */
table.tabellorongkata {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  /* desktop lega, HP tetap bisa geser */
  background: #fff;
  color: #222;
  /* jangan pakai border-radius di table (sering tidak konsisten),
     radius tetap di wrapper */
  border: none;
}
/* header sticky (kalau kamu pakai thead) */
table.tabellorongkata thead {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #000;
}
table.tabellorongkata thead th,
table.tabellorongkata thead td {
  color: #fff;
  font-weight: 700;
  padding: 12px 12px;
  text-align: center;
  font-size: 15px;
  border-bottom: 3px solid #d40000;
  white-space: nowrap;
}
/* isi tabel */
table.tabellorongkata tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.45;
}
/* zebra */
table.tabellorongkata tbody tr:nth-child(odd) {
  background: #fafafa;
}
/* hover: aman, tidak geser layout */
@media (hover: hover) and (pointer: fine) {
  table.tabellorongkata tbody tr {
    transition: background-color 0.18s ease, box-shadow 0.18s ease;
  }
  table.tabellorongkata tbody tr:hover {
    background: #e8e8e8;
    box-shadow: inset 4px 0 0 #d40000;
  }
}
/* link */
table.tabellorongkata tbody td a {
  color: #d40000;
  text-decoration: none;
  font-weight: 700;
  transition: opacity .18s ease, color .18s ease;
}
table.tabellorongkata tbody td a:hover {
  text-decoration: underline;
  color: #990000;
}
/* kolom pertama (fragmen) jangan dipaksa center, biar tetap natural
   kalau kamu mau center, aktifkan lagi */
table.tabellorongkata tbody td:first-child {
  font-weight: 700;
}
/* HP: tetap scroll, cukup kecilkan padding/font */
@media (max-width: 600px) {
  .responsive-table-wrapper {
    border-radius: 10px;
  }
  table.tabellorongkata {
    min-width: 720px;
  }
  table.tabellorongkata tbody td,
  table.tabellorongkata thead th,
  table.tabellorongkata thead td {
    padding: 10px 10px;
    font-size: 14px;
  }
}
table.tabellorongkata td:first-child div {
  margin-top: 6px;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  /* pindahan dari inline style */
  line-height: 1.4;
  opacity: .78;
}