.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px;
  background: #f9f5ed;
  border-radius: 0;
}

.section-title {
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8e2d6;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.category-block {
  margin-bottom: 50px;
}
.category-title {
  font-size: 22px;
  margin-bottom: 20px;
}
.category-title a {
  color: #222;
  text-decoration: none;
}

.cat-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #e8e2d6;
  padding-bottom: 10px;
}
.cat-title-wrap h3 {
  margin: 0;
  font-size: 22px;
}
.cat-more-link {
  padding: 6px 14px;
  background: #d4a373;
  color: #fff !important;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.cat-more-link:hover {
  background: #c18f5a;
  transform: translateY(-2px);
  color: #fff !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.category-tags {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}
.tag-item {
  background: #f9f5ed;
  border: 1px solid #e8e2d6;
  border-radius: 20px;
  padding: 10px 12px;
  text-align: center;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: block;
}
.tag-item:hover {
  background: #f0e6d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-decoration: none !important;
}
@media (max-width:768px) {
  .category-tags { grid-template-columns: repeat(4,1fr); }
}

.post-card {
  width: 100%;
  margin: 0 !important;
}
.card-inner {
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-thumb {
  width: 100%;
  overflow: hidden;
}
.card-thumb img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 !important;
}

@media only screen and (max-width: 80em) {
  .post-card .wp-post-image {
    max-width: 100% !important;
    width: 100% !important;
  }
}

.card-info {
  text-align: center;
  margin-top: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-title {
  font-size: 15px;
  margin: 0;
  line-height: 1.2;
}
.card-title a {
  color: #222;
  text-decoration: none;
}

.card-download {
  padding: 0 15px 15px;
}
.download-btn {
  display: block;
  background: #d4a373;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

.card-ldt .card-thumb {
  height: auto !important;
}
.card-ldt .card-thumb img {
  height: auto !important;
  object-fit: unset !important;
}

.card-jiapu .card-thumb,
.card-xianzhi .card-thumb {
}