#fw-section-recent-posts-690fe4e6-543c-4c0c-b00e-786836816be6 {

/* Remove the blank white "image" block */
.post-tile__image-container {
  display: none;
}

/* Style the content block like a premium card */
.post-tile__content {
  background: linear-gradient(135deg, #1e293b, #334155); /* dark premium gradient */
  color: #f9fafb; /* light text */
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25); /* soft drop shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect for interactivity */
.post-tile__content:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* Title styling */
.post-tile__title-post {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0.25rem 0 0.75rem;
}

/* Date styling */
.post-tile__date {
  font-size: 0.85rem;
  color: #cbd5e1; /* muted gray-blue */
  margin-bottom: 0.5rem;
}

/* Body text */
.post-tile__text p {
  color: #e2e8f0; /* softer light gray */
  line-height: 1.6;
}

/* Feedback icons (like & comment) */
.post-tile__feedback .post-tile__icon {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.post-tile__feedback .post-tile__icon:hover {
  color: #facc15; /* gold highlight on hover */
}

}