/* Category child card style for business page - match category parent layout */
/*
.category-post-card.category-post-card--child {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.category-post-card__thumb img {
  display: block;
  width: 100%;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
  height: 260px;
}

.category-post-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(-40%);
  background: #fff;
  border-radius:24px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 24px 24px 16px 24px;
  margin: 0 12px;
  min-height: 160px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-post-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-post-card__excerpt {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #222;
}

.category-post-card__meta {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 12px;
}

.category-post-card__content .button {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 900px) {
  .category-post-card__thumb img {
    height: 180px;
  }
  .category-post-card__content {
    padding: 16px 12px 12px 12px;
    margin: 0 4px;
  }
}
