/* style/resources-gemwin-promotions-guide.css */

/* Variables */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A2B3C; /* Dark Blue/Charcoal */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f4f4; /* From shared.css body background */
  --border-light: #e0e0e0;
}

.page-resources-gemwin-promotions-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-gemwin-promotions-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); /* Gold to Dark Blue gradient */
  color: var(--text-light); /* Light text on dark/gold background */
}

.page-resources-gemwin-promotions-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources-gemwin-promotions-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-gemwin-promotions-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block; /* Ensures no extra space below image */
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}