.page-description {
  margin: 36px 0;
  padding: 24px 24px 48px;
  background: #F3F3F3;
  border-radius: 16px;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
}
.page-description:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  transition: opacity 0.3s ease 0.3s;
  opacity: 1;
  background: linear-gradient(to bottom, #F3F3F300 0%, #F3F3F3 60%, #F3F3F3 100%);
  pointer-events: none;
}
.page-description.expanded {
  max-height: 5000px;
  padding: 24px;
}
.page-description.expanded:after {
  opacity: 0;
}
.page-description .show-more-btn {
  position: absolute;
  left: 24px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #327DB4;
  cursor: pointer;
}
.page-description .show-more-btn i,
.page-description .show-more-btn i:before {
  text-decoration: none;
}
.page-description h1 {
  font-size: 24px;
}
.page-description h1 strong {
  font-weight: 600;
}
.page-description p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  color: #333333;
  margin: 15px 0 0 0;
}
.page-description h2,
.page-description h3,
.page-description h4 {
  font-style: normal;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: #333333;
  margin: 15px 0 0 0;
}
.page-description h2 strong,
.page-description h3 strong,
.page-description h4 strong {
  font-weight: 600;
}
.page-description h2 {
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .page-description h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
.page-description h3 {
  font-size: 18px;
  line-height: 18px;
}
.page-description ul {
  padding: 0 0 0 15px;
  margin: 15px 0 0 0;
}
.page-description ol {
  padding: 0 0 0 20px;
  margin: 15px 0 0 0;
}
.page-description li p {
  margin: 0;
}
.catalog.page-description p {
  display: block;
}
.sponsored {
  background-color: #F3F0E2;
}
.sponsored .photo .sponsor {
  display: block;
}
/*# sourceMappingURL=page-description.css.map */