.section.section_catalog {
  margin-top: 50px;
}

.catalog-card-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.catalog-card {
  width: calc(33.3333% - 40px);
  max-width: 544px;
  min-width: 300px;
  height: 316px;
  overflow: hidden;
  border-radius: 20px;
}

.catalog-card__preview {
  position: relative;
  width: 100%;
  height: 316px;
  display: inline-block;
}

.catalog-card__img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 316px;
  transition: transform 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.catalog-card__preview:hover .catalog-card__img {
  transform: translate(-50%, -50%) scale(1.1);
}

.catalog-card__preview:after {
  content: "";
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 32.73%,
    #000 114.43%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
}

.catalog-card__data {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalog-card__title {
  color: #fff;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.84px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catalog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 68px;
  overflow: hidden;
}

.catalog-tag-list.catalog-tag-list_filter {
  position: sticky;
  z-index: 98;
  top: 119px;
  background-color: #fff;
  padding: 10px 0 20px 0;
  margin-bottom: -20px;
  max-height: unset;
}

.catalog-tag {
  background-color: #bbbdc0;
  color: #fff;
  border-radius: 20px;
  padding: 5px 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  font-family: solomon, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.42px;
}

.catalog-tag.catalog-tag_active {
  background-color: var(--Red);
}

.catalog-section__title {
  color: #231f20;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.84px;
}

.catalog-section__title a {
  transition: all 0.3s ease;
}

.catalog-section__title a:hover {
  color: #ef4836;
  text-decoration: none;
}

.catalog-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  scroll-margin-top: 140px;
}

.catalog-section-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 0 0 0;
}

.catalog-card-list__toggle {
  display: none;
}

@media screen and (max-width: 1439px) {
  .catalog-card {
    width: calc(50% - 40px);
    max-width: unset;
  }
}

@media screen and (max-width: 1279px) {
  .catalog-tag-list.catalog-tag-list_filter {
    top: 112px;
  }
}

@media screen and (max-width: 1023px) {
  .catalog-tag-list.catalog-tag-list_filter {
    top: 108px;
  }
}

@media screen and (max-width: 767px) {
  .catalog-card {
    width: 100%;
    height: 164px;
  }
  .catalog-card-list {
    gap: 8px;
  }
  .catalog-card__data {
    padding: 20px;
  }
  .catalog-card__preview {
    height: 164px;
  }
  .catalog-card__img {
    min-height: 164px;
  }
  .catalog-section-list {
    gap: 32px;
  }
  .catalog-section {
    gap: 32px;
  }
  .catalog-card__title {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.6px;
  }
  .catalog-tag-list.catalog-tag-list_filter {
    flex-wrap: nowrap;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .catalog-tag-list.catalog-tag-list_filter::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .catalog-tag {
    overflow: unset;
  }
  .catalog-card-list__show-more {
    display: block;
    width: 100%;
    padding: 5px 0;
    background: #fff;
    border: unset;
    cursor: pointer;
  }

  .catalog-card-list.limited .catalog-card:nth-child(n + 3) {
    display: none;
  }

  .catalog-card-list.limited .catalog-card {
    display: none;
  }
  .catalog-card-list.limited .catalog-card:nth-child(-n + 2) {
    display: block;
  }

  .catalog-card-list__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 5px 0;
    background: #fff;
    border: unset;
    cursor: pointer;
    /* SolomonSans/Teg medium */
    font-family: solomon, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.42px;
    transition: background 0.3s ease;
  }

  .catalog-card-list__toggle-icon {
    transition: transform 0.3s ease;
  }

  .catalog-card-list__toggle.show-less .catalog-card-list__toggle-icon {
    transform: rotate(180deg);
  }

  .catalog-card-list:not(.limited) .catalog-card-list__toggle {
    display: none;
  }
}