.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background: var(--background-color, #FFFFFF); /* Inherit from shared, default to white */
}

/* Hero Section */
.page-promotions__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding for header offset */
  display: flex;
  flex-direction: column; /* Default to column for content below image */
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #FFFFFF; /* Ensure light background for this section */
  padding-bottom: 40px;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image wrapper for desktop */
  margin-bottom: 30px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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