:root {
  --gold: #BEAA76;
  --ink: #0b0f14;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.10);
  --cardShadow: 0 12px 28px rgba(2, 6, 23, 0.08);
}

.blog-page {
  background: #ffffff;
}

.blog-kicker {
  background: rgba(190, 170, 118, 0.14);
  color: #7a6a43;
  border: 1px solid rgba(190, 170, 118, 0.22);
}

.blog-title {
  color: var(--ink);
}

.blog-title-accent {
  color: var(--gold);
}

.blog-filter {
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #0f172a;
  font-size: 12px;
  font-weight: 600;
  line-height: 34px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  background: #ffffff;
}

.blog-filter:hover {
  border-color: rgba(190, 170, 118, 0.55);
  transform: translateY(-1px);
}

.blog-filter.is-active {
  background: rgba(190, 170, 118, 0.95);
  border-color: rgba(190, 170, 118, 0.95);
  color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 170, 118, 0.35);
  box-shadow: var(--cardShadow);
}

.blog-cover {
  position: relative;
  height: 172px;
  overflow: hidden;
  background: #0b0f14;
}

.blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.05) 0%, rgba(2, 6, 23, 0.30) 100%);
  pointer-events: none;
}

.blog-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(190, 170, 118, 0.95);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-body {
  padding: 16px 16px 18px;
}

.blog-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
}

.blog-meta svg {
  width: 14px;
  height: 14px;
  color: rgba(190, 170, 118, 0.9);
}

.blog-h3 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 800;
  color: #0b0f14;
}

.blog-excerpt {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  min-height: 58px;
}

.blog-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #7a6a43;
  text-decoration: none;
}

.blog-link:hover {
  color: #0b0f14;
}

.blog-page-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0f172a;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.blog-page-btn:hover {
  border-color: rgba(190, 170, 118, 0.55);
  transform: translateY(-1px);
}

.blog-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.blog-page-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  background: transparent;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.blog-page-num:hover {
  border-color: rgba(190, 170, 118, 0.40);
}

.blog-page-num.is-active {
  background: rgba(190, 170, 118, 0.95);
  color: #ffffff;
  border-color: rgba(190, 170, 118, 0.95);
}

.blog-page-ellipsis {
  padding: 0 6px;
  color: #94a3b8;
  font-weight: 800;
}