.breadcrumbs {
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumbs__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  color: #637381;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .breadcrumbs__link:hover {
    text-decoration: underline;
  }
}
.breadcrumbs__link--inactive {
  color: #051320;
}
.breadcrumbs__link--inactive:hover {
  text-decoration: none;
}

.page-blog__container {
  width: 100%;
  max-width: 898px;
  padding: 0 16px;
  margin: 0 auto;
}
.page-blog__header {
  padding-bottom: 16px;
  border-bottom: 1px solid #dfe4ea;
  margin-bottom: 32px;
}
.page-blog__category-switcher {
  border-bottom: 1px solid #dfe4ea;
  padding: 20px 20px 0px;
  margin-bottom: 40px;
  display: flex;
  gap: 14px;
  overflow-y: hidden;
  overflow-x: scroll;
}
.page-blog__category-switcher::-webkit-scrollbar {
  width: 0;
  height: 0;
}
@media screen and (max-width: 768px) {
  .page-blog__category-switcher {
    padding: 0;
  }
}
.page-blog__category-switcher-item {
  border: 1px solid #dfe4ea;
  border-radius: 5px 5px 0 0;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  text-decoration: none;
  margin-bottom: -1px;
}
.page-blog__category-switcher-item span {
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  color: #111928;
}
.page-blog__category-switcher-item--active {
  background-color: #2563eb;
  border-color: #2563eb;
}
.page-blog__category-switcher-item--active span {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page-blog__category-switcher-item {
    white-space: nowrap;
  }
}
.page-blog__title {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 54px;
  line-height: 110%;
  color: #051320;
}
@media screen and (max-width: 768px) {
  .page-blog__title {
    font-size: 36px;
  }
}
.page-blog__caption {
  display: flex;
  align-items: center;
  gap: 24px;
}
.page-blog__date {
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  color: #5f6871;
}
.page-blog__author {
  font-size: 16px;
  line-height: 110%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #2563eb;
}
.page-blog__recent-posts {
  margin-top: 80px;
  margin-bottom: 40px;
}
.page-blog__recent-posts-title {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: #21272a;
  text-decoration: none;
}
.page-blog__recent-posts-grid {
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .page-blog__recent-posts-grid {
    flex-direction: column;
  }
}
.page-blog__recent-post-card {
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(192, 189, 189, 0.25);
  background: #fff;
  flex: 1;
}
.page-blog__recent-post-image {
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 179px;
  overflow: hidden;
  background-color: #F7F7F9;
}
.page-blog__recent-post-image img {
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-blog__recent-post-content {
  padding: 18px;
  padding-bottom: 24px;
}
.page-blog__recent-post-title {
  height: 72px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 700;
  font-size: 20px;
  color: #2d3748;
  line-height: 120%;
}
.page-blog__recent-post-title a {
  text-decoration: none;
}
.page-blog__recent-post-excerpt {
  line-height: 120%;
  height: 51px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: 14px;
  color: #718096;
}
.page-blog__recent-post-meta {
  margin-top: 20px;
  margin-bottom: 20px;
}
.page-blog__recent-post-date {
  display: block;
  font-size: 12px;
  color: #718096;
}
.page-blog__recent-post-read-more {
  font-weight: 700;
  font-size: 12px;
  color: #2d3748;
  text-decoration: none;
}
.page-blog__recent-post-read-more:hover {
  text-decoration: underline;
}
.page-blog__content {
  font-size: 16px;
  line-height: 140%;
  color: rgba(5, 19, 32, 0.8);
}
.page-blog__content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  color: rgba(5, 19, 32, 0.8);
}
@media screen and (max-width: 768px) {
  .page-blog__content h3 {
    font-size: 24px;
  }
}
.page-blog__content h6 {
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  color: rgba(5, 19, 32, 0.8);
}
.page-blog__content p {
  margin-top: 16px;
  margin-bottom: 16px;
}
.page-blog__content ul {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 42px;
}
.page-blog__content ul li {
  list-style: unset;
  margin-bottom: 10px;
}
.page-blog__content ul li:last-child {
  margin-bottom: unset;
}
.page-blog__content figure {
  margin-top: 40px;
  margin-bottom: 40px;
}
.page-blog__content figure img {
  border-radius: 8px;
}/*# sourceMappingURL=page-blog.css.map */