/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 04 2026 | 11:02:18 */
/* ===== Page head (reusable) ===== */
.page-head{
  padding: 22px 0 16px;
}

.page-title{
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* ===== Posts grid (reusable) ===== */
.posts-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 920px){
  .posts-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .posts-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== Post card (reusable) ===== */
.post-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.post-card__media{
  display: block;
  text-decoration: none;
  background: #f2f2f2;
}

.post-card__img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.post-card__placeholder{
  display: block;
  width: 100%;
  height: 190px;
  background: linear-gradient(90deg, #f1f1f1, #e9e9e9, #f1f1f1);
}

.post-card__body{
  padding: 14px 14px 16px;
}

.post-card__meta{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.post-card__dot{
  opacity: 0.7;
}

.post-card__title{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.post-card__link{
  color: inherit;
  text-decoration: none;
}

.post-card__link:hover{
  text-decoration: underline;
}

.post-card__excerpt{
  font-size: 14px;
  color: #333;
  line-height: 1.55;
}

.post-card__excerpt p{
  margin: 0;
}

.post-card__footer{
  margin-top: 12px;
}

.post-card__more{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  color: var(--btn);
}

.post-card__more:hover{
  text-decoration: underline;
}

/* small tweak for tiny screens */
@media (max-width: 360px){
  .post-card__img,
  .post-card__placeholder{
    height: 170px;
  }
}

/* ===== Pagination (reusable) ===== */
.pagination{
  margin: 22px 0 10px;
}

.pagination .nav-links{
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pagination a,
.pagination span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.pagination a:hover{
  border-color: #cfcfcf;
}

.pagination .current{
  background: var(--btn);
  border-color: var(--btn);
  color: #fff;
}

/* ===== Empty state (reusable) ===== */
.empty-state{
  padding: 18px 0;
  color: var(--muted);
}

.archive-desc{
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.archive-desc p{
  margin: 0;
}

.author-head{
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-head__avatar img{
  border-radius: 999px;
  display: block;
  width: 72px;
  height: 72px;
}

.author-bio{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 560px){
  .author-head{
    align-items: flex-start;
  }

  .author-head__avatar img{
    width: 64px;
    height: 64px;
  }
}
