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

/* Base styles for the page, ensuring light text on dark body background */
.page-blog-2024-promotions-analysis {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-blog-2024-promotions-analysis__section {
  padding: 60px 0;
}

.page-blog-2024-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-blog-2024-promotions-analysis__hero-image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.page-blog-2024-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.page-blog-2024-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text */
  border-radius: 8px;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
}

.page-blog-2024-promotions-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-2024-promotions-analysis__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-2024-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-2024-promotions-analysis__btn-primary,
.page-blog-2024-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-2024-promotions-analysis__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-2024-promotions-analysis__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-blog-2024-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-2024-promotions-analysis__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-2024-promotions-analysis__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-blog-2024-promotions-analysis__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #26A9E0; /* Primary color for section titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-2024-promotions-analysis__introduction p,
.page-blog-2024-promotions-analysis__important-notes p,
.page-blog-2024-promotions-analysis__conclusion p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-2024-promotions-analysis__promotions {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

.page-blog-2024-promotions-analysis__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-2024-promotions-analysis__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

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

.page-blog-2024-promotions-analysis__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-blog-2024-promotions-analysis__promo-card-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-blog-2024-promotions-analysis__promo-card-description {
  font-size: 0.95rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog-2024-promotions-analysis__promo-details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  color: #f0f0f0;
}

.page-blog-2024-promotions-analysis__promo-details li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-blog-2024-promotions-analysis__promo-details li::before {
  content: '✓';
  color: #EA7C07;
  position: absolute;
  left: 0;
  top: 0;
}

.page-blog-2024-promotions-analysis__access-guide .page-blog-2024-promotions-analysis__section-title {
  color: #EA7C07;
}

.page-blog-2024-promotions-analysis__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-blog-2024-promotions-analysis__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #26A9E0;
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 8px;
  position: relative;
  padding-left: 60px;
  color: #ffffff;
}

.page-blog-2024-promotions-analysis__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #26A9E0;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.page-blog-2024-promotions-analysis__step-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-blog-2024-promotions-analysis__step-item p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-blog-2024-promotions-analysis__video-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.page-blog-2024-promotions-analysis__video-container {
  width: 100%;
  max-width: 1000px; /* Max width for video container */
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-2024-promotions-analysis__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #000;
  border-radius: 8px;
}

.page-blog-2024-promotions-analysis__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.page-blog-2024-promotions-analysis__video-caption {
  font-style: italic;
  color: #f0f0f0;
  font-size: 0.95rem;
}

.page-blog-2024-promotions-analysis__important-notes .page-blog-2024-promotions-analysis__section-title {
  color: #26A9E0;
}

.page-blog-2024-promotions-analysis__notes-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-2024-promotions-analysis__notes-list li {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #EA7C07;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 1rem;
  color: #ffffff;
}

.page-blog-2024-promotions-analysis__notes-list li strong {
  color: #EA7C07;
}

.page-blog-2024-promotions-analysis__products {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-2024-promotions-analysis__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-blog-2024-promotions-analysis__product-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.page-blog-2024-promotions-analysis__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-2024-promotions-analysis__product-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-blog-2024-promotions-analysis__product-card-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-blog-2024-promotions-analysis__product-card-description {
  font-size: 0.9rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog-2024-promotions-analysis__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-2024-promotions-analysis__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-2024-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #26A9E0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-2024-promotions-analysis__faq-item[open] .page-blog-2024-promotions-analysis__faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-blog-2024-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-2024-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #EA7C07;
  transition: transform 0.3s ease;
}

.page-blog-2024-promotions-analysis__faq-item[open] .page-blog-2024-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-2024-promotions-analysis__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #f0f0f0;
}

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

.page-blog-2024-promotions-analysis__conclusion .page-blog-2024-promotions-analysis__section-title {
  color: #EA7C07;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-2024-promotions-analysis__hero-content {
    margin-top: -60px;
  }
}

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

  .page-blog-2024-promotions-analysis__section {
    padding: 40px 0;
  }

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

  .page-blog-2024-promotions-analysis__hero-content {
    margin-top: -40px;
    padding: 15px;
  }

  .page-blog-2024-promotions-analysis__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-2024-promotions-analysis__description {
    font-size: 1rem;
  }

  .page-blog-2024-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-2024-promotions-analysis__btn-primary,
  .page-blog-2024-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-2024-promotions-analysis__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-2024-promotions-analysis__promo-card,
  .page-blog-2024-promotions-analysis__product-card {
    padding: 20px;
  }

  .page-blog-2024-promotions-analysis__promo-card-image,
  .page-blog-2024-promotions-analysis__product-card-image {
    height: 160px;
  }

  .page-blog-2024-promotions-analysis__step-item {
    padding: 20px;
    padding-left: 55px;
  }

  .page-blog-2024-promotions-analysis__step-item::before {
    left: 15px;
    top: 20px;
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .page-blog-2024-promotions-analysis__step-title {
    font-size: 1.2rem;
  }

  .page-blog-2024-promotions-analysis__video-section {
    padding-top: 10px !important; /* body handles --header-offset, small top padding for section */
    padding-bottom: 40px;
  }

  .page-blog-2024-promotions-analysis__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-2024-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-2024-promotions-analysis__notes-list li {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .page-blog-2024-promotions-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-2024-promotions-analysis__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  /* Ensure all images are responsive */
  .page-blog-2024-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-2024-promotions-analysis__section,
  .page-blog-2024-promotions-analysis__card,
  .page-blog-2024-promotions-analysis__container,
  .page-blog-2024-promotions-analysis__promo-grid,
  .page-blog-2024-promotions-analysis__product-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-blog-2024-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 10vw, 2.2rem);
  }

  .page-blog-2024-promotions-analysis__section-title {
    font-size: 1.6rem;
  }

  .page-blog-2024-promotions-analysis__promo-card-title,
  .page-blog-2024-promotions-analysis__product-card-title {
    font-size: 1.3rem;
  }
}