@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600&display=swap');

/* ── Page background ── */
.blog-archive-page,
.blog-archive-page body,
.blog-archive-main {
  background-color: #E1F5EE !important;
}

/* ── Wrapper ── */
.blog-archive-wrap {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 2.5rem 1.5rem 4rem !important;
  background: transparent !important;
}

/* ── Archive header ── */
.blog-archive-header {
  border-bottom: 1px solid #9FE1CB;
  padding-bottom: 1.25rem;
  margin-bottom: 2.5rem;
}
.archive-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0F6E56;
  margin: 0 0 4px;
}
.archive-title {
  font-family: 'Noto Serif SC', 'Songti SC', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #04342C !important;
  margin: 0;
}
.archive-count {
  font-size: 13px;
  color: #0F6E56;
  margin: 6px 0 0;
}

/* ── Grid ── */
.blog-archive-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 1.5rem !important;
}

/* ── Card ── */
.blog-card {
  background: #ffffff !important;
  border: 1px solid #9FE1CB !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  float: none !important;
  width: auto !important;
  transition: border-color 0.2s ease;
}
.blog-card:hover {
  border-color: #1D9E75 !important;
}

/* ── Card image ── */
.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #9FE1CB;
}
.blog-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  max-width: none !important;
  display: block;
  transition: transform 0.35s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

/* ── Card body ── */
.blog-card-body {
  padding: 1rem 1.25rem 1.25rem;
}
.blog-card-meta {
  font-size: 11px;
  color: #0F6E56;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.blog-card-title {
  font-family: 'Noto Serif SC', 'Songti SC', Georgia, serif !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin: 0 0 10px !important;
}
.blog-card-title a {
  color: #04342C !important;