.page-promotions {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 10px 15px;
  background-color: #B71C1C;
  color: #FFF5E1;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 10px; /* Small top padding for first section */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain max width for desktop */
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto; /* Responsive height */
  display: block;
  aspect-ratio: 16/5; /* Fallback aspect ratio for 1920x600 */
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-content {
  max-width: 900px;
}

.page-promotions__hero-title {
  font-size: clamp(1.1rem, 4.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFF5E1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 800px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for contrast on gold */
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px #FFCC66;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px #FFCC66;
}

.page-promotions__promotions-list-section {
  margin-bottom: 50px;
  padding: 20px 0;
}

.page-promotions__section-title {
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 35px;
  color: #FFF5E1;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #F4D34D, transparent);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__promotion-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #7A0E0E; /* Deep Red border */
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2; /* For 600x400 */
  object-fit: cover;
  object-position: center;
}

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

.page-promotions__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F4D34D; /* Gold for titles */
  line-height: 1.3;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #FFF5E1;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red */
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  transition: background 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

.page-promotions__terms-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px 0;
  text-align: center;
}

.page-promotions__terms-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #FFF5E1;
}

.page-promotions__text-link {
  color: #F4D34D; /* Gold link */
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
  color: #FFCC66; /* Glow on hover */
}

.page-promotions__cta-bottom-section {
  text-align: center;
  padding: 40px 0 60px;
  background-color: #C91F17; /* Primary color */
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions__cta-bottom-title {
  font-size: clamp(1.3rem, 4.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFF5E1;
}

.page-promotions__cta-bottom-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsiveness */
@media (max-width: 849px) {
  .page-promotions {
    padding: 8px 12px;
  }

  .page-promotions__hero-section {
    margin-bottom: 30px;
  }

  .page-promotions__hero-title {
    font-size: clamp(1.2rem, 6vw, 1.75rem);
  }

  .page-promotions__hero-description,
  .page-promotions__terms-description,
  .page-promotions__cta-bottom-description {
    font-size: 0.9rem;
  }

  .page-promotions__cta-button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }

  .page-promotions__section-title {
    font-size: clamp(1.3rem, 5.5vw, 2rem);
    margin-bottom: 25px;
  }

  .page-promotions__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promotion-card {
    flex-direction: column;
  }

  .page-promotions__card-title {
    font-size: 1.2rem;
  }

  .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-promotions__card-button {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .page-promotions__terms-section,
  .page-promotions__cta-bottom-section {
    margin: 30px auto;
    padding: 30px 15px;
  }

  /* Ensure images do not overflow on mobile */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-promotions {
    padding: 5px 10px;
  }
  .page-promotions__hero-title {
    font-size: clamp(1.1rem, 7vw, 1.5rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.2rem, 6.5vw, 1.8rem);
  }
  .page-promotions__cta-bottom-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  /* Constraint content area images for mobile to prevent overflow */
  .page-promotions__promotions-grid img,
  .page-promotions__promotion-card img {
    max-width: 100%;
    height: auto;
  }
}

/* Global image rules for content area - ensure minimum display size */
.page-promotions img:not(.page-promotions__hero-image) {
  min-width: 200px;
  min- /* Adjust min-height as needed for aspect ratio */
}

/* Override for hero image to allow flexible height but maintain aspect ratio */
.page-promotions__hero-image {
  min-width: 320px; /* Ensure hero image is not too small on narrow screens */
  min-height: 100px; /* Minimum height for hero */
}