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

/* Base styles for the page content */
.page-resources-af88-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  padding-top: 0; /* Handled by hero section or main content area if shared.css doesn't set body padding-top */
}

/* Hero Section */
.page-resources-af88-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-resources-af88-promotions-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-af88-promotions-guide__hero-content {
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-resources-af88-promotions-guide__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-af88-promotions-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Call to Action Buttons */
.page-resources-af88-promotions-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-af88-promotions-guide__btn-primary,
.page-resources-af88-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-af88-promotions-guide__btn-primary {
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}