/* style/blog-win5501-promotions-analysis.css */

:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-dark: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-blog-win5501-promotions-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for the main content area */
  background-color: var(--background-dark); /* Page background from custom colors */
}

/* Hero Section */
.page-blog-win5501-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background-dark);
  overflow: hidden;
}

.page-blog-win5501-promotions-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-win5501-promotions-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-win5501-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-blog-win5501-promotions-analysis__main-title {
  color: var(--gold-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-blog-win5501-promotions-analysis__subtitle {
  color: var(--text-main);
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-blog-win5501-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-win5501-promotions-analysis__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-blog-win5501-promotions-analysis__section {
  padding: 80px 20px;
  background-color: var(--background-dark);
  color: var(--text-main);
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-win5501-promotions-analysis__section:last-of-type {
  border-bottom: none;
}

.page-blog-win5501-promotions-analysis__introduction-section {
  background-color: var(--background-dark);
}

.page-blog-win5501-promotions-analysis__promotion-types-section,
.page-blog-win5501-promotions-analysis__terms-section,
.page-blog-win5501-promotions-analysis__conclusion-section {
  background-color: var(--card-bg);
}

.page-blog-win5501-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-win5501-promotions-analysis__section-title {
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-win5501-promotions-analysis__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-win5501-promotions-analysis__content-image {
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

/* Grid Cards */
.page-blog-win5501-promotions-analysis__grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-win5501-promotions-analysis__card {
  background-color: var(--background-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-win5501-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-win5501-promotions-analysis__card-title {
  color: var(--gold-color);
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-win5501-promotions-analysis__card-text {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* List Styling */
.page-blog-win5501-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-win5501-promotions-analysis__list-item {
  background-color: var(--card-bg);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  line-height: 1.6;
  color: var(--text-main);
}

.page-blog-win5501-promotions-analysis__list-item strong {
  color: var(--gold-color);
}

/* FAQ Section */
.page-blog-win5501-promotions-analysis__faq-list {
  margin-top: 40px;
}

.page-blog-win5501-promotions-analysis__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-win5501-promotions-analysis__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: var(--text-main);
  font-weight: bold;
  font-size: 1.1em;
  background-color: var(--deep-green);
  transition: background-color 0.3s ease;
}

.page-blog-win5501-promotions-analysis__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-win5501-promotions-analysis__faq-item summary:hover {
  background-color: var(--primary-color);
}

.page-blog-win5501-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-win5501-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-win5501-promotions-analysis__faq-item[open] .page-blog-win5501-promotions-analysis__faq-toggle {
  content: '−';
}

.page-blog-win5501-promotions-analysis__faq-answer {
  padding: 15px 20px 20px;
  background-color: var(--background-dark);
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--divider-color);
}

/* Conclusion Section */
.page-blog-win5501-promotions-analysis__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-blog-win5501-promotions-analysis__conclusion-section .page-blog-win5501-promotions-analysis__cta-button {
  margin-top: 40px;
  font-size: 1.3em;
  padding: 18px 35px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-win5501-promotions-analysis__main-title {
    font-size: 2.5em;
  }

  .page-blog-win5501-promotions-analysis__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-win5501-promotions-analysis__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-win5501-promotions-analysis__main-title {
    font-size: clamp(2em, 5vw, 2.5em); /* Using clamp for H1 */
  }

  .page-blog-win5501-promotions-analysis__subtitle {
    font-size: 1em;
  }

  .page-blog-win5501-promotions-analysis__section {
    padding: 60px 15px;
  }

  .page-blog-win5501-promotions-analysis__section-title {
    font-size: 1.8em;
  }

  .page-blog-win5501-promotions-analysis__grid-cards {
    grid-template-columns: 1fr;
  }

  .page-blog-win5501-promotions-analysis__card,
  .page-blog-win5501-promotions-analysis__list-item,
  .page-blog-win5501-promotions-analysis__faq-item {
    padding: 20px;
  }
  
  /* Mobile image responsive rules */
  .page-blog-win5501-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-win5501-promotions-analysis__section,
  .page-blog-win5501-promotions-analysis__card,
  .page-blog-win5501-promotions-analysis__container,
  .page-blog-win5501-promotions-analysis__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  /* Mobile button responsive rules */
  .page-blog-win5501-promotions-analysis__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-win5501-promotions-analysis__cta-buttons,
  .page-blog-win5501-promotions-analysis__button-group,
  .page-blog-win5501-promotions-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-win5501-promotions-analysis__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}

/* Ensure no image filters */
.page-blog-win5501-promotions-analysis img {
  filter: none; /* Override any potential global filters */
}

/* Specific filter for hero image to darken */
.page-blog-win5501-promotions-analysis__hero-image {
  filter: brightness(0.5);
}

/* Content area images minimum size check */
.page-blog-win5501-promotions-analysis__content-image {
  min-width: 200px;
  min-height: 200px;
}

/* Text contrast safety */
.page-blog-win5501-promotions-analysis p,
.page-blog-win5501-promotions-analysis li,
.page-blog-win5501-promotions-analysis__card-text,
.page-blog-win5501-promotions-analysis__faq-answer {
  color: var(--text-secondary); /* Ensures good contrast on dark backgrounds */
}

.page-blog-win5501-promotions-analysis__main-title,
.page-blog-win5501-promotions-analysis__section-title,
.page-blog-win5501-promotions-analysis__card-title,
.page-blog-win5501-promotions-analysis__list-item strong,
.page-blog-win5501-promotions-analysis__faq-item summary {
  color: var(--gold-color); /* Gold color for titles */
}

.page-blog-win5501-promotions-analysis__cta-button {
  color: #ffffff;
}