/* style/resources-s66-latest-promotions.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-color: #EA7C07;
  --background-color: #FFFFFF;
  --black-color: #000000;
}

.page-resources-s66-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--black-color); /* Matches body background from shared.css */
}

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

.page-resources-s66-latest-promotions__section {
  padding: 60px 0;
}

.page-resources-s66-latest-promotions__dark-bg {
  background-color: var(--black-color);
  color: var(--text-light);
}

.page-resources-s66-latest-promotions__light-bg {
  background-color: var(--background-color);
  color: var(--text-dark);
}

.page-resources-s66-latest-promotions__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-s66-latest-promotions__section-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-s66-latest-promotions__section-description a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* HERO SECTION */
.page-resources-s66-latest-promotions__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0; /* Handled by shared.css body padding */
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

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

.page-resources-s66-latest-promotions__hero-title {
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-s66-latest-promotions__hero-description {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-resources-s66-latest-promotions__hero-buttons {
  display: flex;
  gap: 20px;
}

.page-resources-s66-latest-promotions__btn-primary,
.page-resources-s66-latest-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-s66-latest-promotions__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-resources-s66-latest-promotions__btn-primary:hover {
  background-color: #208DBF; /* darken(var(--primary-color), 10%) */
  border-color: #208DBF; /* darken(var(--primary-color), 10%) */
}

.page-resources-s66-latest-promotions__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-s66-latest-promotions__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

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

/* OVERVIEW SECTION */
.page-resources-s66-latest-promotions__overview-section .page-resources-s66-latest-promotions__section-title {
  color: var(--primary-color);
}

/* PROMOTION TYPES SECTION */
.page-resources-s66-latest-promotions__promotion-types .page-resources-s66-latest-promotions__section-title {
  color: var(--text-light);
}