/**
/* ===== REMOVE KADENCE DEFAULT SPACING ===== */
.h4-single-post,
.h4-blog-archive {
  padding: 0 !important;
  margin: 0 !important;
}

.h4-single-post .entry-content-wrap,
.h4-single-post .entry-content,
.h4-blog-archive .entry-content-wrap,
.h4-blog-archive .entry-content {
  padding: 0 !important;
  margin: 0 !important;
}

 * Blog Styling
 * Archive & single post pages
 */

/* Blog Archive */
.h4-blog-archive {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.h4-blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.h4-blog-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #2C2C2C;
  margin-bottom: 20px;
}

.h4-blog-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

/* Blog Grid */
.h4-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Blog Card */
.h4-blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.h4-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.h4-blog-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.h4-blog-card-content {
  padding: 30px;
}

.h4-blog-card-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.h4-blog-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #2C2C2C;
  margin-bottom: 15px;
  line-height: 1.3;
}

.h4-blog-card h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.h4-blog-card h2 a:hover {
  color: #E3967E;
}

.h4-blog-card-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.h4-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E3967E;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: gap 0.3s ease;
}

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

/* Single Post */
.h4-single-post {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.h4-post-header {
  text-align: center;
  margin-bottom: 40px;
}

.h4-post-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #2C2C2C;
  margin-bottom: 20px;
  line-height: 1.2;
}

.h4-post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.h4-post-featured-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.h4-post-content {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.h4-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2C2C2C;
  margin: 50px 0 25px;
  line-height: 1.3;
}

.h4-post-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #2C2C2C;
  margin: 40px 0 20px;
}

.h4-post-content p {
  margin-bottom: 20px;
}

.h4-post-content ul,
.h4-post-content ol {
  margin: 25px 0 25px 30px;
}

.h4-post-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.h4-post-content a {
  color: #E3967E;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.h4-post-content a:hover {
  color: #D4856D;
}

.h4-post-content blockquote {
  border-left: 4px solid #E3967E;
  padding: 20px 30px;
  margin: 30px 0;
  background: #FFF5F2;
  font-style: italic;
  color: #555;
}

.h4-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}

/* Post CTA Section */
.h4-post-cta {
  background: linear-gradient(135deg, #E3967E 0%, #D4856D 100%);
  color: white;
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  margin: 60px 0;
}

.h4-post-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.h4-post-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.h4-post-cta-button {
  display: inline-block;
  background: white;
  color: #E3967E;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.h4-post-cta-button:hover {
  background: #F5F5F5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Related Posts */
.h4-related-posts {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #E5E5E5;
}

.h4-related-posts h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2C2C2C;
}

/* Pagination */
.h4-blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.h4-blog-pagination a,
.h4-blog-pagination span {
  display: inline-block;
  padding: 12px 20px;
  background: white;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  color: #2C2C2C;
  text-decoration: none;
  transition: all 0.3s ease;
}

.h4-blog-pagination a:hover {
  background: #E3967E;
  color: white;
  border-color: #E3967E;
}

.h4-blog-pagination .current {
  background: #E3967E;
  color: white;
  border-color: #E3967E;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .h4-blog-header h1,
  .h4-post-title {
    font-size: 32px;
  }
  
  .h4-blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .h4-post-content {
    font-size: 16px;
  }
  
  .h4-post-content h2 {
    font-size: 28px;
  }
  
  .h4-post-content h3 {
    font-size: 22px;
  }
  
  .h4-post-cta {
    padding: 40px 20px;
  }
  
  .h4-post-cta h3 {
    font-size: 24px;
  }
}
