@charset "UTF-8";
.category {
  margin-bottom: 40px;
}
.category .header {
  margin: 25px 0 10px;
  display: flex;
  align-items: center;
}
.category .header h2 {
  margin: 0;
}
.category .content {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.category .content .card {
  width: 32%;
  background: #F7F7F7;
  padding: 16px 24px;
  border-radius: 12px;
}
.category .content .card h4 {
  font-size: 1.2em;
  font-weight: 500;
}
.category .content .card p {
  font-size: 0.9em;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* максимум 5 строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category .content .card .tags p {
  margin: 10px 0;
  padding: 4px 15px;
  background: #fff;
  border-radius: 4px;
  width: max-content;
}
.category .content .card img {
  width: 100%;
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}
.category .content .card a {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin-top: 10px;
  background: #2BB06D;
  color: #fff;
  border-radius: 12px;
  border: none;
  font-size: 1.2em;
  font-weight: 500;
  padding: 18px;
}
.category .content.article {
  flex-direction: column;
}
.category .content.article .article-image {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  border-radius: 12px;
}
.category .content.article h4 {
  font-size: 1.2em;
}
.category .content.article p {
  font-size: 1em;
  margin-bottom: 0;
  color: #000;
}

@media (max-width: 700px) {
  .category .content .card {
    width: 100%;
  }
}

/*# sourceMappingURL=category.css.map */
