/* style/blog-11uu-latest-promotions-analysis.css */

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

/* Base styles for the page content */
.page-blog-11uu-latest-promotions-analysis {
  color: var(--page-text-main); /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-blog-11uu-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-11uu-latest-promotions-analysis__section {
  padding: 60px 0;
  background-color: var(--page-bg-color); /* Background */
}

.page-blog-11uu-latest-promotions-analysis__section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--page-gold-color); /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

/* Hero Section */
.page-blog-11uu-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles --header-offset */
  background-color: var(--page-bg-color);
  overflow: hidden; /* Ensure content doesn't spill */
}

.page-blog-11uu-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-blog-11uu-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px; /* Ensure hero image is not too small */
}

.page-blog-11uu-latest-promotions-analysis__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-blog-11uu-latest-promotions-analysis__hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--page-gold-color); /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-11uu-latest-promotions-analysis__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--page-text-secondary); /* Text Secondary */
  margin-bottom: 30px;
}

/* Call to Action Buttons */
.page-blog-11uu-latest-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-11uu-latest-promotions-analysis__cta-buttons--center {
  margin-top: 40px;
}

.page-blog-11uu-latest-promotions-analysis__btn-primary,
.page-blog-11uu-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-11uu-latest-promotions-analysis__btn-primary {
  background: var(--page-button-gradient); /* Button gradient */
  color: var(--page-text-main); /* Text Main */
  border: 2px solid transparent;
}

.page-blog-11uu-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-11uu-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: var(--page-primary-color); /* Primary Color */
  border: 2px solid var(--page-primary-color); /* Primary Color */
}

.page-blog-11uu-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--page-primary-color);
  color: var(--page-text-main);
}

/* Introduction Section */
.page-blog-11uu-latest-promotions-analysis__introduction p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--page-text-main);
  text-align: justify;
}

/* Promotion Types Grid */
.page-blog-11uu-latest-promotions-analysis__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-11uu-latest-promotions-analysis__promo-card {
  background-color: var(--page-card-bg); /* Card BG */
  border: 1px solid var(--page-border-color); /* Border Color */
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--page-text-main);
  display: flex;
  flex-direction: column;
}

.page-blog-11uu-latest-promotions-analysis__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-11uu-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
  min-height: 200px; /* Enforce minimum size */
}

.page-blog-11uu-latest-promotions-analysis__card-title {
  font-size: 24px;
  color: var(--page-gold-color); /* Gold */
  margin-bottom: 15px;
  padding: 0 20px;
  font-weight: bold;
}

.page-blog-11uu-latest-promotions-analysis__promo-card p {
  font-size: 16px;
  color: var(--page-text-secondary); /* Text Secondary */
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1; /* Allow paragraph to take available space */
}

.page-blog-11uu-latest-promotions-analysis__card-link {
  display: inline-block;
  background-color: var(--page-deep-green); /* Deep Green */
  color: var(--page-text-main);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push link to bottom */
}

.page-blog-11uu-latest-promotions-analysis__card-link:hover {
  background-color: var(--page-primary-color);
}

/* How to Claim Section */
.page-blog-11uu-latest-promotions-analysis__how-to-claim ol {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 0;
}

.page-blog-11uu-latest-promotions-analysis__how-to-claim li {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--page-text-main);
}

.page-blog-11uu-latest-promotions-analysis__how-to-claim li strong {
  color: var(--page-gold-color); /* Gold */
}

/* Important Notes Section */
.page-blog-11uu-latest-promotions-analysis__important-notes p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--page-text-main);
  text-align: justify;
}

.page-blog-11uu-latest-promotions-analysis__important-notes ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-blog-11uu-latest-promotions-analysis__important-notes li {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--page-text-secondary); /* Text Secondary */
}

.page-blog-11uu-latest-promotions-analysis__important-notes li strong {
  color: var(--page-gold-color); /* Gold */
}

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

.page-blog-11uu-latest-promotions-analysis__faq-item {
  background-color: var(--page-card-bg); /* Card BG */
  border: 1px solid var(--page-border-color); /* Border Color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-11uu-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  color: var(--page-text-main); /* Text Main */
  cursor: pointer;
  background-color: var(--page-deep-green); /* Deep Green */
  border-bottom: 1px solid var(--page-border-color);
}

