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

/* BEM Naming Convention: page-blog-latest-n66-promotions-analysis__element-name */

:root {
  --n66-primary-color: #26A9E0;
  --n66-secondary-color: #FFFFFF;
  --n66-login-color: #EA7C07;
  --n66-background-color: #FFFFFF;
  --n66-text-dark: #333333;
  --n66-text-light: #FFFFFF;
  --n66-border-color: #e0e0e0;
}

/* Base styles for the page content wrapper */
.page-blog-latest-n66-promotions-analysis {
  color: var(--n66-text-dark); /* Default text color for light background */
  background-color: var(--n66-background-color); /* Assuming body background is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-latest-n66-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #f5f5f5;
  overflow: hidden;
}

.page-blog-latest-n66-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-blog-latest-n66-promotions-analysis__hero-content {
  max-width: 900px;
  margin: 30px auto 60px auto;
  padding: 0 20px;
  text-align: center;
  z-index: 1;
}

.page-blog-latest-n66-promotions-analysis__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  color: var(--n66-primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-n66-promotions-analysis__hero-description {
  font-size: 1.1em;
  color: var(--n66-text-dark);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.page-blog-latest-n66-promotions-analysis__section {
  padding: 60px 0;
  background-color: var(--n66-background-color);
}

.page-blog-latest-n66-promotions-analysis__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

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

.page-blog-latest-n66-promotions-analysis__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: var(--n66-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-latest-n66-promotions-analysis__sub-section-title {
  font-size: clamp(1.5em, 2.5vw, 2em);
  color: var(--n66-primary-color);
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-blog-latest-n66-promotions-analysis__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--n66-text-dark);
}

/* Buttons */
.page-blog-latest-n66-promotions-analysis__btn-primary,
.page-blog-latest-n66-promotions-analysis__btn-secondary,
.page-blog-latest-n66-promotions-analysis__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-latest-n66-promotions-analysis__btn-primary {
  background-color: var(--n66-primary-color);
  color: var(--n66-text-light);
  border: 2px solid var(--n66-primary-color);
}

.page-blog-latest-n66-promotions-analysis__btn-primary:hover {
  background-color: darken(var(--n66-primary-color), 10%);
  border-color: darken(var(--n66-primary-color), 10%);
}

.page-blog-latest-n66-promotions-analysis__btn-primary--large {
    padding: 15px 35px;
    font-size: 1.2em;
    margin-top: 30px;
}

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

.page-blog-latest-n66-promotions-analysis__btn-secondary:hover {
  background-color: var(--n66-primary-color);
  color: var(--n66-secondary-color);
}

.page-blog-latest-n66-promotions-analysis__btn-link {
  background: none;
  color: var(--n66-primary-color);
  border: none;
  padding: 0;
  text-decoration: underline;
  font-size: 0.95em;
}

.page-blog-latest-n66-promotions-analysis__btn-link:hover {
  color: darken(var(--n66-primary-color), 10%);
}

.page-blog-latest-n66-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-blog-latest-n66-promotions-analysis__feature-item {
  background-color: var(--n66-secondary-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-blog-latest-n66-promotions-analysis__feature-item:hover {
  transform: translateY(-5px);
}

.page-blog-latest-n66-promotions-analysis__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-blog-latest-n66-promotions-analysis__feature-title {
  font-size: 1.4em;
  color: var(--n66-primary-color);
  margin-bottom: 15px;
}

.page-blog-latest-n66-promotions-analysis__feature-description {
  font-size: 1em;
  color: var(--n66-text-dark);
}

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

.page-blog-latest-n66-promotions-analysis__promo-card {
  background-color: var(--n66-secondary-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-blog-latest-n66-promotions-analysis__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-latest-n66-promotions-analysis__promo-card-title {
  font-size: 1.3em;
  color: var(--n66-primary-color);
  padding: 20px 20px 10px;
  font-weight: 600;
}

.page-blog-latest-n66-promotions-analysis__promo-card-description {
  font-size: 0.95em;
  color: var(--n66-text-dark);
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-blog-latest-n66-promotions-analysis__promo-card .page-blog-latest-n66-promotions-analysis__btn-secondary {
  margin: 0 20px 20px;
  align-self: flex-start;
  width: calc(100% - 40px); /* Adjust width to fit padding */
}

/* Lists */
.page-blog-latest-n66-promotions-analysis__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--n66-text-dark);
}

.page-blog-latest-n66-promotions-analysis__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-latest-n66-promotions-analysis__list--two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  list-style: none;
  margin-left: 0;
  padding: 0;
}

.page-blog-latest-n66-promotions-analysis__list--two-cols li {
  position: relative;
  padding-left: 30px;
}

.page-blog-latest-n66-promotions-analysis__list--two-cols li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--n66-primary-color);
  font-weight: bold;
}

/* Steps List */
.page-blog-latest-n66-promotions-analysis__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-latest-n66-promotions-analysis__steps-list li {
  background-color: var(--n66-secondary-color);
  border-left: 5px solid var(--n66-primary-color);
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-latest-n66-promotions-analysis__step-title {
  font-size: 1.3em;
  color: var(--n66-primary-color);
  margin-bottom: 10px;
}

.page-blog-latest-n66-promotions-analysis__step-description {
  font-size: 1em;
  color: var(--n66-text-dark);
  margin-bottom: 15px;
}

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

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

.page-blog-latest-n66-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--n66-text-dark);
  background-color: #f5f5f5;
  border-bottom: 1px solid var(--n66-border-color);
}

