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

.page-resources-latest-promotions-analysis__hero-section {
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background: linear-gradient(135deg, #003366, #001a33); /* Deep blue gradient */
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-resources-latest-promotions-analysis__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.page-resources-latest-promotions-analysis__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-resources-latest-promotions-analysis__intro-text {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-promotions-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-latest-promotions-analysis__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  display: block;
}

.page-resources-latest-promotions-analysis__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color for text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-latest-promotions-analysis__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-resources-latest-promotions-analysis__article-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-resources-latest-promotions-analysis__container {
  max-width: 800px; /* Content width for readability */
  margin: 0 auto;
}

.page-resources-latest-promotions-analysis__article-nav {
  margin-bottom: 40px;
  text-align: left;
}

.page-resources-latest-promotions-analysis__back-link {
  color: #003366;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-latest-promotions-analysis__back-link:hover {
  color: #FFCC00;
}

.page-resources-latest-promotions-analysis__article-content {
  line-height: 1.7;
  font-size: 1.1em;
}

.page-resources-latest-promotions-analysis__article-heading {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-resources-latest-promotions-analysis__sub-heading {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-resources-latest-promotions-analysis__paragraph {
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-latest-promotions-analysis__article-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-promotions-analysis__cta-wrapper {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.page-resources-latest-promotions-analysis__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-resources-latest-promotions-analysis__cta-button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-resources-latest-promotions-analysis__cta-button--secondary:hover {
  background-color: #001a33;
  border-color: #e6b800;
}

@media (max-width: 768px) {
  .page-resources-latest-promotions-analysis__hero-section {
    padding-top: var(--header-offset, 80px);
    padding-bottom: 40px;
  }

  .page-resources-latest-promotions-analysis__main-title {
    font-size: 2.2em;
  }

  .page-resources-latest-promotions-analysis__intro-text {
    font-size: 1em;
  }

  .page-resources-latest-promotions-analysis__article-section {
    padding: 40px 15px;
  }

  .page-resources-latest-promotions-analysis__article-heading {
    font-size: 2em;
  }

  .page-resources-latest-promotions-analysis__sub-heading {
    font-size: 1.5em;
  }

  .page-resources-latest-promotions-analysis__article-content img {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }

  .page-resources-latest-promotions-analysis__cta-wrapper {
    flex-direction: column;
  }

  .page-resources-latest-promotions-analysis__cta-button {
    width: 100%;
    box-sizing: border-box;
  }

  /* Ensure all images within the content area are responsive and not smaller than 200px */
  .page-resources-latest-promotions-analysis img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-resources-latest-promotions-analysis__main-title {
    font-size: 1.8em;
  }

  .page-resources-latest-promotions-analysis__article-heading {
    font-size: 1.7em;
  }

  .page-resources-latest-promotions-analysis__sub-heading {
    font-size: 1.3em;
  }

  .page-resources-latest-promotions-analysis__cta-button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}