.blog-carousel-section {
  padding: 60px 20px;
  background: #f5f5f5;
}
.blog-carousel-header {
  text-align: center;
  margin-bottom: 40px;
}
.blog-carousel-header h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: 32px;
  color: #B09B6B;
  margin: 0 0 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.blog-carousel-header p {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: #666;
  margin: 0;
}
.blog-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.blog-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}
.blog-carousel-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.blog-carousel-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
  font-family: 'Lora', serif;
}
.blog-card-title {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.4;
}
.blog-card-title a {
  color: #1E537D;
  text-decoration: none;
  font-family: 'Playfair Display SC', serif;
  font-weight: 400;
}
.blog-card-title a:hover {
  color: #B09B6B;
}
.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
  font-family: 'Lora', serif;
}
.blog-card-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #B09B6B;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Lora', serif;
}
.blog-card-link:hover {
  color: #1E537D;
}
.blog-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #1E537D;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
  transition: background 0.3s;
}
.blog-carousel-btn:hover {
  background: #B09B6B;
}
.blog-carousel-btn-prev {
  left: 10px;
}
.blog-carousel-btn-next {
  right: 10px;
}
.blog-carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.blog-carousel-btn:disabled:hover {
  background: #1E537D;
}
.blog-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.blog-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #1E537D;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.blog-carousel-dot.active {
  background: #1E537D;
}
.blog-carousel-cta {
  text-align: center;
  margin-top: 32px;
}
.blog-carousel-cta a {
  display: inline-block;
  padding: 12px 36px;
  border: 2px solid #B09B6B;
  color: #B09B6B;
  text-decoration: none;
  font-family: 'Lora', serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.blog-carousel-cta a:hover {
  background: #B09B6B;
  color: #fff;
}
@media (max-width: 1024px) {
  .blog-carousel-card {
    flex: 0 0 calc(50% - 10px);
  }
  .blog-carousel-btn-prev { left: 10px; }
  .blog-carousel-btn-next { right: 10px; }
}
@media (max-width: 600px) {
  .blog-carousel-section { padding: 40px 16px; }
  .blog-carousel-header h2 { font-size: 24px; }
  .blog-carousel-card { flex: 0 0 100%; }
  .blog-carousel-btn-prev { left: 5px; }
  .blog-carousel-btn-next { right: 5px; }
}
