/* ============================================================
   Royal DS — cross-site breadcrumb styling
   - .rds-breadcrumb  : zelf-geïnjecteerde balk (sites zonder eigen breadcrumb)
   - .breadcrumbs     : bestaande BootstrapMade-balk — alleen het scheidingsteken
                        wordt gelijkgetrokken naar "›" voor consistentie.
   ============================================================ */

.rds-breadcrumb {
  background-color: #f8fbfd;
  border-bottom: 1px solid #eef3f6;
}
.rds-breadcrumb__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 20px;
}
.rds-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  color: #6c757d;
}
.rds-breadcrumb ol li {
  display: inline-flex;
  align-items: center;
}
.rds-breadcrumb ol li + li::before {
  content: "\203A"; /* › */
  padding: 0 8px;
  color: #adb5bd;
}
.rds-breadcrumb a {
  color: #e30613;
  text-decoration: none;
}
.rds-breadcrumb a:hover {
  text-decoration: underline;
}
.rds-breadcrumb li[aria-current="page"] {
  color: #272725;
  font-weight: 600;
}

/* Bestaande BootstrapMade-breadcrumb: scheidingsteken gelijktrekken naar "›" */
.breadcrumbs ol li + li::before {
  content: "\203A";
}

/* RTL (Arabisch) */
[dir="rtl"] .rds-breadcrumb ol {
  flex-direction: row-reverse;
}
[dir="rtl"] .rds-breadcrumb ol li + li::before,
[dir="rtl"] .breadcrumbs ol li + li::before {
  content: "\2039"; /* ‹ */
}

@media (max-width: 640px) {
  .rds-breadcrumb__inner { padding: 10px 16px; }
  .rds-breadcrumb ol { font-size: 13px; }
}
