/* Компонент карточки поста категории */
.category-post-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 20px;
  background: var(--white);
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-post-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-post-card__image {
  position: relative;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
}

.category-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-post-card:hover .category-post-card__image img {
  transform: scale(1.05);
}

.category-post-card__image .category-post-card__rating {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.category-post-card__rating .post-rating-score {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  padding: 5px 10px;
  border-radius: 100px;
  margin: 0;
  display: flex;
  gap: 5px;
  align-items: center;
  line-height: 1;
}

.category-post-card__rating .post-rating-score__rating {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #232323;
  display: flex;
  margin-top: 3px;
}

.category-post-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 20px 0;
}

.category-post-card__header {
  margin: 0;
}

.category-post-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.275;
  margin: 0;
  color: var(--text);
}

.category-post-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-post-card__title a:hover {
  color: var(--primary);
}

.category-post-card__meta {
  margin: 0;
}

.category-post-card__excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.category-post-card__footer {
  margin-top: auto;
}

.category-post-card__button {
  width: fit-content;
  height: 50px;
  padding: 0 32px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.275;
}

/* Адаптивность */
@media (max-width: 768px) {
  .category-post-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .category-post-card__image {
    width: 100%;
    height: 192px;
  }

  .category-post-card__rating {
    top: 10px;
    right: 10px;
  }

  .category-post-card__content {
    padding: 0;
  }

  .category-post-card__title {
    font-size: 18px;
  }

  .category-post-card__excerpt {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
  }

  .category-post-card__button {
    width: fit-content;
    height: 40px;
    font-size: 14px;
    padding: 0 17px;
  }
  .title--category {
    font-size: 28px;
  }
  .category-load-more-btn {
    font-size: 16px;
    padding: 14px;
    margin: 12px 0;
  }
}
@media (max-width: 500px) {
  .category-post-card__image {
    aspect-ratio: 1/1;
    height: initial;
  }
  .category-load-more-btn {
    font-size: 14px;
    padding: 12px;
  }
}
