/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.blog-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232, 184, 75, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(124, 58, 237, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.blog-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.blog-hero-label::before,
.blog-hero-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.blog-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}

.blog-hero-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CATEGORY FILTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 52px;
}

.cat-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: all var(--t);
}

.cat-btn:hover,
.cat-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG CARD GRID
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  text-decoration: none;
  color: inherit;
}

.post-card:hover {
  border-color: rgba(232, 184, 75, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}

.post-card-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  display: block;
}

.post-card-img-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-card-2), #0c1220);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.post-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
}

.post-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color var(--t);
}

.post-card:hover .post-card-title {
  color: var(--gold);
}

.post-card-excerpt {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.post-card-date {
  color: var(--muted);
}

.post-card-link {
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--t);
}

.post-card:hover .post-card-link {
  gap: 10px;
}

@media (max-width: 768px) {

  .posts-grid {

    grid-template-columns: 1fr;

  }

}
