/* ========== BLOG HEADER ========== */
.blog-header {
  padding-top: 160px;
  padding-bottom: 60px;
  background: var(--navy);
  text-align: center;
}

.blog-header .section-title {
  color: var(--white);
}

.blog-header .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

/* ========== BLOG GRID ========== */
.blog-section {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

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

/* ========== BLOG CARD ========== */
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(12, 35, 64, 0.1);
  border-color: var(--gold);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.img-placeholder.blog-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 100px;
}

.blog-date {
  font-size: 13px;
  color: var(--gray-400);
}

.blog-card h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition-fast);
}

.blog-read-more:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* ========== ACTIVE NAV ========== */
.nav-menu a.active {
  color: var(--gold) !important;
}

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

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { padding-top: 120px; padding-bottom: 40px; }
}