.baca-juga-box {
      background: #f9f9f9;
      padding: 10px 15px;
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      margin-top: 20px;
      border-left: 3px solid <?php echo esc_html($primary_color); ?>;
    }

    .baca-juga-box strong {
      color: <?php echo esc_html($primary_color); ?>;
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .baca-juga-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .baca-juga-list li {
      margin: 4px 0;
      display: flex;
      align-items: center;
    }

    .baca-juga-list .separator {
      color: <?php echo esc_html($primary_color); ?>;
      margin-right: 6px;
      font-size: 12px;
    }

    .baca-juga-list a {
      color: #000;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .baca-juga-list a:hover {
      color: <?php echo esc_html($primary_color); ?>;
      text-decoration: underline;
    }