.tags .label {
  display: none;
}
.tags .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tags .item {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: auto;
  border-width: 0;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 0.8em;
  padding-top: 0.8em;
  padding-left: 2.5em;
  padding-right: 2.5em;
  display: inline-flex;
  border-radius: 0;
  cursor: pointer;
  transition-property: background-color, border-color, color;
  transition-duration: 0.2s;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25em;
  background-color: #ae0e1f;
  border: 2px solid #ae0e1f;
  border-radius: 4px;
  padding: 0.8em 1.9em;
  color: inherit;
  text-transform: uppercase;
  font-size: 0.625rem;
  line-height: 1.3em;
  text-transform: uppercase;
  padding: 0.35em 1.6em;
  pointer-events: none;
}
.tags .item:hover {
  background-color: #6f0f0f;
  border-color: #6f0f0f;
}
.tags .item:active, .tags .item:focus {
  background-color: #ae0e1f;
  border-color: #fefefe;
}
.tags .item.disabled {
  background-color: #989898;
  border-color: #989898;
  cursor: not-allowed;
}

.article_box {
  display: grid;
  grid-template: 'image title' min-content 'image perex' 1fr 'image button' min-content / 28% 1fr;
  gap: 1.5rem 2rem;
  max-width: 60rem;
}
.article_box__image {
  grid-area: image;
}
.article_box__title {
  grid-area: title;
}
.article_box__perex {
  grid-area: perex;
}
.article_box__button {
  grid-area: button;
}
.article_box__texts {
  grid-area: texts;
}
.article_box__image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 11 / 8;
  position: relative;
}
.article_box__image img {
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: cover;
  max-height: initial;
  max-width: initial;
}
.article_box__image img {
  border-radius: 4px;
}
.article_box__image::after {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, transparent 6.41%, #050505 93.14%);
  inset: 30% 0 0;
  opacity: 0.5;
}
.article_box__title {
  font-weight: 700;
  margin-bottom: 0.4em;
  font-size: 1rem;
  line-height: 1.375em;
  margin-bottom: 0;
}
.article_box__button {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: auto;
  border-width: 0;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 0.8em;
  padding-top: 0.8em;
  padding-left: 2.5em;
  padding-right: 2.5em;
  display: inline-flex;
  border-radius: 0;
  cursor: pointer;
  transition-property: background-color, border-color, color;
  transition-duration: 0.2s;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25em;
  background-color: #ae0e1f;
  border: 2px solid #ae0e1f;
  border-radius: 4px;
  padding: 0.8em 1.9em;
  color: inherit;
  text-transform: uppercase;
  font-size: 0.625rem;
  line-height: 1.3em;
  text-transform: uppercase;
  padding: 0.35em 1.6em;
  justify-self: start;
}
.article_box__button:hover {
  background-color: #6f0f0f;
  border-color: #6f0f0f;
}
.article_box__button:active, .article_box__button:focus {
  background-color: #ae0e1f;
  border-color: #fefefe;
}
.article_box__button.disabled {
  background-color: #989898;
  border-color: #989898;
  cursor: not-allowed;
}
.article_box__texts {
  display: contents;
}
.article_box .tags {
  display: none;
  margin-bottom: 0.8rem;
}
.article_box + .article_box {
  margin-top: 2rem;
}
.article_box:hover .article_box__button {
  background-color: #6f0f0f;
  border-color: #6f0f0f;
}
@media only screen and (max-width: 600px) {
  .article_box {
    grid-template-rows: 1fr;
    grid-template-areas: 'image title';
    align-items: center;
  }
  .article_box__perex, .article_box__button {
    display: none;
  }
}

