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

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

.page-blog-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--color-text-main); /* Default text color for dark body background */
  background-color: var(--color-background); /* Explicitly setting background for main content to ensure contrast */
}

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

.page-blog-latest-promotions-analysis__section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--color-text-main);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-blog-latest-promotions-analysis__section-title--light {
  color: var(--color-text-main);
}

.page-blog-latest-promotions-analysis__text-block {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-latest-promotions-analysis__text-block--light {
  color: var(--color-text-secondary);
}

.page-blog-latest-promotions-analysis__btn-primary,
.page-blog-latest-promotions-analysis__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__btn-primary {
  background: var(--color-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
  opacity: 0.9;
}

.page-blog-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.page-blog-latest-promotions-analysis__btn-secondary:hover {
  background-color: rgba(34, 199, 104, 0.1);
  color: #ffffff;
}

.page-blog-latest-promotions-analysis__btn-text {
  color: var(--color-secondary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-latest-promotions-analysis__btn-text:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.page-blog-latest-promotions-analysis__link--inline {
  color: var(--color-secondary);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-blog-latest-promotions-analysis__link--inline:hover {
  color: var(--color-primary);
}

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

.page-blog-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-blog-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

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

.page-blog-latest-promotions-analysis__hero-title {
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  font-size: clamp(32px, 4.5vw, 56px); /* Using clamp for responsive H1 */
}

.page-blog-latest-promotions-analysis__hero-description {
  font-size: 20px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-blog-latest-promotions-analysis__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Introduction Section */
.page-blog-latest-promotions-analysis__introduction-section {
  padding: 80px 0;
  background-color: var(--color-background);
}

/* Promotion Types Section */
.page-blog-latest-promotions-analysis__promotion-types-section {
  padding: 80px 0;
  background-color: var(--color-card-bg);
}

.page-blog-latest-promotions-analysis__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-latest-promotions-analysis__card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 20px; /* Adjust padding for content */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-analysis__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-blog-latest-promotions-analysis__card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-blog-latest-promotions-analysis__card-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-blog-latest-promotions-analysis__guide-section {
  padding: 80px 0;
  background-color: var(--color-background);
}

.page-blog-latest-promotions-analysis__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-blog-latest-promotions-analysis__step-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-latest-promotions-analysis__step-card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-promotions-analysis__step-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 15px;
  line-height: 1;
}

.page-blog-latest-promotions-analysis__step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-analysis__step-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-promotions-analysis__guide-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Terms Section */
.page-blog-latest-promotions-analysis__terms-section {
  padding: 80px 0;
  background-color: var(--color-card-bg);
}

.page-blog-latest-promotions-analysis__terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-latest-promotions-analysis__terms-item {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-promotions-analysis__terms-item-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-analysis__terms-item-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Benefits Section */
.page-blog-latest-promotions-analysis__benefits-section {
  padding: 80px 0;
  background-color: var(--color-background);
}

.page-blog-latest-promotions-analysis__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-latest-promotions-analysis__benefits-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-promotions-analysis__benefits-item-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-analysis__benefits-item-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.page-blog-latest-promotions-analysis__faq-section {
  padding: 80px 0;
  background-color: var(--color-background);
}

.page-blog-latest-promotions-analysis__faq-list {
  margin-bottom: 60px;
}

.page-blog-latest-promotions-analysis__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  background-color: var(--color-card-bg);
  border-bottom: 1px solid var(--color-divider);
  transition: background-color 0.3s ease;
}

.page-blog-latest-promotions-analysis__faq-question:hover {
  background-color: rgba(34, 199, 104, 0.1);
}

.page-blog-latest-promotions-analysis__faq-item[open] .page-blog-latest-promotions-analysis__faq-question {
  border-bottom-color: transparent;
}

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

.page-blog-latest-promotions-analysis__faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-left: 20px;
}

.page-blog-latest-promotions-analysis__faq-item[open] .page-blog-latest-promotions-analysis__faq-toggle {
  color: var(--color-primary);
}

.page-blog-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.page-blog-latest-promotions-analysis__faq-answer p {
  margin: 0;
}

/* Details element specific styling to remove default arrow */
.page-blog-latest-promotions-analysis__faq-item > summary {
  list-style: none;
}

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

.page-blog-latest-promotions-analysis__faq-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Conclusion Section */
.page-blog-latest-promotions-analysis__conclusion-section {
  padding: 80px 0;
  background-color: var(--color-card-bg);
  text-align: center;
}

.page-blog-latest-promotions-analysis__conclusion-cta {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-analysis__hero-title {
    font-size: clamp(28px, 4vw, 48px);
  }

  .page-blog-latest-promotions-analysis__hero-description {
    font-size: 18px;
  }

  .page-blog-latest-promotions-analysis__section-title {
    font-size: clamp(24px, 3.5vw, 40px);
  }
}

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

  .page-blog-latest-promotions-analysis__hero-section {
    padding-bottom: 40px;
  }

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

  .page-blog-latest-promotions-analysis__hero-title {
    font-size: clamp(28px, 6vw, 40px);
    letter-spacing: -0.5px;
  }

  .page-blog-latest-promotions-analysis__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-blog-latest-promotions-analysis__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-blog-latest-promotions-analysis__container {
    padding: 0 15px;
  }

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

  .page-blog-latest-promotions-analysis__text-block {
    font-size: 16px;
  }

  .page-blog-latest-promotions-analysis__promotion-types-section,
  .page-blog-latest-promotions-analysis__guide-section,
  .page-blog-latest-promotions-analysis__terms-section,
  .page-blog-latest-promotions-analysis__benefits-section,
  .page-blog-latest-promotions-analysis__faq-section,
  .page-blog-latest-promotions-analysis__conclusion-section {
    padding: 50px 0;
  }

  .page-blog-latest-promotions-analysis__card-grid,
  .page-blog-latest-promotions-analysis__steps-grid,
  .page-blog-latest-promotions-analysis__terms-list,
  .page-blog-latest-promotions-analysis__benefits-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-blog-latest-promotions-analysis__card-image {
    height: 180px;
  }

  .page-blog-latest-promotions-analysis__card-title,
  .page-blog-latest-promotions-analysis__step-title,
  .page-blog-latest-promotions-analysis__terms-item-title,
  .page-blog-latest-promotions-analysis__benefits-item-title {
    font-size: 20px;
  }

  .page-blog-latest-promotions-analysis__faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .page-blog-latest-promotions-analysis__faq-toggle {
    font-size: 20px;
  }

  .page-blog-latest-promotions-analysis__faq-answer {
    padding: 0 20px 18px 20px;
    font-size: 15px;
  }

  /* Mobile image responsiveness */
  .page-blog-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-analysis__section,
  .page-blog-latest-promotions-analysis__card,
  .page-blog-latest-promotions-analysis__container,
  .page-blog-latest-promotions-analysis__hero-section,
  .page-blog-latest-promotions-analysis__promotion-types-section,
  .page-blog-latest-promotions-analysis__guide-section,
  .page-blog-latest-promotions-analysis__terms-section,
  .page-blog-latest-promotions-analysis__benefits-section,
  .page-blog-latest-promotions-analysis__faq-section,
  .page-blog-latest-promotions-analysis__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-blog-latest-promotions-analysis__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-latest-promotions-analysis__video-section {
    padding-top: 10px !important;
  }
}

/* Color Contrast Fixes for specific elements if needed */
/* Example: If a card background is too light, but this page uses dark backgrounds so not needed here */
.page-blog-latest-promotions-analysis__light-bg {
  color: #333333;
  background: #ffffff;
}

.page-blog-latest-promotions-analysis__dark-bg {
  color: var(--color-text-main);
  background: var(--color-card-bg);
}