/* Breadcrumbs */

.container {
  width: 100%;
}

.custom-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 30px;
  overflow: hidden;
}

.custom-breadcrumbs__item {
  display: block;
  position: relative;

  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  color: #6c6c6c;
  white-space: nowrap;
}

.custom-breadcrumbs__item:last-child {
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-overflow: ellipsis;

  overflow: hidden;
}

.custom-breadcrumbs__item:not(:last-child) {
  margin-right: 20px;
}

.custom-breadcrumbs__item:not(:last-child)::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translate(50%, -50%);

  background-image: url(../../../img/custom/svg/triangle.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Post iamges */

.wp-block-image {
  max-width: inherit;
  margin-bottom: 38px;
}

.wp-block-image img {
  max-width: inherit;
}

.wp-block-image figcaption {
  width: 100%;
  left: 0;
  right: unset;
  bottom: 0;
  transform: translateY(100%);

  font-size: 14px;
  font-style: normal;
  color: #909090;
  text-align: center;

  background: none;
}

/* Custom scrollbar */

.scrollbar-thumb {
  cursor: pointer !important;
}

/* Tags cloud block */

.tags-cloud {
  display: block;
  margin: 50px auto;
}

.tags-cloud__item {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  transition: text-decoration 200ms ease;
}

.tags-cloud__item:hover {
  z-index: 1;
}

.tags-cloud__item_color_blue {
  color: #23a4ca;
}

.tags-cloud__item_color_blue:hover {
  text-decoration-color: #23a4ca;
}

.tags-cloud__item_color_dark-blue {
  color: #0f0f2b;
}

.tags-cloud__item_color_dark-blue:hover {
  text-decoration-color: #0f0f2b;
}

@media screen and (max-width: 910px) {

  .tags-cloud {
    display: none;
  }

}

@media screen and (max-width: 640px) {

  .custom-breadcrumbs {
    display: none;
  }

}
