  
.blog-section {
  /* optionally tweak padding/margins here */
}

/* Card */
.blog-section .card-simple {
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .18s ease;
}
.blog-section .card-simple:hover {
  box-shadow: 0 6px 18px rgba(34, 27, 136, 0.06);
}

/* Image */
.blog-section .card-simple img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
}

/* Title & meta */
.blog-section .card-simple h3 {
  font-size: 1.05rem;
  margin-top: 10px;
  margin-bottom: 6px;
}
.blog-section .date-bt {
  background: #f5f5f5;
  border: none;
  padding: 6px 8px;
  font-size: 0.85rem;
  border-radius: 4px;
}

/* Actions */
.blog-section .actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.blog-section .read-more-btn { cursor: pointer; }

/* Collapsible content */
.blog-section .post-full {
  overflow: hidden;
  max-height: 0;               /* start closed */
  transition: max-height 0.28s ease;
}
.blog-section .post-full p,
.blog-section .post-full pre {
  margin: 6px 0;
  white-space: pre-wrap;
  font-size: 0.95rem;
  color: #222;
  padding-left: 6px;
  border-left: 3px solid #f0f0f0;
}

/* Utility */
.blog-section .blog-list-wrapper { overflow: visible; }
 