.elementor-1285 .elementor-element.elementor-element-276de5b{--display:flex;}.elementor-1285 .elementor-element.elementor-element-cb8dc9b{--display:flex;}/* Start custom CSS *//* ===== BLOG PAGE STYLES ===== */

/* Blog Hero Section */
.blog-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 60px;
  background: white;
  text-align: center;
}

.blog-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #2D1B69;
  margin-bottom: 20px;
}

.blog-hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #C41E7A;
  font-style: italic;
  margin-bottom: 30px;
}

.blog-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #2C3E50;
  max-width: 700px;
  margin: 0 auto;
}

/* Category Filter */
.blog-filters {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #FFF8E7;
}

.filter-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2D1B69;
  margin-bottom: 20px;
  text-align: center;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.category-filter {
  padding: 10px 25px;
  background: white;
  color: #2C3E50;
  border: 2px solid #E0E0E0;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.category-filter:hover {
  border-color: #C41E7A;
  color: #C41E7A;
  background: white;
}

.category-filter.active {
  background: #C41E7A;
  color: white;
  border-color: #C41E7A;
}

/* Featured Post Section */
.featured-post-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: white;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #F2A900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-align: center;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: linear-gradient(135deg, #FFF8E7 0%, #ffffff 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(196, 30, 122, 0.15);
}

.featured-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.featured-post-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.featured-category {
  padding: 6px 16px;
  background: #C41E7A;
  color: white;
  border-radius: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: lowercase;
  text-decoration: none;
}

.featured-date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7C8B9F;
}

.featured-post-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2D1B69;
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured-post-title a {
  color: #2D1B69;
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-post-title a:hover {
  color: #C41E7A;
}

.featured-post-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #2C3E50;
  margin-bottom: 25px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: transparent;
  color: #C41E7A;
  border: 2px solid #C41E7A;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-transform: lowercase;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #C41E7A;
  color: white;
  transform: translateX(5px);
}

/* Blog Posts Grid */
.blog-posts-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background: white;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(196, 30, 122, 0.12);
}


.post-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.post-category {
  padding: 5px 12px;
  background: #FFF8E7;
  color: #2D1B69;
  border-radius: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: lowercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-category:hover {
  background: #C41E7A;
  color: white;
}

.post-date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #7C8B9F;
}

.post-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2D1B69;
  margin-bottom: 15px;
  line-height: 1.3;
}

.post-card-title a {
  color: #2D1B69;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-card-title a:hover {
  color: #C41E7A;
}

.post-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
  margin-bottom: 20px;
  flex-grow: 1;
}

.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C41E7A;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: lowercase;
  transition: all 0.3s ease;
}

.post-read-more:hover {
  gap: 12px;
  color: #2D1B69;
}


/* Adjust post cards without images */
.post-card {
  background: linear-gradient(135deg, #FFF8E7 0%, #ffffff 100%);
  border-left: 4px solid #C41E7A;
}

.post-card:hover {
  border-left-color: #F2A900;
}

.post-card-content {
  padding: 35px !important;
}

/* Pagination Section */
.pagination-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  background: white;
  text-align: center;
}

.pagination {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.pagination-button {
  padding: 12px 24px;
  background: white;
  color: #2D1B69;
  border: 2px solid #E0E0E0;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pagination-button:hover {
  border-color: #C41E7A;
  color: #C41E7A;
}

.pagination-button.active {
  background: #C41E7A;
  color: white;
  border-color: #C41E7A;
}

.pagination-button.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-button.disabled:hover {
  border-color: #E0E0E0;
  color: #2D1B69;
}

/* Newsletter CTA */
.newsletter-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  background: linear-gradient(135deg, #2D1B69 0%, #C41E7A 100%);
  border-radius: 16px;
  text-align: center;
}

.newsletter-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.newsletter-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 15px 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: #F2A900;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
  padding: 15px 35px;
  background: #F2A900;
  color: #2D1B69;
  border: none;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: lowercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.newsletter-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-hero {
    padding: 60px 20px 40px;
  }
  
  .blog-hero h1 {
    font-size: 36px;
  }
  
  .blog-hero-tagline {
    font-size: 22px;
  }
  
  .blog-hero p {
    font-size: 16px;
  }
  
  .blog-filters {
    padding: 30px 20px;
  }
  
  .category-filters {
    gap: 10px;
  }
  
  .category-filter {
    padding: 8px 20px;
    font-size: 13px;
  }
  
  .featured-post-section {
    padding: 40px 20px;
  }
  
  .featured-post {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .featured-post-image {
    min-height: 250px;
  }
  
  .featured-post-content {
    padding: 30px;
  }
  
  .featured-post-title {
    font-size: 28px;
  }
  
  .featured-post-excerpt {
    font-size: 16px;
  }
  
  .blog-posts-section {
    padding: 60px 20px;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .post-card-image {
    height: 200px;
  }
  
  .post-card-content {
    padding: 25px;
  }
  
  .post-card-title {
    font-size: 22px;
  }
  
  .pagination-section {
    padding: 30px 20px 60px;
  }
  
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .pagination-button {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .newsletter-cta {
    padding: 50px 20px 60px;
    border-radius: 0;
  }
  
  .newsletter-cta h2 {
    font-size: 28px;
  }
  
  .newsletter-cta p {
    font-size: 16px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input,
  .newsletter-submit {
    width: 100%;
  }
}/* End custom CSS */