/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(15,33,55,0.1);
  border-color: transparent;
}
.blog-card-img {
  height: 220px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 24px;
}
.blog-category {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-600);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.blog-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.blog-card-body h3 a {
  color: var(--navy-800);
  transition: color 0.3s;
}
.blog-card-body h3 a:hover {
  color: var(--gold-600);
}
.blog-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.6;
}
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

/* Blog Post Page */
.blog-post-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.blog-post-content {
  min-width: 0;
}
.blog-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-800);
}
.blog-body h2 {
  font-size: 1.5rem;
  margin: 32px 0 14px;
}
.blog-body h3 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
}
.blog-body p {
  margin-bottom: 18px;
  max-width: none;
}
.blog-body ul, .blog-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.blog-body ul li, .blog-body ol li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--gray-600);
}
.blog-body ol li {
  list-style: decimal;
}
.blog-body blockquote {
  border-left: 4px solid var(--gold-400);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--off-white);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--gray-600);
}
.blog-body a {
  color: var(--gold-600);
  text-decoration: underline;
}
.blog-body img {
  border-radius: 12px;
  margin: 20px 0;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}
.recent-post-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.recent-post-link:last-child {
  border-bottom: none;
}
.recent-post-link:hover .rp-title {
  color: var(--gold-600);
}
.rp-title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-800);
  margin-bottom: 4px;
  transition: color 0.3s;
}
.rp-date {
  font-size: 0.78rem;
  color: var(--gray-400);
}

@media (max-width: 968px) {
  .blog-post-grid {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
