/* Blog Widget Styles */
.blog-highlight {
  padding: 60px 0;
  background: #f8f9fa;
}

.blog-highlight .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-highlight h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #2c3e50;
}

.featured-post {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.post-image {
  flex: 1;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

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

.featured-post:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-date {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #333;
  font-family: 'Playfair Display', serif;
}

.post-excerpt {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.read-more {
  display: inline-block;
  color: #d26c06;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
  align-self: flex-start;
}

.read-more:hover {
  color: #b35a00;
  text-decoration: underline;
}

.blog-cta {
  text-align: center;
  margin-top: 40px;
}

.view-all-posts {
  display: inline-block;
  padding: 12px 35px;
  background: #d26c06;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(210, 108, 6, 0.3);
}

.view-all-posts:hover {
  background: #b35a00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(210, 108, 6, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .featured-post {
    flex-direction: column;
  }
  
  .post-image {
    min-height: 250px;
    height: 250px;
  }
  
  .post-content {
    padding: 30px;
  }
  
  .post-title {
    font-size: 1.5rem;
  }
}
