.acf-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.acf-card {
  position: relative;
  text-align: center;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.acf-badge {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  background: #d32f2f !important; /* red */
  color: #ffffff !important;      /* white text */
  padding: 4px 10px !important;
  font-size: 12px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  z-index: 10 !important;
}

.acf-title {
  font-size: 16px;
  margin: 12px 0 6px;
}

.acf-title a {
  color: inherit;
  text-decoration: none;
}

.acf-title a:hover {
  text-decoration: underline;
}

.acf-price {
  margin-bottom: 10px;
  font-weight: bold;
}

.acf-cta {
  display: inline-block;
  padding: 8px 16px;
  background: #c8b59a;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.acf-cta:hover {
  background: #b19c80;
}

@media (max-width: 900px) {
  .acf-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .acf-featured-grid {
    grid-template-columns: 1fr;
  }
}

.acf-cta {
    background: #3d7a3f !important; /* lighter green */
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}
.acf-cta:hover {
    background: #336634 !important;
}

.acf-featured-grid .acf-card a.acf-cta:hover {
    transform: translateY(-4px);
}
.acf-featured-grid .acf-card a.acf-cta {
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.acf-featured-grid .acf-card a.acf-cta {
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}
.acf-featured-grid .acf-card a.acf-cta:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.18);
}



