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

/* --- Base Styles & Layout --- */
.page-blog-nohu666-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color for dark background */
  background-color: var(--bg, #08160F); /* Default background color */
}

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

.page-blog-nohu666-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-nohu666-latest-promotions-analysis__text-block {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
}

/* --- Hero Section --- */
.page-blog-nohu666-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: 10px; /* body already handles --header-offset */
  background-color: var(--bg, #08160F);
}

.page-blog-nohu666-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 40px;
}

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

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

.page-blog-nohu666-latest-promotions-analysis__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-nohu666-latest-promotions-analysis__hero-description {
  font-size: 1.2em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-nohu666-latest-promotions-analysis__hero-description a {
  color: var(--gold, #F2C14E);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-nohu666-latest-promotions-analysis__hero-description a:hover {
  text-decoration: underline;
}

.page-blog-nohu666-latest-promotions-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-nohu666-latest-promotions-analysis__btn-primary,
.page-blog-nohu666-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: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-nohu666-latest-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main, #F2FFF6);
  border: 2px solid transparent;
}

.page-blog-nohu666-latest-promotions-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-nohu666-latest-promotions-analysis__btn-secondary {
  background: var(--card-bg, #11271B);
  color: var(--gold, #F2C14E);
  border: 2px solid var(--gold, #F2C14E);
}

.page-blog-nohu666-latest-promotions-analysis__btn-secondary:hover {
  background: var(--gold, #F2C14E);
  color: var(--card-bg, #11271B);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- Content Sections --- */
.page-blog-nohu666-latest-promotions-analysis__content-section {
  padding: 60px 0;
}

.page-blog-nohu666-latest-promotions-analysis__light-bg {
  background-color: var(--bg, #08160F); /* Keeping consistency, as body is dark. If this was a light section, text would be dark. */
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-nohu666-latest-promotions-analysis__light-bg .page-blog-nohu666-latest-promotions-analysis__section-title {
  color: var(--text-main, #F2FFF6);
}
.page-blog-nohu666-latest-promotions-analysis__light-bg .page-blog-nohu666-latest-promotions-analysis__text-block {
  color: var(--text-secondary, #A7D9B8);
}
.page-blog-nohu666-latest-promotions-analysis__light-bg a {
  color: var(--gold, #F2C14E);
}


.page-blog-nohu666-latest-promotions-analysis__dark-bg {
  background-color: var(--card-bg, #11271B);
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-nohu666-latest-promotions-analysis__dark-bg .page-blog-nohu666-latest-promotions-analysis__section-title {
  color: var(--text-main, #F2FFF6);
}
.page-blog-nohu666-latest-promotions-analysis__dark-bg .page-blog-nohu666-latest-promotions-analysis__text-block {
  color: var(--text-secondary, #A7D9B8);
}
.page-blog-nohu666-latest-promotions-analysis__dark-bg a {
  color: var(--gold, #F2C14E);
}

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

.page-blog-nohu666-latest-promotions-analysis__promo-card {
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--divider, #1E3A2A);
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-nohu666-latest-promotions-analysis__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

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

.page-blog-nohu666-latest-promotions-analysis__promo-title {
  font-size: 1.5em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-nohu666-latest-promotions-analysis__promo-description {
  font-size: 1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-blog-nohu666-latest-promotions-analysis__promo-description a {
  color: var(--gold, #F2C14E);
  text-decoration: none;
}
.page-blog-nohu666-latest-promotions-analysis__promo-description a:hover {
  text-decoration: underline;
}

.page-blog-nohu666-latest-promotions-analysis__card-btn {
  margin-top: auto; /* Push button to bottom */
}


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

.page-blog-nohu666-latest-promotions-analysis__step-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--divider, #1E3A2A);
}

.page-blog-nohu666-latest-promotions-analysis__step-title {
  font-size: 1.6em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-nohu666-latest-promotions-analysis__step-description {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-nohu666-latest-promotions-analysis__step-description a {
  color: var(--gold, #F2C14E);
  text-decoration: none;
  font-weight: bold;
}
.page-blog-nohu666-latest-promotions-analysis__step-description a:hover {
  text-decoration: underline;
}

/* --- Conditions List --- */
.page-blog-nohu666-latest-promotions-analysis__conditions-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-nohu666-latest-promotions-analysis__list-item {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.page-blog-nohu666-latest-promotions-analysis__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: var(--primary-color, #11A84E);
  font-size: 1.2em;
  line-height: 1;
}

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

.page-blog-nohu666-latest-promotions-analysis__benefit-card {
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--divider, #1E3A2A);
  transition: transform 0.3s ease;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-blog-nohu666-latest-promotions-analysis__benefit-image {
  width: 100%;
  height: 150px; /* Fixed height for consistency */
  object-fit: contain; /* Use contain to show full image, not crop */
  margin-bottom: 15px;
  display: block;
}

.page-blog-nohu666-latest-promotions-analysis__benefit-title {
  font-size: 1.3em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-nohu666-latest-promotions-analysis__benefit-description {
  font-size: 0.95em;
  color: var(--text-secondary, #A7D9B8);
}
.page-blog-nohu666-latest-promotions-analysis__benefit-description a {
  color: var(--gold, #F2C14E);
  text-decoration: none;
}
.page-blog-nohu666-latest-promotions-analysis__benefit-description a:hover {
  text-decoration: underline;
}

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

.page-blog-nohu666-latest-promotions-analysis__faq-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--divider, #1E3A2A);
  overflow: hidden; /* For smooth transition of details */
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-nohu666-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  background-color: var(--card-bg, #11271B);
  user-select: none;
  list-style: none; /* For details/summary */
}

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

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

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

.page-blog-nohu666-latest-promotions-analysis__faq-item[open] .page-blog-nohu666-latest-promotions-analysis__faq-toggle {
  content: '−'; /* Changed by JS */
}

.page-blog-nohu666-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-nohu666-latest-promotions-analysis__faq-answer p {
  margin-top: 0;
  margin-bottom: 10px;
}
.page-blog-nohu666-latest-promotions-analysis__faq-answer a {
  color: var(--gold, #F2C14E);
  text-decoration: none;
  font-weight: bold;
}
.page-blog-nohu666-latest-promotions-analysis__faq-answer a:hover {
  text-decoration: underline;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-blog-nohu666-latest-promotions-analysis__section-title {
    font-size: 2em;
  }
  .page-blog-nohu666-latest-promotions-analysis__hero-section {
    padding: 60px 20px;
    padding-top: 10px;
  }
  .page-blog-nohu666-latest-promotions-analysis__hero-image {
    height: 500px;
  }
}

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

  .page-blog-nohu666-latest-promotions-analysis__container,
  .page-blog-nohu666-latest-promotions-analysis__hero-section,
  .page-blog-nohu666-latest-promotions-analysis__content-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* --- Hero Section Mobile --- */
  .page-blog-nohu666-latest-promotions-analysis__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-nohu666-latest-promotions-analysis__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-blog-nohu666-latest-promotions-analysis__hero-image {
    height: 300px;
  }
  .page-blog-nohu666-latest-promotions-analysis__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-blog-nohu666-latest-promotions-analysis__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-blog-nohu666-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-nohu666-latest-promotions-analysis__btn-primary,
  .page-blog-nohu666-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* --- Content Sections Mobile --- */
  .page-blog-nohu666-latest-promotions-analysis__content-section {
    padding: 40px 0;
  }
  .page-blog-nohu666-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-nohu666-latest-promotions-analysis__text-block {
    font-size: 1em;
  }

  /* --- Promotions Grid Mobile --- */
  .page-blog-nohu666-latest-promotions-analysis__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-nohu666-latest-promotions-analysis__promo-card {
    padding: 20px;
  }
  .page-blog-nohu666-latest-promotions-analysis__promo-image {
    height: 180px;
  }
  .page-blog-nohu666-latest-promotions-analysis__promo-title {
    font-size: 1.3em;
  }
  .page-blog-nohu666-latest-promotions-analysis__promo-description {
    font-size: 0.95em;
  }

  /* --- Steps List Mobile --- */
  .page-blog-nohu666-latest-promotions-analysis__step-item {
    padding: 20px;
  }
  .page-blog-nohu666-latest-promotions-analysis__step-title {
    font-size: 1.4em;
  }
  .page-blog-nohu666-latest-promotions-analysis__step-description {
    font-size: 1em;
  }

  /* --- Conditions List Mobile --- */
  .page-blog-nohu666-latest-promotions-analysis__list-item {
    font-size: 1em;
    padding-left: 20px;
  }

  /* --- Benefits Grid Mobile --- */
  .page-blog-nohu666-latest-promotions-analysis__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-nohu666-latest-promotions-analysis__benefit-card {
    padding: 20px;
  }
  .page-blog-nohu666-latest-promotions-analysis__benefit-image {
    height: 120px;
  }
  .page-blog-nohu666-latest-promotions-analysis__benefit-title {
    font-size: 1.2em;
  }
  .page-blog-nohu666-latest-promotions-analysis__benefit-description {
    font-size: 0.9em;
  }

  /* --- FAQ Section Mobile --- */
  .page-blog-nohu666-latest-promotions-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-blog-nohu666-latest-promotions-analysis__faq-answer {
    padding: 0 20px 15px;
    font-size: 1em;
  }

  /* --- Image Responsive Force --- */
  .page-blog-nohu666-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-nohu666-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-nohu666-latest-promotions-analysis__promo-card,
  .page-blog-nohu666-latest-promotions-analysis__benefit-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

/* --- Color Contrast Classes (Emergency Fix) --- */
.page-blog-nohu666-latest-promotions-analysis__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-nohu666-latest-promotions-analysis__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}

/* Custom colors from prompt */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg: #11271B;
  --bg: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Ensure links in general content areas also follow color rules */
.page-blog-nohu666-latest-promotions-analysis__text-block a,
.page-blog-nohu666-latest-promotions-analysis__step-description a {
  color: var(--gold, #F2C14E);
}
.page-blog-nohu666-latest-promotions-analysis__text-block a:hover,
.page-blog-nohu666-latest-promotions-analysis__step-description a:hover {
  text-decoration: underline;
}