/* style/resources-latest-updates-promotions.css */
.page-resources-latest-updates-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* body background is #121212 from shared.css */
}

.page-resources-latest-updates-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-latest-updates-promotions__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  padding-top: calc(80px + var(--header-offset, 120px)); /* Adjust for fixed header */
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a; /* Dark background for hero */
}

.page-resources-latest-updates-promotions__hero-content {
  flex: 1;
  padding-right: 40px;
  z-index: 1;
  max-width: 600px;
}

.page-resources-latest-updates-promotions__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-latest-updates-promotions__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-latest-updates-promotions__hero-buttons {
  display: flex;
  gap: 15px;
}

.page-resources-latest-updates-promotions__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 0;
}

.page-resources-latest-updates-promotions__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Section Titles & Descriptions */
.page-resources-latest-updates-promotions__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-latest-updates-promotions__section-description {
  font-size: 1.1em;
  color: #f0f0f0; /* Default for dark background sections */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}