.complex-detail__hero {
  position: relative;
  margin-bottom: 16px;
}

.complex-detail__hero .image-slider {
  border-radius: 8px;
  overflow: hidden;
}

.complex-detail__hero-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.55));
  color: #fff;
  padding: 24px 16px 12px;
  border-radius: 8px;
}

.complex-detail__title {
  margin: 0;
}

.complex-detail__subtitle {
  margin: 8px 0 0 0;
  opacity: 0.9;
}

.complex-detail__content {
  display: grid;
  gap: 16px;
}

.complex-detail__meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px 16px;
}

.complex-detail__meta-item {
  display: flex;
  flex-direction: column;
}

.complex-detail__meta-label {
  font-size: 12px;
  color: var(--muted-foreground, #666);
}

.complex-detail__meta-value {
  font-weight: 600;
}

.complex-detail__description {
  margin-top: 12px;
}

.complex-detail__error {
  text-align: center;
}


