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

/* Base styles for the page */
.page-blog-22hello88-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--site-bg, #08160F); /* Fallback to custom dark green if shared var is not defined */
  color: #F2FFF6; /* Text Main */
}

/* Ensure main content has proper spacing from header */
.page-blog-22hello88-latest-promotions-analysis__hero-section,
.page-blog-22hello88-latest-promotions-analysis__introduction-section,
.page-blog-22hello88-latest-promotions-analysis__promotions-types-section,
.page-blog-22hello88-latest-promotions-analysis__how-to-claim-section,
.page-blog-22hello88-latest-promotions-analysis__terms-conditions-section,
.page-blog-22hello88-latest-promotions-analysis__optimization-tips-section,
.page-blog-22hello88-latest-promotions-analysis__faq-section,
.page-blog-22hello88-latest-promotions-analysis__conclusion-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px; /* Consistent bottom padding */
  position: relative;
  overflow: hidden; /* Prevent content overflow */
}

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

/* Colors based on custom palette */
.page-blog-22hello88-latest-promotions-analysis__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-22hello88-latest-promotions-analysis__light-bg {
  background-color: #11271B; /* Card BG, used as light here for contrast against #08160F */
  color: #F2FFF6; /* Text Main */
}

.page-blog-22hello88-latest-promotions-analysis__text-secondary {
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-22hello88-latest-promotions-analysis__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-22hello88-latest-promotions-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for responsive H1 */
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

/* Buttons */
.page-blog-22hello88-latest-promotions-analysis__btn-primary,
.page-blog-22hello88-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-22hello88-latest-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main for primary button */
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-22hello88-latest-promotions-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-22hello88-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow color for secondary text */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-blog-22hello88-latest-promotions-analysis__btn-secondary:hover {
  background-color: #2E7A4E; /* Border color as hover background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-22hello88-latest-promotions-analysis__cta-full-width {
  text-align: center;
  margin-top: 50px;
}

.page-blog-22hello88-latest-promotions-analysis__cta-full-width .page-blog-22hello88-latest-promotions-analysis__btn-primary,
.page-blog-22hello88-latest-promotions-analysis__cta-full-width .page-blog-22hello88-latest-promotions-analysis__btn-secondary {
  min-width: 250px;
}

/* Hero Section */
.page-blog-22hello88-latest-promotions-analysis__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  min-height: 500px;
  padding: 10px 20px 80px; /* Small top padding, generous bottom padding */
  box-sizing: border-box;
}

.page-blog-22hello88-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 40px; /* Space between image and content */
}

.page-blog-22hello88-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Minimum size */
  min-height: 200px;
}

.page-blog-22hello88-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

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

.page-blog-22hello88-latest-promotions-analysis__promotion-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-22hello88-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-22hello88-latest-promotions-analysis__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-22hello88-latest-promotions-analysis__card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-22hello88-latest-promotions-analysis__promotion-card p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How-to-Claim Section */
.page-blog-22hello88-latest-promotions-analysis__steps-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-blog-22hello88-latest-promotions-analysis__steps-content {
  flex: 1;
}

.page-blog-22hello88-latest-promotions-analysis__steps-image {
  flex: 1;
  text-align: center;
}

.page-blog-22hello88-latest-promotions-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

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

.page-blog-22hello88-latest-promotions-analysis__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-22hello88-latest-promotions-analysis__steps-list li strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-22hello88-latest-promotions-analysis__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #11A84E; /* Primary color */
  color: #F2FFF6; /* Text Main */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Terms & Conditions / Optimization Tips Lists */
.page-blog-22hello88-latest-promotions-analysis__terms-list,
.page-blog-22hello88-latest-promotions-analysis__tips-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-22hello88-latest-promotions-analysis__terms-list li,
.page-blog-22hello88-latest-promotions-analysis__tips-list li {
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-22hello88-latest-promotions-analysis__terms-list li strong,
.page-blog-22hello88-latest-promotions-analysis__tips-list li strong {
  color: #F2FFF6; /* Text Main */
}

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

.page-blog-22hello88-latest-promotions-analysis__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-blog-22hello88-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green for summary background */
  user-select: none;
}

.page-blog-22hello88-latest-promotions-analysis__faq-item[open] .page-blog-22hello88-latest-promotions-analysis__faq-question {
  background-color: #11A84E; /* Primary color when open */
}

.page-blog-22hello88-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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