.paginator_wrapper {
  display: flex;
  justify-content: center;
  margin-top: -11rem;
  padding-top: 8rem;
  position: relative;
}
.paginator_wrapper::before {
  content: "";
  display: block;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  background-image: linear-gradient(to bottom, transparent, #050505 90%);
}
.paginator_wrapper .paginator_item {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: auto;
  border-width: 0;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 0.8em;
  padding-top: 0.8em;
  padding-left: 2.5em;
  padding-right: 2.5em;
  display: inline-flex;
  border-radius: 0;
  cursor: pointer;
  transition-property: background-color, border-color, color;
  transition-duration: 0.2s;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25em;
  background-color: #ae0e1f;
  border: 2px solid #ae0e1f;
  border-radius: 4px;
  padding: 0.8em 1.9em;
  color: inherit;
  text-transform: uppercase;
  background-color: #191919;
  border-color: #fefefe;
  gap: 1em;
  display: inline-flex !important;
  position: relative;
  border-color: transparent;
}
.paginator_wrapper .paginator_item:hover {
  background-color: #6f0f0f;
  border-color: #6f0f0f;
}
.paginator_wrapper .paginator_item:active, .paginator_wrapper .paginator_item:focus {
  background-color: #ae0e1f;
  border-color: #fefefe;
}
.paginator_wrapper .paginator_item.disabled {
  background-color: #989898;
  border-color: #989898;
  cursor: not-allowed;
}
.paginator_wrapper .paginator_item:hover {
  background-color: #989898;
  border-color: #fefefe;
}
.paginator_wrapper .paginator_item.disabled {
  background-color: #191919;
}
.paginator_wrapper .paginator_item::after {
  content: "";
  display: block;
  position: absolute;
  height: 1em;
  width: 1em;
  position: static;
  background: transparent url("/media/img/arrow-right-xlarge.svg") no-repeat center center/contain;
}
.paginator_wrapper .paginator_item .waiter-inspire .waiter-inspire-text {
  display: none;
}
.paginator_wrapper .paginator_item .waiter-inspire .waiter-inspire-img-helper {
  margin-left: auto;
  margin-right: auto;
  max-width: 2rem;
}
.paginator_wrapper .paginator_item::after {
  transform: rotate(0.25turn);
}

.main_content {
  background-color: #050505;
}

.articles {
  padding-bottom: 4rem;
  padding-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1380px;
  width: 100%;
  max-width: 1176px;
  display: flow-root;
}
@media only screen and (max-width: 600px) {
  .articles {
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 600px) {
  .articles {
    padding-top: 3rem;
  }
}
@media only screen and (min-width: 451px) {
  .articles {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media only screen and (max-width: 450px) {
  .articles {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.articles .article_box:nth-child(1),
.articles .article_box:nth-child(2),
.articles .article_box:nth-child(3) {
  transition: box-shadow 0.5s;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.articles .article_box:nth-child(1):hover,
.articles .article_box:nth-child(2):hover,
.articles .article_box:nth-child(3):hover {
  box-shadow: 0 0 30px 0 rgba(254, 254, 254, 0.5);
}
.articles .article_box:nth-child(1):hover .article_box__image img,
.articles .article_box:nth-child(2):hover .article_box__image img,
.articles .article_box:nth-child(3):hover .article_box__image img {
  transform: scale(1.05);
}
.articles .article_box:nth-child(1) .article_box__image img,
.articles .article_box:nth-child(2) .article_box__image img,
.articles .article_box:nth-child(3) .article_box__image img {
  transition: transform 0.5s;
}
@media only screen and (min-width: 601px) and (max-width: 900px) {
  .articles .article_box:nth-child(1) .article_box__image,
  .articles .article_box:nth-child(2) .article_box__image,
  .articles .article_box:nth-child(3) .article_box__image {
    aspect-ratio: 3 / 1 !important;
  }
}
.articles .article_box:nth-child(1) .article_box__texts,
.articles .article_box:nth-child(2) .article_box__texts,
.articles .article_box:nth-child(3) .article_box__texts {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.articles .article_box:nth-child(1) .article_box__title,
.articles .article_box:nth-child(2) .article_box__title,
.articles .article_box:nth-child(3) .article_box__title {
  font-weight: 700;
  margin-bottom: 0.4em;
  font-size: 1.5rem;
  line-height: 1.33333em;
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 600px) {
  .articles .article_box:nth-child(1) .article_box__title,
  .articles .article_box:nth-child(2) .article_box__title,
  .articles .article_box:nth-child(3) .article_box__title {
    font-size: 1rem;
    line-height: 1.375em;
    margin-bottom: 1em;
  }
}
.articles .article_box:nth-child(1) .article_box__perex, .articles .article_box:nth-child(1) .article_box__button,
.articles .article_box:nth-child(2) .article_box__perex,
.articles .article_box:nth-child(2) .article_box__button,
.articles .article_box:nth-child(3) .article_box__perex,
.articles .article_box:nth-child(3) .article_box__button {
  display: none;
}
.articles .article_box:nth-child(1) .article_box__image {
  aspect-ratio: 1 / 0.99;
}
.articles .article_box:nth-child(1) .article_box__image::after {
  background-image: linear-gradient(to bottom, transparent 6.41%, #ae0e1f 93.14%);
}
.articles .article_box:nth-child(2) .article_box__image,
.articles .article_box:nth-child(3) .article_box__image {
  aspect-ratio: 53 / 25;
}
@media only screen and (min-width: 901px) {
  .articles .article_box:nth-child(1) .tags,
  .articles .article_box:nth-child(2) .tags,
  .articles .article_box:nth-child(3) .tags {
    display: block;
  }
  .articles .article_box:nth-child(1) {
    float: left;
    width: calc(50% - 0.75rem);
  }
  .articles .article_box:nth-child(2),
  .articles .article_box:nth-child(3) {
    margin-left: 1.5rem;
    float: right;
    width: calc(50% - 0.75rem);
  }
  .articles .article_box:nth-child(2) {
    margin-top: 0;
  }
  .articles .article_box:nth-child(3) {
    margin-top: 1.5rem;
  }
  .articles .article_box:nth-child(4) {
    clear: both;
    grid-template-rows: min-content min-content 1fr min-content;
    grid-template-areas: 'cleaner cleaner' 'image title' 'image perex' 'image button';
  }
  .articles .article_box:nth-child(4)::before {
    content: "";
    display: block;
    height: 0.5rem;
    grid-area: cleaner;
  }
}

.filter {
  margin-bottom: 3rem;
}
.filter .field,
.filter .buttons_wrapper {
  display: none;
}
.filter .radio_group,
.filter .multichoice_items {
  display: contents;
}
@media only screen and (min-width: 401px) {
  .filter label {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    cursor: auto;
    border-width: 0;
    font-size: inherit;
    line-height: inherit;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 0.8em;
    padding-top: 0.8em;
    padding-left: 2.5em;
    padding-right: 2.5em;
    display: inline-flex;
    border-radius: 0;
    cursor: pointer;
    transition-property: background-color, border-color, color;
    transition-duration: 0.2s;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25em;
    background-color: #ae0e1f;
    border: 2px solid #ae0e1f;
    border-radius: 4px;
    padding: 0.8em 1.9em;
    color: inherit;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.21429em;
    padding-left: 1em;
    padding-right: 1em;
    border-width: 1px;
    text-transform: none;
    display: flex;
    white-space: nowrap;
  }
  .filter label:hover {
    background-color: #6f0f0f;
    border-color: #6f0f0f;
  }
  .filter label:active, .filter label:focus {
    background-color: #ae0e1f;
    border-color: #fefefe;
  }
  .filter label.disabled {
    background-color: #989898;
    border-color: #989898;
    cursor: not-allowed;
  }
  .filter .multichoice_item,
  .filter .item.fake {
    flex-basis: 0;
    flex-grow: 1;
  }
  .filter .multichoice_item:not(.selected) label,
  .filter .item.fake:not(.selected) label {
    background-color: #191919;
    border-color: #fefefe;
    background-color: #050505;
    border-color: #333;
  }
  .filter .multichoice_item:not(.selected) label:hover,
  .filter .item.fake:not(.selected) label:hover {
    background-color: #989898;
    border-color: #fefefe;
  }
  .filter .multichoice_item:not(.selected) label.disabled,
  .filter .item.fake:not(.selected) label.disabled {
    background-color: #191919;
  }
  .filter .filter_restriction {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media only screen and (max-width: 400px) {
  .filter {
    background-color: #0f0f0f;
    border: 1px solid #333;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
  }
  .filter .filter_restriction,
  .filter .restrictions_wrapper,
  .filter form {
    display: contents;
  }
  .filter .multichoice_item,
  .filter .item.fake {
    display: none;
  }
  .filter .multichoice_item label,
  .filter .item.fake label {
    transition: color 0.2s;
    padding: 0.5em 2.3em;
    text-align: center;
    display: block;
  }
  .filter .multichoice_item label:hover,
  .filter .item.fake label:hover {
    color: #ee1128;
  }
  .filter .multichoice_item.selected,
  .filter .item.fake.selected {
    pointer-events: none;
    order: -1;
    display: block;
  }
  .filter .multichoice_item.selected label,
  .filter .item.fake.selected label {
    font-weight: 700;
    color: #ae0e1f;
    position: relative;
  }
  .filter .multichoice_item.selected label::after,
  .filter .item.fake.selected label::after {
    content: "";
    display: block;
    position: absolute;
    height: 0.8em;
    width: 0.8em;
    top: 50%;
    transform: translateY(-50%);
    background: url("/media/img/arrow-down.svg") no-repeat center center/contain;
    pointer-events: none;
    right: 1em;
  }
  .filter--opened .multichoice_item,
  .filter--opened .item.fake {
    display: block;
  }
}
