/* ============================================================
   BLOG PAGE
   ============================================================ */

.blog-hero {
  padding: 140px 0 60px;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(198, 164, 59, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(198, 164, 59, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.blog-hero .section-title {
  position: relative;
  z-index: 1;
}

.blog-hero .section-title h2 {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.blog-hero .section-title .section-subtitle {
  color: #999;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 2px;
  max-width: 500px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 40px;
  padding: 0 20px;
}

.blog-post-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: #e0d5c0;
}

.blog-post-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
  flex-shrink: 0;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.blog-post:hover .blog-post-image img {
  transform: scale(1.04);
}

.blog-post-content {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.post-tag {
  display: inline-block;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
  color: #fff;
}

.post-tag.featured { background: #1a1a1a; }
.post-tag.planning { background: #2c3e50; }
.post-tag.essential { background: #8e44ad; }

.post-category {
  font-size: 0.6rem;
  color: #c6a43b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

.post-date {
  font-size: 0.65rem;
  color: #bbb;
  letter-spacing: 0.5px;
}

.blog-post-content h3 {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.post-excerpt {
  color: #666;
  line-height: 1.7;
  font-size: 0.85rem;
  margin-bottom: 16px;
  flex: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more i {
  transition: transform 0.3s ease;
  font-size: 0.6rem;
}

.read-more:hover {
  color: #c6a43b;
}

.read-more:hover i {
  transform: translateX(5px);
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 110px 0 40px;
  }
  
  .blog-hero .section-title h2 {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }
  
  .blog-hero .section-title .section-subtitle {
    font-size: 0.8rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 30px auto 30px;
    padding: 0 16px;
    max-width: 500px;
  }
  
  .blog-post {
    border-radius: 16px;
  }
  
  .blog-post-image {
    aspect-ratio: 16/9;
  }
  
  .blog-post-content {
    padding: 20px 22px 24px;
  }
  
  .blog-post-content h3 {
    font-size: 1.05rem;
  }
  
  .post-excerpt {
    font-size: 0.82rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .post-meta {
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .post-tag {
    font-size: 0.55rem;
    padding: 2px 8px;
  }
  
  .post-category {
    font-size: 0.6rem;
  }
  
  .post-date {
    font-size: 0.6rem;
  }
  
  .read-more {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    padding: 95px 0 30px;
  }
  
  .blog-hero .section-title h2 {
    font-size: 1.3rem;
    letter-spacing: 3px;
  }
  
  .blog-grid {
    gap: 20px;
    padding: 0 12px;
  }
  
  .blog-post-content {
    padding: 16px 16px 20px;
  }
  
  .blog-post-content h3 {
    font-size: 0.95rem;
  }
  
  .post-excerpt {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
  }
}