.news__section {
  padding: 80px 0 160px;
  background: url(/images/section__pattern.png) repeat;
}
.news__tab {
  margin-bottom: 40px;
}
.news__tab-list {
  max-width: 769px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  -moz-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  position: relative;
}
.news__tab-back {
  height: 100%;
  position: absolute;
  background: #C6006F;
  border-radius: 30px;
  top: 0;
  transition: left 0.3s ease, width 0.3s ease, top 0.3s ease;
}
.news__tab-el {
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.news__tab-el:focus {
  outline: none;
}
.news__tab-el.is-active {
  color: #fff;
}
.news__container {
  max-width: 940px;
  margin: 0 auto;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.news__container-wrap {
  margin-bottom: 60px;
}
.news__container.is-active {
  max-height: 9999px;
  opacity: 1;
  pointer-events: auto;
}
.news__container-ttl {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}
.news__container-el {
  padding: 0 20px 30px;
  border-bottom: 1px solid #707070;
}
.news__container-el:not(:last-child) {
  margin-bottom: 30px;
}
.news__container-link {
  display: grid;
  grid-template-columns: minmax(auto, 184px) minmax(auto, 696px);
  grid-template-rows: 123px;
  gap: 20px;
}
.news__container-link picture {
  background: #EFEFEF;
}
.news__container-tags {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px;
  margin-bottom: 10px;
}
.news__container-tag {
  color: #151515;
  font-size: 12px;
  font-weight: 400;
  height: 20px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 4px;
}
.news__container-lead {
  font-size: clamp(1.125rem, 0.964rem + 0.34vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.news__container-body {
  color: #3B4043;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news__numbers-wrap {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: 30px;
  display: none;
}
.news__numbers-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(auto, 30px));
  grid-template-rows: 30px;
  gap: 10px;
}
.news__numbers-el a {
  color: #707070;
  font-size: 16px;
  font-weight: 500;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.news__numbers-el.is-active a {
  color: #fff;
  background: #C6006F;
  border-radius: 50%;
}
.news__numbers-arrow--right {
  rotate: 180deg;
}

.noinfo{
 text-align: center;
}

@media (max-width: 768px) {
  .news__section {
    padding: 80px 0;
  }
  .news__tab {
    margin-bottom: 20px;
  }
  .news__tab-list {
    max-width: unset;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 48px);
  }
  .news__tab-el {
    height: 100%;
  }
  .news__container-wrap {
    margin-bottom: 40px;
  }
  .news__container-ttl {
    font-size: 20px;
  }
  .news__container-link {
    grid-template-columns: 1fr;
    grid-template-rows: clamp(13.313rem, -0.702rem + 59.8vw, 28rem) auto;
    gap: 10px;
  }
}/*# sourceMappingURL=style.css.map */