.page-promotions {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 40px 0; /* Small top padding, larger bottom padding */
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Blue gradient background */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure image wrapper doesn't exceed common large display width */
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
  color: #FFFFFF;
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  /* No fixed font-size, rely on clamp if needed, otherwise browser default for h1 */
}

.page-promotions__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__featured-promos {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-promotions__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 200px; /* Ensure card content area is not too small */
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-image {
  width: 100%;
  height: 225px; /* Fixed height for consistent card images */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promotions__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-promotions__card-text {
  font-size: 0.95em;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__card-date {
  font-size: 0.85em;
  color: #6FA3FF; /* Auxiliary color */
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions__view-all {
  text-align: center;
  margin-top: 50px;
}

.page-promotions__view-all-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #D6E2FF; /* Border color as a subtle button */
  color: #2F6BFF; /* Main color for text */
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions__view-all-button:hover {
  background-color: #A5C4FF; /* Glow color for hover */
  color: #FFFFFF;
}

.page-promotions__terms-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-top: 1px solid #D6E2FF; /* Border color */
}

.page-promotions__terms-section .page-promotions__section-title {
  margin-bottom: 25px;
}

.page-promotions__text {
  font-size: 1em;
  line-height: 1.7;
  color: #1F2D3D;
  margin-bottom: 25px;
}

.page-promotions__read-more-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-promotions__read-more-link:hover {
  color: #6FA3FF;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }

  .page-promotions__description {
    font-size: 1em;
  }

  .page-promotions__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__promo-card {
    margin: 0 10px;
  }

  .page-promotions__promo-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  /* Mobile content area image constraint */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__cta-button,
  .page-promotions__card-button,
  .page-promotions__view-all-button {
    font-size: 0.9em;
    padding: 12px 20px;
  }

  .page-promotions__card-title {
    font-size: 1.3em;
  }

  .page-promotions__card-text {
    font-size: 0.9em;
  }
}