.discount-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.discount-container h1 {
  font-size: 24px;
  color: #1877e7;
  margin-bottom: 5px;
}

.discount-container .subheadline {
  font-size: 18px;
  margin-bottom: 30px;
}

.discount-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.discount-card {
  margin: auto;
  background: #fff;
  border-top: 3px solid #0052cc;
  border-bottom: 3px solid #0052cc;
  border-radius: 6px;
  /* padding: 20px 10px; */
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.discount-card:hover {
  transform: translateY(-3px);
}
.discount-card .card-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
}
.discount-card .card-value {
  font-size: 100px;
  font-weight: 1000;
  color: #1877e7;
}
.discount-note {
  border: 2px solid #0052cc;
  border-radius: 6px;
  background: #fff;
  padding: 20px;
  margin: 0 auto;
  text-align: left;
}
.discount-note h3 {
  font-size: 18px;
  color: #1877e7;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

/* Blue checkmark icon styling */
.blue-checkmark {
  color: white;
  font-weight: bold;
  font-size: 20px;
  margin-right: 8px;
  background-color: #1877e7;
  border: 2px solid #1877e7;
  border-radius: 3px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.discount-note ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.discount-note ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Container of the event content */
.discount-event {
  text-align: center;
  padding: 20px;
}

.discount-event h3 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}

.discount-event .discount-box {
  border: 2px solid #1877e7;
  display: inline-block;
  padding: 20px;
  background: #f9f9f9;
  margin-bottom: 20px;
}

.discount-event .discount-box .percent {
  font-size: 100px;
  font-weight: bold;
  color: #1877e7;
  margin-bottom: 5px;
}

.discount-event .discount-box .date {
  font-size: 50px;
  font-weight: 500;
}

.discount-event p {
  font-size: 16px;
  margin: 10px 0;
}

.discount-event p.note {
  font-size: 14px;
  color: #888;
  margin-top: 20px;
}

.discount-event p.cta {
  font-weight: bold;
  margin-top: 20px;
}

.discount-event a.cta-link {
  font-size: 14pt;
  color: #007bff;
  text-decoration: underline;
}

.event-relay-sale {
  text-align: center;
  padding: 20px;
}
.event-relay-sale h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
.event-relay-sale .event-highlight p {
  font-size: 18px;
  margin: 5px 0;
}
.event-relay-sale .big-discount {
  font-size: 26px;
  color: #007bff;
  font-weight: bold;
}
.event-relay-sale h4 {
  margin-top: 20px;
  font-size: 18px;
  color: #007bff;
}
.event-relay-sale ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
.event-relay-sale ul li {
  font-size: 16px;
  margin: 5px 0;
}
.event-relay-sale blockquote {
  background: #f5f5f5;
  padding: 10px;
  margin: 20px auto;
  max-width: 500px;
  border-left: 3px solid #007bff;
  font-size: 14px;
}
.event-relay-sale a {
  color: #007bff;
  text-decoration: underline;
}
.promotion-event {
  text-align: center;
  padding: 20px;
  font-size: 16px;
}

.promo-banner {
  display: inline-block;
  background: #0056d9;
  color: white;
  padding: 30px;
  margin: 20px 0;
  border-radius: 6px;
}

.promo-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.promo-discount {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.1;
}

.promo-discount span {
  font-size: 28px;
  display: block;
}

.promo-subtitle {
  font-weight: bold;
  margin-top: 20px;
}

.promo-desc {
  margin: 15px 0;
}

.promo-desc .highlight {
  color: #0056d9;
  font-weight: bold;
}

.promo-period {
  font-weight: bold;
  margin-top: 20px;
}

.promo-notice {
  text-align: left;
  margin: 20px auto;
  display: inline-block;
  max-width: 500px;
  font-size: 14px;
}

.promo-notice ul {
  padding-left: 20px;
  margin: 10px 0;
}

.promo-notice li {
  margin-bottom: 5px;
}

.store-link {
  margin-top: 20px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .discount-cards {
    grid-template-columns: 1fr;
  }

  .discount-card {
    max-width: 100%;
  }
}
