:root {
    --bs-primary: #149F90;
    --bs-body-color: #000;
    --bs-body-bg: #fff;
  }
  
  /*— Background & Navbar —*/
body {
    background-color: #fdfdfd;
  }
  .navbar {
    z-index: 1020;
  }
  
  /*— Center content artikel —*/
  .content {
    margin: 0 auto;
  }
  .content h2, .content h3, .content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    color: #149F90;
  }
  .content p {
    margin-bottom: 1.25em;
    line-height: 1.8;
    color: #23272f;
  }
  
  /*— Blockquote styling —*/
  .content blockquote {
    margin: 1.5em 0;
    padding: 1em 1.5em;
    border-left: 4px solid #525252;
    background-color: rgba(183, 183, 183, 0.298);
    font-style: italic;
    position: relative;
    border-radius: 4px;
  }
  .content blockquote p {
    margin: 0;
    line-height: 1.6;
  }
  .content blockquote::before {
    content: "“";
    font-size: 20px;
    position: absolute;
    top: -2px;
    left: 10px;
    color: #525252;
  }
  .content blockquote::after {
    content: "”";
    font-size: 20px;
    position: absolute;
    bottom: -10px;
    right: 10px;
    color: #525252;
  }
  
  /*— Lists, tables, links, images —*/
  .content ul,
  .content ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
  }
  .content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
  }
  .content th,
  .content td {
    border: 1px solid #ddd;
    padding: 0.5em;
  }
  .content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
  }
  .content a {
    color: #149F90;
    text-decoration: underline;
  }
  
  /*— Responsive tweak untuk row reverse di mobile —*/
  @media (max-width: 767.98px) {
    .row.flex-md-row-reverse {
      flex-direction: column !important;
    }
  }
  
  footer {
    position: static !important;
    bottom: auto !important;
    width: 100%;
  }

  /* seluruh baris menjadi pointer + hover effect */
.block-row {
    display: block;        /* pastikan <a> full-width */
    cursor: pointer;
    transition: background-color .2s;
  }
  .block-row:hover,
  .block-row:focus {
    background-color: rgba(0, 0, 0, 0.05);
    text-decoration: none; /* hilangkan garis bawah */
  }
  