.page-blog-latest-n66-promotions-analysis__faq-item[open] .page-blog-latest-n66-promotions-analysis__faq-question {
    border-bottom: 1px solid var(--n66-primary-color);
}

.page-blog-latest-n66-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--n66-primary-color);
  margin-left: 15px;
}

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

.page-blog-latest-n66-promotions-analysis__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--n66-text-dark);
  line-height: 1.6;
}

.page-blog-latest-n66-promotions-analysis__faq-answer p {
    margin-bottom: 10px;
}

.page-blog-latest-n66-promotions-analysis__faq-answer .page-blog-latest-n66-promotions-analysis__btn-link {
    margin-top: 10px;
}

/* Details element native styles reset */
.page-blog-latest-n66-promotions-analysis__faq-item summary {
    list-style: none;
}
.page-blog-latest-n66-promotions-analysis__faq-item summary::-webkit-details-marker {
    display: none;
}

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

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

.page-blog-latest-n66-promotions-analysis__conclusion-section .page-blog-latest-n66-promotions-analysis__text-block {
  color: var(--n66-text-light);
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-blog-latest-n66-promotions-analysis__hero-content {
    margin: 20px auto 40px auto;
  }
  .page-blog-latest-n66-promotions-analysis__list--two-cols {
    grid-template-columns: 1fr;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .page-blog-latest-n66-promotions-analysis__hero-section {
    padding-top: 10px !important;
  }

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

  .page-blog-latest-n66-promotions-analysis__hero-description {
    font-size: 1em;
  }

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

  .page-blog-latest-n66-promotions-analysis__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-blog-latest-n66-promotions-analysis__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-blog-latest-n66-promotions-analysis__sub-section-title {
    font-size: clamp(1.3em, 5vw, 1.8em);
    margin-top: 30px;
    margin-bottom: 20px;
  }

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

  .page-blog-latest-n66-promotions-analysis__hero-image-wrapper,
  .page-blog-latest-n66-promotions-analysis__feature-item,
  .page-blog-latest-n66-promotions-analysis__promo-card,
  .page-blog-latest-n66-promotions-analysis__steps-list li,
  .page-blog-latest-n66-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-blog-latest-n66-promotions-analysis__btn-primary,
  .page-blog-latest-n66-promotions-analysis__btn-secondary,
  .page-blog-latest-n66-promotions-analysis a[class*="button"],
  .page-blog-latest-n66-promotions-analysis a[class*="btn"] {
    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-latest-n66-promotions-analysis__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 15px;
  }

  .page-blog-latest-n66-promotions-analysis__promo-card .page-blog-latest-n66-promotions-analysis__btn-secondary {
    width: calc(100% - 40px) !important;
  }

  .page-blog-latest-n66-promotions-analysis__list,
  .page-blog-latest-n66-promotions-analysis__list--two-cols {
    margin-left: 15px;
    padding: 0 10px;
  }

  .page-blog-latest-n66-promotions-analysis__list--two-cols li {
    padding-left: 25px;
  }

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

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

/* Ensure content area images are at least 200px */
.page-blog-latest-n66-promotions-analysis__hero-section img,
.page-blog-latest-n66-promotions-analysis__features-grid img,
.page-blog-latest-n66-promotions-analysis__promo-card img {
  min-width: 200px;
  min-height: 200px;
}

/* Color contrast fixes if needed */
.page-blog-latest-n66-promotions-analysis__dark-bg {
  color: var(--n66-text-light);
  background: var(--n66-primary-color);
}

.page-blog-latest-n66-promotions-analysis__light-bg {
  color: var(--n66-text-dark);
  background: var(--n66-secondary-color);
}

.page-blog-latest-n66-promotions-analysis__medium-bg {
  color: var(--n66-text-dark);
  background: var(--n66-secondary-color);
}

/* Specific contrast for conclusion section */
.page-blog-latest-n66-promotions-analysis__conclusion-section {
  background-color: var(--n66-primary-color);
  color: var(--n66-text-light);
}
.page-blog-latest-n66-promotions-analysis__conclusion-section .page-blog-latest-n66-promotions-analysis__section-title {
  color: var(--n66-text-light);
}
.page-blog-latest-n66-promotions-analysis__conclusion-section .page-blog-latest-n66-promotions-analysis__text-block {
  color: var(--n66-text-light);
}
.page-blog-latest-n66-promotions-analysis__conclusion-section .page-blog-latest-n66-promotions-analysis__btn-primary {
  background-color: var(--n66-secondary-color);
  color: var(--n66-primary-color);
  border-color: var(--n66-secondary-color);
}
.page-blog-latest-n66-promotions-analysis__conclusion-section .page-blog-latest-n66-promotions-analysis__btn-primary:hover {
  background-color: lighten(var(--n66-primary-color), 10%);
  border-color: lighten(var(--n66-primary-color), 10%);
  color: var(--n66-text-light);
}