#bb-home-featured {
  background: #0A1628;
  padding: 48px 0 24px;
}

.bb-hf-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.bb-hf-section {
  margin-bottom: 48px;
}

.bb-hf-section h2 {
  margin: 0 0 20px;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.bb-hf-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1024px) {
  .bb-hf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .bb-hf-grid {
    grid-template-columns: 1fr;
  }
}

.bb-hf-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bb-hf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.bb-hf-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #0f172a;
}

.bb-hf-card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bb-hf-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bb-hf-card .loc {
  color: #94a3b8;
  font-size: 12px;
  margin-bottom: 10px;
  flex: 1;
}

.bb-hf-card .price {
  color: #00D4AA;
  font-weight: 700;
  font-size: 14px;
}

.bb-hf-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: #00D4AA;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.bb-hf-more:hover {
  text-decoration: underline;
}
