.desery-hero {
  padding-top: var(--space-10);
}

.desery-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
}

.desery-hero__text p {
  font-size: var(--font-size-lg);
}

.desery-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.desery-hero__figure {
  max-width: 420px;
  margin-left: auto;
}

.desery-intro__content {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: var(--space-6);
  align-items: flex-start;
}

.desery-intro__highlight {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.desery-intro__highlight-title {
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.desery-intro__list {
  list-style: none;
}

.desery-intro__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-2);
}

.desery-intro__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), #ffd15c);
}

.desery-section-header {
  max-width: 720px;
  margin-bottom: var(--space-6);
}

.desery-section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.desery-ice__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: var(--space-6);
  align-items: center;
}

.desery-ice__figure {
  max-width: 420px;
}

.desery-ice__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-3) 0;
}

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

.desery-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-2);
}

.desery-list li::before {
  content: "•";
  position: absolute;
  left: 0.2rem;
  color: var(--color-primary-strong);
}

.desery-toppings__grid {
  margin-top: var(--space-4);
}

.desery-toppings__item {
  height: 100%;
}

.desery-toppings__link,
.desery-process__link {
  margin-top: var(--space-4);
}

.desery-process__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: var(--space-6);
  align-items: flex-start;
}

.desery-process__figure {
  max-width: 420px;
}

.desery-process__steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.desery-process__steps li {
  margin-bottom: var(--space-3);
}

.desery-rare__grid,
.desery-challenges__grid,
.desery-scoring__grid {
  margin-top: var(--space-4);
}

.desery-challenges__item,
.desery-scoring__item {
  height: 100%;
}

.desery-popular__list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: var(--space-4);
}

.desery-popular__item {
  counter-increment: rank;
}

.desery-popular__cta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

@media (max-width: 960px) {
  .desery-hero__grid,
  .desery-intro__content,
  .desery-ice__grid,
  .desery-process__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .desery-hero__figure,
  .desery-ice__figure,
  .desery-process__figure {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .desery-hero {
    padding-top: var(--space-8);
  }

  .desery-intro__highlight {
    margin-top: var(--space-4);
  }

  .desery-popular__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .desery-popular__cta .btn {
    width: 100%;
    justify-content: center;
  }
}
