.ua-product-list-hero {
  padding-block: var(--section-space-compact);
  background: var(--sage-50);
  border-block: 1px solid var(--line);
}

.ua-product-list-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.ua-product-list-hero h1 {
  color: var(--forest-950);
}

.ua-product-list-hero__grid > div > p:last-child {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.78;
  text-align: justify;
  text-align-last: left;
}

.ua-product-list-hero figure {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.ua-product-list-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ua-product-list-hero figure .material-icons {
  color: var(--botanical-500);
  font-size: 4rem;
}

.ua-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
}

.ua-toolbar strong {
  color: var(--forest-900);
}

@media (max-width: 760px) {
  .ua-product-list-hero__grid {
    grid-template-columns: 1fr;
  }

  .ua-product-list-hero figure {
    max-width: 500px;
  }
}
