/* style/blog-phsky-promotions-guide.css */
.page-blog-phsky-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Body background from shared.css */
}

.page-blog-phsky-promotions-guide__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #FFF6D6;
  min-height: 500px;
}

.page-blog-phsky-promotions-guide__hero-image-container {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
}

.page-blog-phsky-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the image for text readability */
}

.page-blog-phsky-promotions-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-phsky-promotions-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  line-height: 1.2;
}

.page-blog-phsky-promotions-guide__hero-description {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-blog-phsky-promotions-guide__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-phsky-promotions-guide__section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Consistent dark background */
}

.page-blog-phsky-promotions-guide__dark-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  color: #111111; /* Dark text for light gradient background */
}

.page-blog-phsky-promotions-guide__dark-section .page-blog-phsky-promotions-guide__section-title,
.page-blog-phsky-promotions-guide__dark-section .page-blog-phsky-promotions-guide__text-block {
  color: #111111; /* Dark text for light gradient background */
}

.page-blog-phsky-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-phsky-promotions-guide__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-phsky-promotions-guide__subsection-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #F2C14E; /* Main color */
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.page-blog-phsky-promotions-guide__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
  text-align: left;
}

.page-blog-phsky-promotions-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
}

.page-blog-phsky-promotions-guide__image--center {
    margin-left: auto;
    margin-right: auto;
}