/* --- Tamil Pillar Page Creator Styles (v1.3.0) --- */

/* Grid Container for posts within a category */
.tppc-post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default: 2 columns for larger screens */
  gap: 25px; /* Space between grid items */
  padding: 0;
  margin: 0 0 30px 0;
  list-style: none; /* Ensure no bullets appear */
}

/* Individual Post Item Styling */
.tppc-post-item {
  border: 1px solid #eee;
  padding: 15px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align items to start vertically */
  list-style-type: none;
  margin-left: 0;
}
.tppc-post-item::before {
  content: none !important; /* Force remove pseudo-elements like bullets */
}

/* Thumbnail Link and Image */
.tppc-thumbnail-link {
  display: block;
  margin-bottom: 15px;
}

.tppc-post-thumbnail {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
}

/* Placeholder for posts without thumbnails */
.tppc-no-thumbnail {
  width: 100%;
  max-width: 200px; /* Optional: Limit placeholder size */
  aspect-ratio: 16 / 9;
  background-color: #f0f0f0;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  border-radius: 4px;
  margin: 0 auto 15px auto; /* Center the placeholder div */
}
.tppc-no-thumbnail span {
  padding: 5px;
}


/* Post Title */
.tppc-post-title {
  font-size: 1.1em;
  margin: 0 0 10px 0;
  line-height: 1.3;
  font-weight: bold;
}

.tppc-post-title a {
  text-decoration: none;
  color: inherit;
}

.tppc-post-title a:hover {
  text-decoration: underline;
}

/* Post Metadata */
.tppc-post-meta {
  font-size: 0.85em;
  color: #666;
  margin-top: 10px; /* Space above meta */
  margin-bottom: 10px; /* Space below meta */
}

.tppc-meta-separator {
  margin: 0 5px;
}

/* Post Excerpt */
.tppc-post-excerpt {
  font-size: 0.9em;
  color: #555;
  line-height: 1.5;
  margin-top: 10px; /* Space above excerpt */
  text-align: left; /* Align excerpt left for readability */
}

/* Category Title Styling */
.tppc-category-title {
  margin-top: 30px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
  font-size: 1.6em;
  clear: both;
}

.tppc-category-group:first-child .tppc-category-title {
  margin-top: 0;
}

/* Message for no posts */
.tppc-no-posts {
  font-style: italic;
  color: #777;
  padding: 20px;
  border: 1px dashed #ccc;
  text-align: center;
  grid-column: 1 / -1; /* Span full width if using grid */
}


/* Responsive Design: Single Column on Smaller Screens */
@media (max-width: 768px) {
  .tppc-post-list {
      grid-template-columns: 1fr; /* Switch to 1 column */
      gap: 20px;
  }

   .tppc-post-item {
      padding: 10px;
  }

   .tppc-category-title {
      font-size: 1.4em;
   }
}

/* --- End Tamil Pillar Page Creator Styles --- */