.qx-hero {
  position: relative;
  border-radius: var(--qx-radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: #1a3a34;
  min-height: 160px;
}

@media (min-width: 768px) {
  .qx-hero {
    min-height: 320px;
  }
}

.qx-hero-slide {
  display: none;
  width: 100%;
}

.qx-hero-slide.is-active {
  display: block;
}

.qx-hero-slide a,
.qx-hero-slide img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .qx-hero-slide img {
    max-height: 400px;
    object-fit: cover;
    margin: 0 auto;
  }
}

.qx-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.qx-hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.qx-hero-dots button.is-active {
  background: #fff;
  width: 20px;
  border-radius: 4px;
}

.qx-hero-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .qx-hero-cta {
    grid-template-columns: repeat(4, 1fr);
  }
}

.qx-cta-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  background: var(--qx-card);
  border-radius: var(--qx-radius);
  box-shadow: var(--qx-shadow);
  text-decoration: none;
  color: var(--qx-text);
  transition: transform 0.15s, box-shadow 0.15s;
}

.qx-cta-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 150, 136, 0.15);
}

.qx-cta-tile strong {
  font-size: 16px;
  margin-bottom: 4px;
}

.qx-cta-tile span {
  font-size: 12px;
  color: var(--qx-text-secondary);
}

.qx-cta-tile--primary strong {
  color: var(--qx-brand);
}

.qx-recycle-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 16px 16px;
  -webkit-overflow-scrolling: touch;
}

.qx-recycle-chip {
  flex: 0 0 auto;
  padding: 10px 16px;
  background: var(--qx-bg);
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  color: var(--qx-text);
  white-space: nowrap;
}

.qx-recycle-chip:hover {
  background: var(--qx-brand-light);
  color: var(--qx-brand-dark);
}