/* Hide default details marker */
.page-blog-11uu-latest-promotions-analysis__faq-item summary {
  list-style: none;
}
.page-blog-11uu-latest-promotions-analysis__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-11uu-latest-promotions-analysis__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-11uu-latest-promotions-analysis__faq-item[open] .page-blog-11uu-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg); /* Rotate to form an 'X' or similar */
}

.page-blog-11uu-latest-promotions-analysis__faq-answer {
  padding: 20px;
  font-size: 16px;
  color: var(--page-text-secondary); /* Text Secondary */
  background-color: var(--page-card-bg);
}

.page-blog-11uu-latest-promotions-analysis__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin in answer */
}

/* Conclusion Section */
.page-blog-11uu-latest-promotions-analysis__conclusion p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--page-text-main);
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-11uu-latest-promotions-analysis__hero-title {
    font-size: clamp(30px, 4vw, 48px);
  }
  .page-blog-11uu-latest-promotions-analysis__hero-description {
    font-size: clamp(15px, 1.8vw, 18px);
  }
}

@media (max-width: 768px) {
  .page-blog-11uu-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-11uu-latest-promotions-analysis__section {
    padding: 40px 0;
  }

  .page-blog-11uu-latest-promotions-analysis__container {
    padding: 0 15px; /* Add padding for mobile */
  }

  .page-blog-11uu-latest-promotions-analysis__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-11uu-latest-promotions-analysis__hero-image-wrapper {
    margin-bottom: 30px;
    max-height: 300px;
  }

  .page-blog-11uu-latest-promotions-analysis__hero-image {
    min-height: 200px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-11uu-latest-promotions-analysis__hero-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 15px;
  }

  .page-blog-11uu-latest-promotions-analysis__hero-description {
    font-size: clamp(14px, 4vw, 16px);
    margin-bottom: 25px;
  }

  .page-blog-11uu-latest-promotions-analysis__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-blog-11uu-latest-promotions-analysis__btn-primary,
  .page-blog-11uu-latest-promotions-analysis__btn-secondary {
    width: 100% !important; /* Full width buttons */
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-11uu-latest-promotions-analysis__section-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 30px;
  }

  .page-blog-11uu-latest-promotions-analysis__promo-grid {
    grid-template-columns: 1fr; /* Single column for cards */
  }

  .page-blog-11uu-latest-promotions-analysis__card-image {
    height: 180px;
    min-height: 180px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-11uu-latest-promotions-analysis__promo-card {
    padding-bottom: 20px;
  }

  .page-blog-11uu-latest-promotions-analysis__card-title {
    font-size: 20px;
  }

  .page-blog-11uu-latest-promotions-analysis__promo-card p,
  .page-blog-11uu-latest-promotions-analysis__introduction p,
  .page-blog-11uu-latest-promotions-analysis__how-to-claim li,
  .page-blog-11uu-latest-promotions-analysis__important-notes p,
  .page-blog-11uu-latest-promotions-analysis__important-notes li,
  .page-blog-11uu-latest-promotions-analysis__faq-answer p,
  .page-blog-11uu-latest-promotions-analysis__conclusion p {
    font-size: 15px;
  }

  .page-blog-11uu-latest-promotions-analysis__faq-question {
    font-size: 18px;
    padding: 15px;
  }

  .page-blog-11uu-latest-promotions-analysis__faq-answer {
    padding: 15px;
  }
  
  /* Ensure all containers for images/videos/buttons handle overflow */
  .page-blog-11uu-latest-promotions-analysis__section,
  .page-blog-11uu-latest-promotions-analysis__card,
  .page-blog-11uu-latest-promotions-analysis__container,
  .page-blog-11uu-latest-promotions-analysis__cta-buttons,
  .page-blog-11uu-latest-promotions-analysis__promo-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Specific handling for flex-wrap on button groups */
  .page-blog-11uu-latest-promotions-analysis__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Mobile vertical stack */
  }
}