.announcement a {
  color: inherit;
  text-decoration: none;
}

.hero.hero-no-image {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}

.hero.hero-no-image .hero-actions,
.hero.hero-no-image .checks {
  justify-content: center;
}

.ingredient-image {
  width: min(460px, 100%);
  aspect-ratio: 1 / .82;
  margin: auto;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .72);
  border-radius: 48% 48% 24px 24px;
  box-shadow: 0 28px 70px rgba(11, 48, 72, .15);
  background: #e9dfd0;
}

.ingredient-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-grid.no-image {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.shop-empty-state {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 170px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #fbf7ef);
  box-shadow: 0 18px 48px rgba(11, 48, 72, .07);
}

.shop-empty-state > span {
  display: grid;
  flex: 0 0 76px;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red);
  font: 36px/1 Georgia, serif;
}

.shop-empty-state h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font: 400 27px/1.15 Georgia, serif;
}

.shop-empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.shop-empty-state a {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 800px) {
  .hero.hero-no-image {
    display: grid;
  }
}

@media (max-width: 560px) {
  .shop-empty-state {
    align-items: flex-start;
    padding: 24px 20px;
  }

  .shop-empty-state > span {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    font-size: 25px;
  }

  .shop-empty-state h3 {
    font-size: 22px;
  }
}
