/* CATEGORY / ARCHIVE GRID */

.jcb-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.jcb-archive-header {
  margin: 30px 0 20px;
}

.jcb-archive-header h1 {
  font-size: 40px;
  margin-bottom: 6px;
}

.jcb-archive-header p {
  font-size: 16px;
  color: #64748b;
}

.blog_layout_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.post_list_content_unit {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.post_list_content_unit:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.post-thumb {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post_list_item_content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post_list_item_meta {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
}

.post_list_item_meta span {
  margin-right: 10px;
}


.post_list_item_title {
  font-size: 21px;
  line-height: 1.4;
  margin: 6px 0 10px;
  font-weight: 600;
}

.post_list_item_title a {
  color: #0f172a;
  text-decoration: none;
}

.post_list_item_title a:hover {
  color: #2160F3;
}

.post_list_item_excerpt {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: auto;
}


.post_list_item_read_more {
  margin-top: 16px;
  font-weight: 500;
  color: #2160F3;
  text-decoration: none;
  align-self: flex-start;
}

.post_list_item_read_more:hover {
  text-decoration: underline;
}
