#collection-block .collection__title {
  text-align: center;
}
#collection-block .collection__inner {
  padding: 30px;
  background: var(--bg);
  border-radius: 10px;
}
#collection-block .collection__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
#collection-block .collection__name {
  margin-bottom: 15px;
}
#collection-block .collection__prices {
  display: flex;
  gap: 10px;
  align-items: center;
}
#collection-block .collection__price {
  color: var(--headPrimary);
}
#collection-block .collection__price-old {
  color: var(--mainTextSecondary);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  line-height: 1;
}
#collection-block .gallery__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 195px);
  gap: 10px;
  margin-bottom: 20px;
}
#collection-block .gallery__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
#collection-block .gallery__item:nth-child(1) {
  grid-area: 1/1/3/3;
}
#collection-block .gallery__item:nth-child(2) {
  grid-area: 1/3/3/5;
}
#collection-block .gallery__item:nth-child(3) {
  grid-area: 1/5/2/7;
}
#collection-block .gallery__item:nth-child(4) {
  grid-area: 2/5/3/7;
}
#collection-block .gallery__item-img {
  height: 100%;
  width: 100%;
}
#collection-block .gallery__item-benefit {
  color: var(--card);
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: absolute;
  border-radius: 5px;
  top: 10px;
  left: 10px;
}

@media screen and (max-width: 1200px) {
  #collection-block .gallery__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }
  #collection-block .gallery__item {
    grid-area: unset !important;
  }
}
@media screen and (max-width: 800px) {
  #collection-block .gallery__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 650px) {
  #collection-block .collection__inner {
    padding: 20px;
  }
}
@media screen and (max-width: 490px) {
  #collection-block .collection__name {
    margin-bottom: 10px;
  }
  #collection-block .collection__prices {
    margin-bottom: 15px;
  }
  #collection-block .gallery__item-img {
    min-height: 120px;
  }
}/*# sourceMappingURL=block.css.map */