.trends-hero {
  padding-top: var(--space-40);
  padding-bottom: var(--space-32);
}

.trends-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-24);
  align-items: center;
}

.trends-hero__content p {
  max-width: 36rem;
}

.trends-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.trends-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.trends-intro__header {
  max-width: 44rem;
}

.trends-intro__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.trends-section {
  background-color: transparent;
}

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

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

.trends-section__header {
  max-width: 46rem;
}

.trends-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-8);
}

.trends-section__content--compact {
  gap: var(--space-12);
}

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

.trends-section__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trends-section__meta {
  margin-top: var(--space-12);
}

.trends-section__cta {
  margin-top: var(--space-12);
}

.trends-section__cta--center {
  display: flex;
  justify-content: center;
  margin-top: var(--space-20);
}

.trends-list {
  display: grid;
  gap: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-soft);
}

.trends-list li {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.trends-list .badge {
  flex-shrink: 0;
}

.trends-materials,
.trends-icons,
.trends-art,
.trends-eco {
  align-items: stretch;
}

.trends-steps {
  counter-reset: trends-steps-counter;
  display: grid;
  gap: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  padding-left: 0;
}

.trends-steps li {
  counter-increment: trends-steps-counter;
  position: relative;
  padding-left: 2rem;
}

.trends-steps li::before {
  content: counter(trends-steps-counter);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background-color: var(--color-primary-soft);
  color: var(--color-primary-strong);
  font-size: var(--text-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.trends-advice .card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.trends-bottom-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.trends-bottom-cta__content {
  max-width: 34rem;
}

.trends-bottom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.trends-section--bottom-cta {
  padding-bottom: var(--space-40);
}

.trends-section__inner--stack {
  gap: var(--space-16);
}

.trends-section--advice {
  background-color: var(--gray-50);
}

@media (max-width: 960px) {
  .trends-hero__inner {
    grid-template-columns: 1fr;
  }

  .trends-hero__image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .trends-hero {
    padding-top: var(--space-32);
  }

  .trends-bottom-cta {
    align-items: flex-start;
  }

  .trends-section__media--order-mobile {
    order: -1;
  }
}

@media (max-width: 480px) {
  .trends-hero__actions,
  .trends-bottom-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
