/* ── Page Hero ── */
.page-hero {
  padding: 18px 0 20px;
  background:
    linear-gradient(180deg, rgba(18, 13, 9, 0.97) 0%, rgba(25, 18, 12, 0.95) 100%),
    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=60") center/cover;
  border-bottom: 1px solid rgba(204, 134, 80, 0.1);
}

.blogs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 248, 239, 0.55);
}

.blogs-breadcrumb a {
  color: rgba(255, 248, 239, 0.55);
  transition: color 0.2s ease;
}

.blogs-breadcrumb a:hover { color: #e4ba96; }
.blogs-breadcrumb span { opacity: 0.45; }

/* ── Category Filter Tabs ── */
.blog-filter-wrap {
  padding: 36px 0 0;
}

.blog-filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bftab {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 239, 0.14);
  background: transparent;
  color: rgba(255, 248, 239, 0.6);
  font: 600 0.82rem "Manrope", sans-serif;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.bftab:hover {
  border-color: rgba(204, 134, 80, 0.4);
  color: #e4ba96;
}

.bftab--active {
  background: linear-gradient(135deg, #cc8650, #a35e35);
  border-color: #a35e35;
  color: #fff8ef;
}

/* ── Blog Grid ── */
.blog-section {
  padding: 40px 0 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* ── Blog Card ── */
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(45, 31, 21, 0.7);
  border: 1px solid rgba(255, 248, 239, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(10, 7, 4, 0.5);
}

.blog-card__img-wrap {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
}

.blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img-wrap img {
  transform: scale(1.05);
}

.blog-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(204, 134, 80, 0.92);
  color: #fff8ef;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.blog-card__body {
  padding: 22px 22px 24px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 248, 239, 0.45);
  font-size: 0.8rem;
}

.blog-card__dot { opacity: 0.4; }

.blog-card__title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.3;
}

.blog-card__title a {
  color: #fff8ef;
  transition: color 0.2s ease;
}

.blog-card__title a:hover { color: #e4ba96; }

.blog-card__excerpt {
  margin: 0 0 16px;
  color: rgba(255, 248, 239, 0.55);
  font-size: 0.87rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__more {
  color: #cc8650;
  font-size: 0.87rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.blog-card__more:hover { color: #e4ba96; }

/* ── Compact Footer ── */
.page-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 248, 239, 0.08);
  background: rgba(14, 11, 8, 0.9);
}

.page-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 248, 239, 0.4);
}

.page-footer__inner a {
  color: #cc8650;
  transition: color 0.2s ease;
}

.page-footer__inner a:hover { color: #e4ba96; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 14px 0 16px; }
  .page-footer__inner { flex-direction: column; text-align: center; }
}
