.chapter-two-page {
  --carrot-glow: #f8e0b4;
}

.coin-picture img {
  object-position: 74% 34%;
}

.money-checks {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.money-checks article {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(76, 56, 32, 0.08);
}

.money-checks span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 10px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fffaf0;
  background: var(--carrot);
  font-weight: 900;
}

.money-checks p {
  margin: 0;
  color: var(--muted);
}

.carrot-card {
  background: #fff8e8;
}

.coin-ring {
  background: #fff1c8;
  border-color: #e7bf75;
}

.coin-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-image: url("../assets/images/world-style-guide.png");
  background-image: image-set(
    url("../assets/images/world-style-guide.webp") type("image/webp"),
    url("../assets/images/world-style-guide.png") type("image/png")
  );
  background-repeat: no-repeat;
  background-size: 640%;
  background-position: 39% 6%;
  border: 2px solid #c9bda7;
}

.price-board {
  margin-top: 12px;
  padding: 14px;
  border-radius: 8px;
  background: #fff7df;
  border: 1px solid #dfc18b;
}

.price-board strong {
  color: #6f5147;
}

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

@media (max-width: 620px) {
  .money-checks {
    grid-template-columns: 1fr;
  }
}
