.card-catalog__image img {
	margin: 0 auto;
}

.card-catalog.card-catalog-empty {
	min-height: 160px;
}
.card-catalog.card-catalog-empty .card-catalog__descr {
    display: flex;
    flex-direction: column;
    justify-content: center;
	padding: 20px 30px 20px 10px;
}

.block__catalogs + .block__sticky {
	margin-top: 50px;
}

.card-catalog.card-catalog-backgound {
	background: none;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.card-catalog__more {
	margin-top: 20px;
	text-align: right;
	font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    text-decoration: underline;
	color: var(--theme-color-accent);
	cursor: pointer;
}

.card-catalog__more span::before {
	content: 'Еще разделы';
}

.card-catalog__descr ul li:nth-child(n + 5) {
	display: none;
}
.card-catalog__descr.active ul li:nth-child(n + 5) {
	display: list-item;
}

.card-catalog__descr.active span::before {
	content: 'Свернуть разделы';
}

.catalog-grid-cards {
  display: grid;
  /*grid-template-columns: 1fr 1fr 1fr;*/
   grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.catalog-grid-cards .card-catalog.card-catalog-empty {
  min-height: 175px;
  padding: 20px;
}

.catalog-grid-cards .card-catalog__descr {
  padding: 0;
}

.catalog-grid-cards .card-catalog__item {
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}

.card-catalog__list {
  display: flex;
  justify-content: end;
  gap: 6px;
}

.catalog-grid-cards .card-catalog__image {
  flex: 0 0 98px;
  width: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.catalog-grid-cards .card-catalog__image img {
  width: 98px;
  height: 134px;
  object-fit: contain;
}

.catalog-grid-cards .card-catalog__descr {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.catalog-grid-cards .card-catalog {
  gap: 20px;
  padding: 20px;
  background: #f7f7f7;
  min-height: auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  height: 100%;
}

.catalog-grid-cards .card-catalog__title a {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
}

.catalog-grid-cards .card-catalog {
  background-repeat: no-repeat;
  background-size: cover;
}

.grid__level1 .card-catalog__image img {
    display: none;
}

@media (max-width: 1300px) {
  .catalog-grid-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .catalog-grid-cards .card-catalog__title a {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .catalog-grid-cards {
    grid-template-columns: 1fr;
  }
}