.more-content-section {
  padding: 40px;
  background: rgba(190, 185, 198, 0.2);
  border-radius: 12px;
  margin: 0 20px;
}

.more-content-title {
  font-size: var(--fs-h5);
  font-weight: 400;
  color: #333;
  margin: -100px 0 30px 50px;
  font-style: italic;
}

.more-content-section .more-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.more-content-section .more-content-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-radius: 8px;
}

.more-content-section .card-image-wrapper {
  flex-shrink: 0;
  width: 145px;
  height: 145px;
  border-radius: 6px;
  overflow: hidden;
}

.more-content-section .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-content-section .card-image-placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
}

.more-content-section .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.more-content-section .card-title {
  font-size: var(--fs-h5);
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

.more-content-section .card-description {
  font-size: var(--fs-h6);
  color: #666;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: -15px;
}

.more-content-section .card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.more-content-section .tag {
  background: transparent;
  color: #8b5cf6;
  font-size: var(--fs-footnote);
  font-weight: 500;
  padding: 0;
  border: none;
}

.more-content-card-link {
  text-decoration: none;
  color: inherit;
}

/* Responsive design */
@media (max-width: 768px) {
  .more-content-title {
    margin: -50px 0 30px 50px;
  }

  .more-content-section .more-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .more-content-section .more-content-card {
    flex-direction: column;
  }

  .more-content-section .card-image-wrapper {
    width: 100%;
    height: 120px;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .more-content-section .more-content-section {
    padding: 25px;
  }
}
