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

.page-resources-latest-promotions__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
}

.page-resources-latest-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-resources-latest-promotions__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(26, 32, 44, 0.6); /* Semi-transparent dark blue overlay */
}

.page-resources-latest-promotions__hero-content {
  max-width: 900px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-latest-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  line-height: 1.2;
}

.page-resources-latest-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-resources-latest-promotions__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold accent for button */
  color: #1A202C; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.page-resources-latest-promotions__content-area {
  max-width: 900px; /* Optimal reading width */
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.7;
  font-size: 1.1em;
}

.page-resources-latest-promotions__table-of-contents {
  background-color: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 40px;
}

.page-resources-latest-promotions__toc-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-latest-promotions__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-latest-promotions__toc-list li {
  margin-bottom: 10px;
}

.page-resources-latest-promotions__toc-list a {
  color: #1A202C;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-resources-latest-promotions__toc-list a:hover {
  color: #FFD700;
}

.page-resources-latest-promotions__article-heading {
  font-size: 2.2em;
  color: #1A202C;
  margin-top: 50px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 15px;
}

.page-resources-latest-promotions__article-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 80%;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-latest-promotions__article-paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-latest-promotions__article-paragraph a {
  color: #1A202C;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-latest-promotions__article-paragraph a:hover {
  color: #FFD700;
}

.page-resources-latest-promotions__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-resources-latest-promotions__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-resources-latest-promotions__action-button {
  display: block;
  width: fit-content;
  margin: 30px auto 50px auto;
  background-color: #1A202C; /* Dark blue button */
  color: #FFD700; /* Gold text */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.page-resources-latest-promotions__action-button:hover {
  background-color: #0d121b;
  transform: translateY(-2px);
}

.page-resources-latest-promotions__numbered-list,
.page-resources-latest-promotions__bullet-list {
  margin: 25px 0;
  padding-left: 30px;
}

.page-resources-latest-promotions__numbered-list li,
.page-resources-latest-promotions__bullet-list li {
  margin-bottom: 12px;
  font-size: 1.05em;
  line-height: 1.6;
}

.page-resources-latest-promotions__numbered-list li strong {
  color: #1A202C;
}

.page-resources-latest-promotions__numbered-list li a,
.page-resources-latest-promotions__bullet-list li a {
  color: #1A202C;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-latest-promotions__numbered-list li a:hover,
.page-resources-latest-promotions__bullet-list li a:hover {
  color: #FFD700;
}

.page-resources-latest-promotions__return-link-wrapper {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-resources-latest-promotions__return-link {
  display: inline-block;
  color: #1A202C;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 10px 20px;
  border: 2px solid #1A202C;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-latest-promotions__return-link:hover {
  background-color: #1A202C;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-latest-promotions__hero-title {
    font-size: 2.5em;
  }

  .page-resources-latest-promotions__hero-description {
    font-size: 1em;
  }

  .page-resources-latest-promotions__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-latest-promotions__content-area {
    padding: 0 15px;
  }

  .page-resources-latest-promotions__article-heading {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-resources-latest-promotions__article-paragraph,
  .page-resources-latest-promotions__numbered-list li,
  .page-resources-latest-promotions__bullet-list li {
    font-size: 0.95em;
  }

  /* Critical: Prevent content images from overflowing on mobile */
  .page-resources-latest-promotions img {
    max-width: 100%;
    height: auto;
  }

  .page-resources-latest-promotions {
    overflow-x: hidden;
  }
}

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

  .page-resources-latest-promotions__hero-description {
    font-size: 0.9em;
  }

  .page-resources-latest-promotions__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-resources-latest-promotions__toc-title {
    font-size: 1.5em;
  }
}