.page-index-latest-promotions-overview {
  color: #333333; /* Dark text for default light body background */
}

.page-index-latest-promotions-overview__hero-section {
  position: relative;
  text-align: center;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
}

.page-index-latest-promotions-overview__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-index-latest-promotions-overview__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background for text */
  border-radius: 10px;
}

.page-index-latest-promotions-overview__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-latest-promotions-overview__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-index-latest-promotions-overview__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-latest-promotions-overview__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions-overview__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-latest-promotions-overview__cta-button--large {
  padding: 20px 40px;
  font-size: 1.4em;
}

.page-index-latest-promotions-overview__secondary-button {
  display: inline-block;
  background-color: #1A202C;
  color: #FFD700;
  padding: 15px 30px;
  border: 2px solid #FFD700;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions-overview__secondary-button:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-index-latest-promotions-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-index-latest-promotions-overview__section-title {
  font-size: 2.8em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-index-latest-promotions-overview__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-latest-promotions-overview__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #555555;
}

.page-index-latest-promotions-overview__card-grid,
.page-index-latest-promotions-overview__info-grid,
.page-index-latest-promotions-overview__platform-features,
.page-index-latest-promotions-overview__connect-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-promotions-overview__card,
.page-index-latest-promotions-overview__info-card,
.page-index-latest-promotions-overview__feature-item,
.page-index-latest-promotions-overview__method-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-latest-promotions-overview__card:hover,
.page-index-latest-promotions-overview__info-card:hover,
.page-index-latest-promotions-overview__feature-item:hover,
.page-index-latest-promotions-overview__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.page-index-latest-promotions-overview__card-image,
.page-index-latest-promotions-overview__feature-icon {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-index-latest-promotions-overview__card-title,
.page-index-latest-promotions-overview__info-title,
.page-index-latest-promotions-overview__feature-title,
.page-index-latest-promotions-overview__method-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-index-latest-promotions-overview__card-text,
.page-index-latest-promotions-overview__info-text,
.page-index-latest-promotions-overview__feature-description,
.page-index-latest-promotions-overview__method-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  flex-grow: 1;
}

.page-index-latest-promotions-overview__card-list {
  text-align: left;
  width: 100%;
  margin-top: 15px;
  list-style-type: disc;
  padding-left: 20px;
}

.page-index-latest-promotions-overview__card-list li {
  margin-bottom: 10px;
  color: #666666;
}

.page-index-latest-promotions-overview__promotion-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.page-index-latest-promotions-overview__promotion-item {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-index-latest-promotions-overview__promotion-item--reverse {
  flex-direction: row-reverse;
}

.page-index-latest-promotions-overview__promotion-image {
  flex: 1;
  min-width: 400px; /* Minimum width for the image */
  height: auto;
  object-fit: cover;
  display: block;
}

.page-index-latest-promotions-overview__promotion-content {
  flex: 1.5;
  padding: 40px;
  text-align: left;
}

.page-index-latest-promotions-overview__promotion-title {
  font-size: 2.2em;
  color: #1A202C;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-latest-promotions-overview__promotion-description {
  font-size: 1.1em;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.page-index-latest-promotions-overview__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  transition: color 0.3s ease;
}

.page-index-latest-promotions-overview__text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-index-latest-promotions-overview__final-cta-section {
  background-color: #1A202C;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-index-latest-promotions-overview__final-cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-index-latest-promotions-overview__final-cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-latest-promotions-overview__hero-title {
    font-size: 2.8em;
  }

  .page-index-latest-promotions-overview__hero-description {
    font-size: 1em;
  }

  .page-index-latest-promotions-overview__promotion-item {
    flex-direction: column;
  }

  .page-index-latest-promotions-overview__promotion-item--reverse {
    flex-direction: column;
  }

  .page-index-latest-promotions-overview__promotion-image {
    min-width: unset;
    width: 100%;
  }

  .page-index-latest-promotions-overview__promotion-content {
    padding: 30px;
  }

  .page-index-latest-promotions-overview__promotion-title {
    font-size: 1.8em;
  }

  .page-index-latest-promotions-overview__section-title {
    font-size: 2.2em;
  }

  .page-index-latest-promotions-overview__final-cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions-overview__hero-content {
    width: 90%;
    padding: 15px;
  }

  .page-index-latest-promotions-overview__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-index-latest-promotions-overview__hero-description {
    font-size: 0.9em;
    margin-bottom: 20px;
  }

  .page-index-latest-promotions-overview__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-latest-promotions-overview__cta-button,
  .page-index-latest-promotions-overview__secondary-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-index-latest-promotions-overview__container {
    padding: 20px 15px;
  }

  .page-index-latest-promotions-overview__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-index-latest-promotions-overview__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-index-latest-promotions-overview__card-grid,
  .page-index-latest-promotions-overview__info-grid,
  .page-index-latest-promotions-overview__platform-features,
  .page-index-latest-promotions-overview__connect-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-latest-promotions-overview__card-title,
  .page-index-latest-promotions-overview__info-title,
  .page-index-latest-promotions-overview__feature-title,
  .page-index-latest-promotions-overview__method-title {
    font-size: 1.5em;
  }

  .page-index-latest-promotions-overview__promotion-content {
    padding: 20px;
  }

  .page-index-latest-promotions-overview__promotion-title {
    font-size: 1.5em;
  }

  .page-index-latest-promotions-overview__promotion-description {
    font-size: 0.95em;
  }

  .page-index-latest-promotions-overview__final-cta-title {
    font-size: 2em;
  }

  .page-index-latest-promotions-overview__final-cta-description {
    font-size: 1em;
  }
  
  /* Mobile image scaling for content images */
  .page-index-latest-promotions-overview__card-image,
  .page-index-latest-promotions-overview__promotion-image,
  .page-index-latest-promotions-overview__feature-icon {
    max-width: 100%;
    height: auto;
  }
  
  .page-index-latest-promotions-overview__hero-image {
    width: 100%;
    height: auto;
    max-height: 400px; /* Constrain hero image height on mobile */
  }

  /* Ensure content area images are not smaller than 200px (if selected by these rules) */
  .page-index-latest-promotions-overview img {
    min-width: 200px;
    min-height: 200px;
  }
}