.page-blog-nohu90-latest-promotions-analysis {
  background-color: #0A0A0A; /* Body background is dark, so main content will follow this */
  color: #FFF6D6; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 50px; /* Ensure space above footer */
}

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

/* HERO Section */
.page-blog-nohu90-latest-promotions-analysis__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body padding-top for header offset */
  margin-bottom: 40px;
  text-align: center;
  overflow: hidden;
}

.page-blog-nohu90-latest-promotions-analysis__hero-image {
  width: 100%;
  height: 500px; /* Fixed height for desktop hero */
  overflow: hidden;
  position: relative;
}

.page-blog-nohu90-latest-promotions-analysis__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Desktop: cover to fill space */
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-nohu90-latest-promotions-analysis__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(17, 17, 17, 0.8); /* Card BG color with transparency */
  border-radius: 10px;
  margin-top: -100px; /* Pull content up over image for visual appeal */
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  border: 1px solid #3A2A12; /* Border color */
}

.page-blog-nohu90-latest-promotions-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* clamp for H1 */
  color: #FFD36B; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.7); /* Glow effect */
}

.page-blog-nohu90-latest-promotions-analysis__description {
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main color */
  margin-bottom: 30px;
}

.page-blog-nohu90-latest-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

.page-blog-nohu90-latest-promotions-analysis__btn-primary,
.page-blog-nohu90-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%; /* Important for responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-nohu90-latest-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

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

.page-blog-nohu90-latest-promotions-analysis__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow color for text */
  border: 2px solid #FFD36B; /* Glow color for border */
}

.page-blog-nohu90-latest-promotions-analysis__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1); /* Subtle hover background */
  transform: translateY(-2px);
}

/* Content Sections */
.page-blog-nohu90-latest-promotions-analysis__content-section {
  padding: 50px 0;
  margin-bottom: 30px;
}

.page-blog-nohu90-latest-promotions-analysis__dark-bg {
  background-color: #0A0A0A; /* Background color for dark sections */
  color: #FFF6D6; /* Text Main color */
}

.page-blog-nohu90-latest-promotions-analysis__light-bg {
  background-color: #111111; /* Card BG color for light sections (still dark, but different) */
  color: #FFF6D6; /* Text Main color */
}

.page-blog-nohu90-latest-promotions-analysis__section-title {
  font-size: 2.2rem;
  color: #F2C14E; /* Main color for section titles */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-blog-nohu90-latest-promotions-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #F2C14E;
  border-radius: 2px;
}

.page-blog-nohu90-latest-promotions-analysis p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main color */
}

.page-blog-nohu90-latest-promotions-analysis__list {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main color */
}

.page-blog-nohu90-latest-promotions-analysis__list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-blog-nohu90-latest-promotions-analysis__list li strong {
  color: #FFD36B; /* Auxiliary color for strong text in lists */
}

.page-blog-nohu90-latest-promotions-analysis__image-wrapper {
  margin: 30px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  border: 1px solid #3A2A12;
}

.page-blog-nohu90-latest-promotions-analysis__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

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

.page-blog-nohu90-latest-promotions-analysis__card {
  background-color: #111111; /* Card BG color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF6D6; /* Text Main color */
}

.page-blog-nohu90-latest-promotions-analysis__card-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  min-height: 50px; /* Ensure card titles have enough space */
}

.page-blog-nohu90-latest-promotions-analysis__card img {
  width: 100%;
  height: 200px; /* Fixed height for card images */
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-blog-nohu90-latest-promotions-analysis__card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-nohu90-latest-promotions-analysis__card .page-blog-nohu90-latest-promotions-analysis__btn-primary {
  width: 100%;
  margin-top: auto;
}

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

details.page-blog-nohu90-latest-promotions-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border color */
  overflow: hidden;
  background: #111111; /* Card BG color */
  color: #FFF6D6; /* Text Main color */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
details.page-blog-nohu90-latest-promotions-analysis__faq-item summary.page-blog-nohu90-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2C14E; /* Main color for FAQ questions */
  font-weight: bold;
}
details.page-blog-nohu90-latest-promotions-analysis__faq-item summary.page-blog-nohu90-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-nohu90-latest-promotions-analysis__faq-item summary.page-blog-nohu90-latest-promotions-analysis__faq-question:hover {
  background: rgba(242, 193, 78, 0.1); /* Subtle hover for FAQ question */
}
.page-blog-nohu90-latest-promotions-analysis__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
}
.page-blog-nohu90-latest-promotions-analysis__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* Auxiliary color for toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-nohu90-latest-promotions-analysis__faq-item .page-blog-nohu90-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px;
  background: #0A0A0A; /* Background color for answer */
  border-radius: 0 0 10px 10px;
  color: #FFF6D6; /* Text Main color for answer */
}
.page-blog-nohu90-latest-promotions-analysis__faq-answer p {
  margin-bottom: 0;
}

/* General image styling for content area */
.page-blog-nohu90-latest-promotions-analysis img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-nohu90-latest-promotions-analysis__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-nohu90-latest-promotions-analysis__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
  .page-blog-nohu90-latest-promotions-analysis__section-title {
    font-size: 2rem;
  }
  .page-blog-nohu90-latest-promotions-analysis__card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-blog-nohu90-latest-promotions-analysis__hero-section {
    padding-top: 10px; /* Small top padding */
    margin-bottom: 20px;
  }
  .page-blog-nohu90-latest-promotions-analysis__hero-image {
    height: 300px; /* Smaller hero height for mobile */
  }
  .page-blog-nohu90-latest-promotions-analysis__hero-image img {
    object-fit: contain !important; /* Mobile: contain to prevent cropping */
    aspect-ratio: unset !important; /* Remove aspect ratio if set */
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-nohu90-latest-promotions-analysis__hero-content {
    margin-top: -60px; /* Adjust overlap for mobile */
    padding: 25px 15px;
    border-radius: 8px;
  }
  .page-blog-nohu90-latest-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem); /* Mobile H1 clamp */
    margin-bottom: 15px;
  }
  .page-blog-nohu90-latest-promotions-analysis__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-blog-nohu90-latest-promotions-analysis__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }
  .page-blog-nohu90-latest-promotions-analysis__btn-primary,
  .page-blog-nohu90-latest-promotions-analysis__btn-secondary {
    width: 100% !important; /* Full width for buttons */
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.95rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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