/* template style */

.top_filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 16px;
  margin-bottom: 30px;
}

.top_filters__sort {
  display: flex;
  gap: clamp(10px, 3vw, 24px);
  @media screen and (max-width: 540px) {
    display: none;
  }
}

.top_filters__sort a:hover {
  color: var(--blue-F9);
}

.top_filters__sort a._active {
  font-weight: 500;
  color: var(--blue-F9);
  pointer-events: none;
}

.section_seo_desc {
  > hr {
    width: 100%;
    height: 1px;
    background: #ccc;
  }

  > p {
    margin: 0 0 15px 0;
  }

  > h2 {
    margin: 0 0 30px 0;
  }
}