.intro-banner {
  text-align: center;
  padding: 1rem 0 0.5rem;
}

.intro-banner h2 {
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(to right, #865d44, #6e5340);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.intro-banner p {
  font-size: 1.1rem;
  color: #4a4a5a;
  max-width: 680px;
  margin: 0.5rem auto 0;
}

.carousel-section {
  margin: 1.5rem 0;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  height: 380px;
  cursor: pointer;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  width: 100%;
  padding: 2rem 1.5rem 1.2rem;
  color: white;
}

.carousel-caption h3 {
  font-size: 1.7rem;
  font-weight: 600;
}

.carousel-caption p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: 0.2s;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: #bc6c3b;
  stroke-width: 2;
  fill: none;
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.05);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  border-left: 5px solid #c97e5a;
  padding-left: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.recipe-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0e4d8;
}

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
  border-color: #e9cfbc;
}

.recipe-card:hover .card-title {
  text-decoration: underline;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.recipe-card:hover .card-img {
  transform: scale(1.02);
}

.card-content {
  padding: 1.2rem 1.2rem 1.5rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-excerpt {
  color: #5a5a6e;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0.6rem 0;
}

@media (max-width: 768px) {
  .carousel-slide {
    height: 280px;
  }

  .carousel-caption h3 {
    font-size: 1.2rem;
  }
}