.archive-header {
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--accent-color, #007bff);
  padding-bottom: .5rem;
}

.archive-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--heading-color, #222);
}

.archive-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.post-card {
  background: var(--card-bg, #fff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform .2s ease;
}

.post-card:hover {
  transform: translateY(-3px);
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  padding: 1rem;
}

.post-title a {
  text-decoration: none;
  color: var(--text-color, #333);
}

.post-title a:hover {
  color: var(--accent-color, #007bff);
}

.read-more-btn {
  display: inline-block;
  margin-top: .5rem;
  font-weight: 600;
  color: var(--accent-color, #007bff);
}

.pagination {
  margin-top: 2rem;
  text-align: center;
}

/* Archive Thumbnail Control */
.archive-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid var(--border-color, #eee);
}

/* ==============================
   Archive (News & Reviews) text justify
============================== */

.post-card .post-content p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {

.post-card .post-content p {
    text-align: justify;
    hyphens: auto;
    line-height: 1.7;
}

}