/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 02 2026 | 15:51:58 */
/* =============================================
   JA Legal — Blog Post Table Styles
   (matches the expertise-page look, auto-applied)
   ============================================= */

/* ---- Base table ---- */
.single .post-area .post-content table {
  width: 100% !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 13.5px !important;
  table-layout: auto !important;
  border: 1px solid #BF9874 !important;
  margin: 24px 0 !important;
}

/* ---- Strip the editor's inline height/width ---- */
.single .post-area .post-content table[style] {
  height: auto !important;
  width: 100% !important;
}

/* ---- Header row (first row) — navy bg, gold uppercase text ---- */
.single .post-area .post-content table tbody tr:first-child {
  background: #001025 !important;
}
.single .post-area .post-content table tbody tr:first-child td {
  color: #BF9874 !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 14px 18px !important;
  border: 1px solid #BF9874 !important;
  white-space: nowrap !important;
}

/* ---- Body rows ---- */
.single .post-area .post-content table tbody tr {
  background: #001025 !important;
  border-bottom: 1px solid #BF9874 !important;
  transition: background 0.2s ease;
}
.single .post-area .post-content table tbody tr:hover {
  background: #001a3a !important;
}

/* ---- Cells ---- */
.single .post-area .post-content table tbody td {
  color: #e8e4db !important;
  font-size: 13.5px !important;
  padding: 13px 18px !important;
  line-height: 1.6 !important;
  border: 1px solid #BF9874 !important;
  vertical-align: top !important;
}

/* ---- Neutralize inline spans the editor may add ---- */
.single .post-area .post-content table tbody td span {
  font-weight: 400 !important;
  color: inherit !important;
}

/* ---- Kill theme dash bullets if a cell has a list ---- */
.single .post-area .post-content table li::before {
  content: none !important;
}

/* ==============================================
   RESPONSIVE — horizontal scroll on small screens
   ============================================== */
@media (max-width: 768px) {
  .single .post-area .post-content table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    min-width: 0 !important;
    white-space: nowrap;
  }
  .single .post-area .post-content table tbody td {
    padding: 10px 14px !important;
    font-size: 12.5px !important;
  }
  .single .post-area .post-content table tbody tr:first-child td {
    font-size: 10px !important;
    padding: 10px 14px !important;
  }
}