/* Blogs Page Specific Styles */

/* Page Header */
.page-header {
  padding: 80px 60px 60px;
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-header p {
  font-size: 18px;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Section */
.blog-section {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

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

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

.blog-content {
  padding: 32px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text);
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-category {
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.blog-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
}

.blog-read-more:hover {
  gap: 12px;
}

/* Featured Blog */
.featured-blog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  padding: 40px;
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.featured-image {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
  letter-spacing: 0.5px;
}

.featured-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.featured-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  font-weight: 600;
  border-radius: 50px;
  width: fit-content;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.featured-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    padding: 60px 20px 40px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .blog-section {
    padding: 60px 20px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .featured-blog {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px;
    margin-bottom: 60px;
  }
  
  .featured-image {
    height: 300px;
  }
  
  .featured-content h2 {
    font-size: 28px;
  }
}
