  @media (min-width: 800px) {
    .catnoibat-featured-section {
      background: url('https://cdn.brandingvn.com/2607/ruouvangdathanh.com/bg-vuon-nho.jpg') no-repeat;
      background-size: cover;
    }
  }

.catnoibat-featured-section {
  position: relative;
  padding: 35px 0 45px;
  background-color: #f3eee2;
  overflow: hidden;
}

/* Decorative vineyard background */
.catnoibat-vine-art {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 340px;
  pointer-events: none;
  opacity: 0.55;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
}

.catnoibat-vine-art.catnoibat-left {
  left: 0;
  background-image: radial-gradient(
    ellipse at 0% 50%,
    rgba(139, 111, 71, 0.18) 0%,
    rgba(139, 111, 71, 0.05) 55%,
    transparent 75%
  );
}

.catnoibat-vine-art.catnoibat-right {
  right: 0;
  background-image: radial-gradient(
    ellipse at 100% 50%,
    rgba(139, 111, 71, 0.18) 0%,
    rgba(139, 111, 71, 0.05) 55%,
    transparent 75%
  );
}

/* Heading */
.catnoibat-heading-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 25px;
}

.catnoibat-eyebrow {
  margin-bottom: 5px;
  color: #a67c48;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0;
  animation: catnoibat-fade-down 0.9s ease forwards;
}

.catnoibat-main-heading {
  margin: 0 0 10px;
  color: #6b2323;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 6px;
  opacity: 0;
  animation: catnoibat-fade-down 0.9s ease 0.15s forwards;
}

@keyframes catnoibat-fade-down {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Divider */
.catnoibat-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  animation: catnoibat-fade-in 1s ease 0.4s forwards;
}

@keyframes catnoibat-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.catnoibat-divider .catnoibat-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a67c48);
}

.catnoibat-divider .catnoibat-line.catnoibat-right {
  background: linear-gradient(90deg, #a67c48, transparent);
}

.catnoibat-divider .catnoibat-dot {
  width: 5px;
  height: 5px;
  background-color: #a67c48;
  transform: rotate(45deg);
}

/* Cards */
.catnoibat-cards-row {
  position: relative;
  z-index: 2;
}

.catnoibat-cat-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.catnoibat-cat-card:hover {
  transform: translateY(-5px);
}

.catnoibat-cat-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catnoibat-cat-card .catnoibat-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.catnoibat-cat-card .catnoibat-cat-title {
  margin-bottom: 10px;
  color: #f7efe0;
  font-family: "Playfair Display", serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 1px;
}

.catnoibat-cat-card .catnoibat-cat-sub {
  max-width: 190px;
  margin-bottom: auto;
  color: #d9cdbb;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* CTA */
.catnoibat-cta-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 9px 16px;
  border: 1px solid rgba(224, 186, 90, 0.65);
  border-radius: 30px;
  background: transparent;
  color: #f2e6c9;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.catnoibat-cta-btn .catnoibat-arrow-circle {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 186, 90, 0.8);
  border-radius: 50%;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.catnoibat-cta-btn .catnoibat-arrow-circle svg {
  width: 9px;
  height: 9px;
  transition: transform 0.35s ease;
}

.catnoibat-cat-card:hover .catnoibat-cta-btn {
  border-color: transparent;
  background: linear-gradient(100deg, #caa244, #e8cf8a, #caa244);
  background-size: 200% 100%;
  color: #2b1a0a;
  animation: catnoibat-sheen 1.8s linear infinite;
}

.catnoibat-cat-card:hover
  .catnoibat-cta-btn
  .catnoibat-arrow-circle {
  border-color: #2b1a0a;
  transform: translateX(2px);
}

@keyframes catnoibat-sheen {
  from {
    background-position: 0% 0;
  }

  to {
    background-position: 200% 0;
  }
}