/**
 * Breadcrumb de Global Printed — Figma 49-3005.
 * Enlaces Outfit Medium 16 subrayados; separador chevron-right 20; elemento
 * actual (H1) Outfit Light 16 sin subrayar. Todo #4b419e.
 */

.gp-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 24px 40px;
  font-family: Outfit, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Arial, sans-serif;
}

.gp-breadcrumb__link {
  color: #4b419e;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-decoration: underline;
  white-space: nowrap;
}

.gp-breadcrumb__link--plain {
  text-decoration: none;
  cursor: default;
}

.gp-breadcrumb__sep {
  flex-shrink: 0;
  color: #4b419e;
}

/* Elemento actual = <h1>. Se resetea el tamaño/peso por defecto del H1 del tema. */
.gp-breadcrumb__current {
  margin: 0;
  padding: 0;
  color: #4b419e;
  font-size: 16px;
  font-weight: 300; /* Outfit Light */
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .gp-breadcrumb {
    padding: 24px 16px;
  }

  /* En móvil permite que los textos largos hagan wrap. */
  .gp-breadcrumb__link,
  .gp-breadcrumb__current {
    white-space: normal;
  }
}
