section.ast-archive-description h1 {
    font-weight: 700!important;
    color: #111!important;
}
.posted-by::before{display: none!important;}
.ast-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.ast-row article {
    padding: 0px!important;
}
.posted-by{    margin-top: 0px;}
@media (max-width: 900px) {
  .ast-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ast-row {
    grid-template-columns: 1fr;
  }
}

/* Card container */
.ast-article-post {
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ast-article-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Featured image block */
.ast-blog-featured-section {
  margin-bottom: 20px;
}

.post-thumb-img-content {
  background-color: #e8f0fe;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 350 / 185;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-thumb-img-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  box-sizing: border-box;
  display: block;
}

/* Category tag */
.entry-header {
  order: -1; /* show category above title if markup order differs */
}

.ast-taxonomy-container {
  display: inline-block;
  margin-bottom: 8px;
}

.ast-taxonomy-container a {
  color: #7c3aed;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.ast-taxonomy-container a:hover {
  text-decoration: underline;
}

/* Hide comments link visually — not shown in reference design */
.comments-link {
  display: none;
}

.entry-meta {
  order: -1;
}

/* Title */
.entry-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 4px 0 12px;
  order: 0;
}

.entry-title a {
  color: #111111;
  text-decoration: none;
}

.entry-title a:hover {
  color: #7c3aed;
}

/* Excerpt */
.ast-excerpt-container {
  order: 1;
  flex-grow: 1;
}

.ast-excerpt-container p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  /* clamp to 3 lines like the reference cards */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hide the "Read More »" link — reference design doesn't show it */
.ast-read-more-container {
  display: none;
}

/* Author + date row */
.posted-by {
  order: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  color: #6b7280;
}

.posted-by::before {
  content: "by";
}

.author-name {
  font-weight: 700;
  color: #111111;
}

.posted-by a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}
.entry-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6b7280;
  margin-top: 20px;
  order: 2;
}