.page-resources-latest-promotions {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px); /* Ensure header offset for PC and mobile */
}

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

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

.page-resources-latest-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 51, 102, 0.7); /* Semi-transparent royal blue background */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-promotions__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold auxiliary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-resources-latest-promotions__hero-button,
.page-resources-latest-promotions__call-to-action-button,
.page-resources-latest-promotions__final-call-to-action-button {
  display: inline-block;
  background-color: #FFD700; /* Gold auxiliary color */
  color: #003366; /* Royal blue text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-latest-promotions__hero-button:hover,
.page-resources-latest-promotions__call-to-action-button:hover,
.page-resources-latest-promotions__final-call-to-action-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-resources-latest-promotions__content-area {
  max-width: 800px; /* Content width for readability */
  margin: 40px auto;
  padding: 0 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-resources-latest-promotions__article-header {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-latest-promotions__back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-latest-promotions__back-link:hover {
  color: #FFD700;
}

.page-resources-latest-promotions__article-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-resources-latest-promotions__meta-info {
  font-size: 0.9em;
  color: #666666;
}

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

.page-resources-latest-promotions__article-subtitle {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-latest-promotions__article-body h4 {
  font-size: 1.5em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-latest-promotions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-latest-promotions__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-resources-latest-promotions__image-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
}

.page-resources-latest-promotions__image-figure figcaption {
  margin-top: 15px;
  font-size: 0.95em;
  color: #666666;
}

.page-resources-latest-promotions__ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-latest-promotions__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-latest-promotions__responsible-gaming-link {
  display: inline-block;
  margin-top: 20px;
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-latest-promotions__responsible-gaming-link:hover {
  color: #FFD700;
}

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

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

  .page-resources-latest-promotions__article-title {
    font-size: 2em;
  }

  .page-resources-latest-promotions__article-subtitle {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-promotions__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }

  .page-resources-latest-promotions__hero-content {
    padding: 25px;
  }

  .page-resources-latest-promotions__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-resources-latest-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-resources-latest-promotions__hero-button,
  .page-resources-latest-promotions__call-to-action-button,
  .page-resources-latest-promotions__final-call-to-action-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-resources-latest-promotions__article-header {
    padding: 20px 0;
    margin-bottom: 20px;
  }

  .page-resources-latest-promotions__article-title {
    font-size: 1.8em;
  }

  .page-resources-latest-promotions__article-subtitle {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-resources-latest-promotions__article-body p,
  .page-resources-latest-promotions__list li,
  .page-resources-latest-promotions__ordered-list li {
    font-size: 1em;
  }

  /* Mobile content area images must be responsive */
  .page-resources-latest-promotions img {
    max-width: 100%;
    height: auto;
  }

  .page-resources-latest-promotions__image-figure img {
    min-width: 200px; /* Maintain minimum size even on mobile if possible, but ensure max-width: 100% */
  }
}

@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__article-title {
    font-size: 1.5em;
  }

  .page-resources-latest-promotions__article-subtitle {
    font-size: 1.2em;
  }
}