.page-promotions {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block; /* Remove extra space below image */
  border-radius: 10px;
  object-fit: cover;
  min-height: 200px; /* Minimum image size */
}

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

.page-promotions__main-title {
  color: #F2C14E;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  /* Use clamp for responsive font size without fixed large values */
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #E5E5E5;
}

.page-promotions__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 150px;
  text-align: center;
  font-size: 1rem;
}

.page-promotions__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
}

.page-promotions__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-promotions__button--secondary {
  background: none;
  border: 2px solid #F2C14E;
  color: #F2C14E;
}

.page-promotions__button--secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-promotions__button--small {
  padding: 8px 15px;
  font-size: 0.9rem;
  min-width: unset;
}

.page-promotions__promotions-grid-section,
.page-promotions__how-to-claim-section,
.page-promotions__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__section-title {
  color: #F2C14E;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E5E5E5;
}

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

.page-promotions__promotion-card {
  background-color: #111111;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

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

.page-promotions__card-title {
  color: #FFD36B;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__card-text {
  color: #FFF6D6;
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__how-to-claim-section {
  background-color: rgba(17, 17, 17, 0.7); /* Slightly darker for contrast */
  border-radius: 10px;
  margin-bottom: 60px;
}

.page-promotions__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-card {
  background-color: #111111;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 1px solid #3A2A12;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  color: #F2C14E;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__step-text {
  color: #FFF6D6;
  font-size: 0.95rem;
}

.page-promotions__cta-section {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.page-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

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

  .page-promotions__main-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .page-promotions__hero-description {
    font-size: 1rem;
  }

  .page-promotions__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-promotions__promotions-grid-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__cta-section {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-promotions__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

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

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

  /* Ensure all content images are responsive and not smaller than 200px */
  .page-promotions__hero-image,
  .page-promotions__card-image,
  .page-promotions__promotion-card img {
    max-width: 100%;
    height: auto; /* Override fixed height for responsiveness */
    min-width: 200px; /* Ensure minimum size is maintained */
    min-height: 200px; /* Ensure minimum size is maintained */
  }
}

/* Ensure images within the content area are never smaller than 200px */
.page-promotions img:not(.page-promotions__hero-image) { /* Exclude hero image from this specific rule if its layout handles it */
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow CSS to control width */
    height: auto; /* Allow CSS to control height */
}

/* Specific rule for card images to ensure they meet minimum size requirements */
.page-promotions__promotion-card .page-promotions__card-image {
    width: 100%; /* Take full width of card */
    height: 250px; /* Maintain aspect for desktop, will be auto for mobile */
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

/* Media query for mobile to ensure image responsiveness and min-size */
@media (max-width: 768px) {
    .page-promotions__hero-image,
    .page-promotions__card-image,
    .page-promotions__promotion-card img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Important: still enforce minimum size */
        min-height: 200px; /* Important: still enforce minimum size */
    }
}