.hero--trends {
  background-color: var(--color-bg);
}

.hero__inner {
  align-items: center;
  gap: var(--space-8);
}

.hero__visual {
  max-width: 520px;
  margin-left: auto;
}

.hero__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.section--surface {
  background-color: var(--color-surface-muted);
}

.trends-grid .card {
  height: 100%;
}

.trend-list {
  list-style: none;
  padding-left: 0;
}

.trend-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.trend-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background-color: var(--color-primary);
}

.trend-list.numbered {
  counter-reset: trend-counter;
}

.trend-list.numbered li {
  padding-left: 1.6rem;
}

.trend-list.numbered li::before {
  counter-increment: trend-counter;
  content: counter(trend-counter) ".";
  width: auto;
  height: auto;
  top: 0;
  border-radius: 0;
  background: none;
  color: var(--color-primary-strong);
  font-weight: 600;
}

.trends-colors .card {
  height: 100%;
}

.season-grid .card {
  height: 100%;
}

.trends-next {
  padding: var(--space-6);
}

.trends-next__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

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

  .hero__visual {
    max-width: 100%;
    margin-left: 0;
  }

  .trends-next {
    padding: var(--space-5) var(--space-4);
  }
}

@media (min-width: 901px) {
  .flex-row-md {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(1.9rem, 7vw, 2.3rem);
  }

  .trends-next__actions {
    width: 100%;
  }

  .trends-next__actions .btn {
    width: 100%;
  }
}
