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

/* Base styles for the page content */
.page-blog-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #ffffff); /* Inherit from shared or default to white */
}

/* Sections with specific background colors for contrast */
.page-blog-latest-promotions-analysis__dark-bg {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
}

.page-blog-latest-promotions-analysis__light-bg {
  background-color: #ffffff; /* Auxiliary color / white */
  color: #333333;
}

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

/* Hero Section */
.page-blog-latest-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;
  overflow: hidden;
}

.page-blog-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-blog-latest-promotions-analysis__hero-content {
  text-align: center;
  padding: 30px 20px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__main-title {
  font-size: clamp(2.2em, 5vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-latest-promotions-analysis__intro-text {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

.page-blog-latest-promotions-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  box-sizing: border-box;
}

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

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

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

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

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

/* General Section Titles and Descriptions */
.page-blog-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: inherit; /* Inherit from section background */
}

.page-blog-latest-promotions-analysis__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: inherit;
}

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

.page-blog-latest-promotions-analysis__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-blog-latest-promotions-analysis__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-latest-promotions-analysis__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-blog-latest-promotions-analysis__list li {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-blog-latest-promotions-analysis__read-more-link {
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
  display: inline-block;
}

.page-blog-latest-promotions-analysis__read-more-link:hover {
  text-decoration: underline;
}

/* Detailed Offers Section */
.page-blog-latest-promotions-analysis__detailed-offers .page-blog-latest-promotions-analysis__section-title,
.page-blog-latest-promotions-analysis__detailed-offers .page-blog-latest-promotions-analysis__section-description {
  color: #ffffff;
}

.page-blog-latest-promotions-analysis__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-bottom: 40px;
  object-fit: cover;
}

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

.page-blog-latest-promotions-analysis__offer-card {
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.page-blog-latest-promotions-analysis__offer-card .page-blog-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-latest-promotions-analysis__offer-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

/* How-to-Claim Section */
.page-blog-latest-promotions-analysis__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-latest-promotions-analysis__step-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-blog-latest-promotions-analysis__step-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-latest-promotions-analysis__ordered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-blog-latest-promotions-analysis__ordered-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-blog-latest-promotions-analysis__ordered-list strong {
  color: #EA7C07;
}

/* Benefits Section */
.page-blog-latest-promotions-analysis__benefits-section .page-blog-latest-promotions-analysis__section-title,
.page-blog-latest-promotions-analysis__benefits-section .page-blog-latest-promotions-analysis__section-description {
  color: #ffffff;
}

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

.page-blog-latest-promotions-analysis__benefit-item {
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-blog-latest-promotions-analysis__benefit-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

/* FAQ Section */
.page-blog-latest-promotions-analysis__faq-list {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-promotions-analysis__faq-item {
  background-color: #f0f8ff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  background-color: #e6f2ff;
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-blog-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details summary */
}

.page-blog-latest-promotions-analysis__faq-question:hover {
  background-color: #d9ecff;
}

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

.page-blog-latest-promotions-analysis__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #e0e0e0;
}

.page-blog-latest-promotions-analysis__faq-item[open] .page-blog-latest-promotions-analysis__faq-question {
  background-color: #d9ecff;
}

.page-blog-latest-promotions-analysis__faq-image {
  margin-top: 40px;
}

/* Conclusion Section */
.page-blog-latest-promotions-analysis__conclusion-cta .page-blog-latest-promotions-analysis__section-title,
.page-blog-latest-promotions-analysis__conclusion-cta .page-blog-latest-promotions-analysis__section-description {
  color: #ffffff;
}

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

  .page-blog-latest-promotions-analysis__container,
  .page-blog-latest-promotions-analysis__hero-content {
    padding: 20px 15px;
  }

  .page-blog-latest-promotions-analysis__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
    padding-bottom: 40px;
  }

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

  .page-blog-latest-promotions-analysis__intro-text {
    font-size: 1em;
  }

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

  .page-blog-latest-promotions-analysis__btn-primary,
  .page-blog-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-blog-latest-promotions-analysis__section-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-latest-promotions-analysis__overview-grid,
  .page-blog-latest-promotions-analysis__offers-grid,
  .page-blog-latest-promotions-analysis__steps-grid,
  .page-blog-latest-promotions-analysis__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-latest-promotions-analysis__card,
  .page-blog-latest-promotions-analysis__offer-card,
  .page-blog-latest-promotions-analysis__step-card,
  .page-blog-latest-promotions-analysis__benefit-item {
    padding: 20px;
  }

  .page-blog-latest-promotions-analysis__card-title,
  .page-blog-latest-promotions-analysis__offer-title,
  .page-blog-latest-promotions-analysis__step-title,
  .page-blog-latest-promotions-analysis__benefit-title {
    font-size: 1.4em;
  }

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

  .page-blog-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-latest-promotions-analysis__container,
  .page-blog-latest-promotions-analysis__offer-card,
  .page-blog-latest-promotions-analysis__step-card,
  .page-blog-latest-promotions-analysis__benefit-item,
  .page-blog-latest-promotions-analysis__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-blog-latest-promotions-analysis__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-latest-promotions-analysis__faq-answer {
    padding: 10px 20px;
  }
}