.home-discount {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  background-color: #244769;
  padding: 20px 28px;
  border-radius: 10px;

  /* Pull it upward visually */
  margin-top: -40px;

  /* Optional: make it feel elevated */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);

  width: fit-content;
}

.home-discount__value {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

@media (max-width: 768px) {
  .home-discount {
    margin-top: -20px;
    padding: 16px 20px;
  }

  .home-discount__value {
    font-size: 24px;
  }
}
