/* breadcrumbs */

.breadcrumbs {
  display: flex;
  gap: 8px;
  font-weight: 500;
  line-height: 120%;
  color: #222;
  align-items: center;
  position: relative;
  transition: all 0.3s;
  font-family: var(--font-family);
  font-size: 16px;
}

.breadcrumbs .home {
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #007abc;
}

.breadcrumbs__divider {
  position: relative;
  width: 20px;
  height: 20px;
  background: center / cover no-repeat
    url("/wp-content/uploads/2025/05/material-symbols_chevron-right.svg");
  margin-top: -3px;
}

.breadcrumbs__divider:last-child {
  display: none;
}

.breadcrumbs_wrapper {
  border-bottom: 1px solid #e6e6e6;
}

@media screen and (min-width: 1201px) {
  .breadcrumbs {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .breadcrumbs a {
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-skip-ink: none;
    transition: all 0.3s;
  }

  .breadcrumbs a:hover {
    text-decoration-color: #007abc;
  }
}

@media screen and (max-width: 1200px) {
  .breadcrumbs a:active {
    color: #002845;
  }

  .breadcrumbs {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media screen and (min-width: 701px) {
  .breadcrumbs [property="name"] {
    display: flex;
  }
}

@media screen and (max-width: 700px) {
  .breadcrumbs {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .breadcrumbs {
    font-size: 12px;
  }
}

@media screen and (max-width: 400px) {
  .breadcrumbs.container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
