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

/* Variables for colors based on the provided palette */
:root {
  --fh88-primary-color: #11A84E; /* Main color */
  --fh88-secondary-color: #22C768; /* Auxiliary color */
  --fh88-button-gradient-start: #2AD16F;
  --fh88-button-gradient-end: #13994A;
  --fh88-card-bg: #11271B;
  --fh88-background: #08160F;
  --fh88-text-main: #F2FFF6;
  --fh88-text-secondary: #A7D9B8;
  --fh88-border-color: #2E7A4E;
  --fh88-glow-color: #57E38D;
  --fh88-gold-color: #F2C14E;
  --fh88-divider-color: #1E3A2A;
  --fh88-deep-green: #0A4B2C;

  /* Default text color for light background sections */
  --fh88-light-bg-text: #333333;
  /* Default text color for dark background sections */
  --fh88-dark-bg-text: #F2FFF6;
}

/* Ensure body padding-top is handled by shared.css */
/* Main content area styling */
.page-blog-fh88-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--fh88-dark-bg-text); /* Default text color for dark body background */
  background-color: var(--fh88-background); /* Explicitly set for main content */
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-fh88-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom */
  overflow: hidden;
  background-color: var(--fh88-deep-green);
}

.page-blog-fh88-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for hero image */
}

.page-blog-fh88-latest-promotions-analysis__hero-content {
  position: relative; /* Ensure content is above image if needed, but not overlaying */
  text-align: center;
  max-width: 900px;
  padding: 20px;
  color: var(--fh88-text-main);
}

.page-blog-fh88-latest-promotions-analysis__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--fh88-gold-color);
  letter-spacing: 1px;
}

.page-blog-fh88-latest-promotions-analysis__hero-description {
  font-size: clamp(1em, 1.5vw, 1.3em);
  margin-bottom: 30px;
  color: var(--fh88-text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-fh88-latest-promotions-analysis__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, var(--fh88-button-gradient-start) 0%, var(--fh88-button-gradient-end) 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fh88-latest-promotions-analysis__cta-button:hover {
  background: linear-gradient(180deg, var(--fh88-button-gradient-end) 0%, var(--fh88-button-gradient-start) 100%);
  transform: translateY(-2px);
}

.page-blog-fh88-latest-promotions-analysis__cta-button--secondary {
  background: none;
  border: 2px solid var(--fh88-secondary-color);
  color: var(--fh88-secondary-color);
  box-shadow: none;
}

.page-blog-fh88-latest-promotions-analysis__cta-button--secondary:hover {
  background: var(--fh88-secondary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

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

.page-blog-fh88-latest-promotions-analysis__content-area {
  background-color: var(--fh88-background);
  color: var(--fh88-text-main);
}

.page-blog-fh88-latest-promotions-analysis__dark-section {
  background-color: var(--fh88-deep-green);
  color: var(--fh88-text-main);
}

.page-blog-fh88-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  color: var(--fh88-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-fh88-latest-promotions-analysis__paragraph {
  font-size: 1.1em;
  color: var(--fh88-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-fh88-latest-promotions-analysis__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--fh88-border-color);
  object-fit: cover;
}

.page-blog-fh88-latest-promotions-analysis__image--small {
  max-width: 800px;
}

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

.page-blog-fh88-latest-promotions-analysis__card {
  background-color: var(--fh88-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--fh88-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-fh88-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-blog-fh88-latest-promotions-analysis__card-title {
  font-size: 1.5em;
  color: var(--fh88-primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-fh88-latest-promotions-analysis__card-text {
  font-size: 1em;
  color: var(--fh88-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-fh88-latest-promotions-analysis__card-button {
  display: inline-block;
  background: var(--fh88-primary-color);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fh88-latest-promotions-analysis__card-button:hover {
  background: var(--fh88-secondary-color);
}

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

.page-blog-fh88-latest-promotions-analysis__promo-item {
  background-color: var(--fh88-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--fh88-border-color);
}

.page-blog-fh88-latest-promotions-analysis__promo-title {
  font-size: 1.6em;
  color: var(--fh88-gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-fh88-latest-promotions-analysis__promo-description {
  font-size: 1em;
  color: var(--fh88-text-secondary);
  margin-bottom: 20px;
}

.page-blog-fh88-latest-promotions-analysis__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-blog-fh88-latest-promotions-analysis__step-item {
  background-color: var(--fh88-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--fh88-border-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-blog-fh88-latest-promotions-analysis__step-title {
  font-size: 1.8em;
  color: var(--fh88-primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-blog-fh88-latest-promotions-analysis__step-description {
  font-size: 1.1em;
  color: var(--fh88-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-fh88-latest-promotions-analysis__checklist {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-fh88-latest-promotions-analysis__checklist-item {
  background-color: var(--fh88-card-bg);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--fh88-border-color);
}

.page-blog-fh88-latest-promotions-analysis__checklist-title {
  font-size: 1.6em;
  color: var(--fh88-gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-fh88-latest-promotions-analysis__checklist-description {
  font-size: 1em;
  color: var(--fh88-text-secondary);
}

.page-blog-fh88-latest-promotions-analysis__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-blog-fh88-latest-promotions-analysis__faq-section {
  background-color: var(--fh88-background);
  color: var(--fh88-text-main);
}

.page-blog-fh88-latest-promotions-analysis__faq-list {
  margin-top: 30px;
}

.page-blog-fh88-latest-promotions-analysis__faq-item {
  background-color: var(--fh88-card-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--fh88-border-color);
}

.page-blog-fh88-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(--fh88-primary-color);
  cursor: pointer;
  list-style: none; /* For details/summary */
}

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

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

.page-blog-fh88-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--fh88-text-secondary);
}

.page-blog-fh88-latest-promotions-analysis__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: var(--fh88-text-secondary);
  text-align: justify;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-fh88-latest-promotions-analysis__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-fh88-latest-promotions-analysis__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-fh88-latest-promotions-analysis__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-fh88-latest-promotions-analysis__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 30px;
  }
  .page-blog-fh88-latest-promotions-analysis__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-fh88-latest-promotions-analysis__hero-description {
    font-size: 1em;
  }
  .page-blog-fh88-latest-promotions-analysis__section {
    padding: 40px 15px;
  }
  .page-blog-fh88-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-fh88-latest-promotions-analysis__paragraph {
    font-size: 0.95em;
  }
  .page-blog-fh88-latest-promotions-analysis__card-grid,
  .page-blog-fh88-latest-promotions-analysis__promo-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-fh88-latest-promotions-analysis__card,
  .page-blog-fh88-latest-promotions-analysis__promo-item,
  .page-blog-fh88-latest-promotions-analysis__step-item,
  .page-blog-fh88-latest-promotions-analysis__checklist-item {
    padding: 20px;
  }
  .page-blog-fh88-latest-promotions-analysis__card-title,
  .page-blog-fh88-latest-promotions-analysis__promo-title,
  .page-blog-fh88-latest-promotions-analysis__step-title,
  .page-blog-fh88-latest-promotions-analysis__checklist-title {
    font-size: 1.3em;
  }
  .page-blog-fh88-latest-promotions-analysis__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-blog-fh88-latest-promotions-analysis__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-blog-fh88-latest-promotions-analysis__cta-button,
  .page-blog-fh88-latest-promotions-analysis__card-button {
    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-fh88-latest-promotions-analysis__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  /* Images responsive */
  .page-blog-fh88-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-blog-fh88-latest-promotions-analysis__hero-image {
    max-height: 300px;
  }
  .page-blog-fh88-latest-promotions-analysis__section,
  .page-blog-fh88-latest-promotions-analysis__card,
  .page-blog-fh88-latest-promotions-analysis__container,
  .page-blog-fh88-latest-promotions-analysis__hero-section,
  .page-blog-fh88-latest-promotions-analysis__promo-item,
  .page-blog-fh88-latest-promotions-analysis__step-item,
  .page-blog-fh88-latest-promotions-analysis__checklist-item,
  .page-blog-fh88-latest-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-fh88-latest-promotions-analysis__main-title {
    font-size: 1.8em;
  }
  .page-blog-fh88-latest-promotions-analysis__section-title {
    font-size: 1.5em;
  }
  .page-blog-fh88-latest-promotions-analysis__cta-button {
    font-size: 16px;
    padding: 12px 20px;
  }
  .page-blog-fh88-latest-promotions-analysis__card-title,
  .page-blog-fh88-latest-promotions-analysis__promo-title,
  .page-blog-fh88-latest-promotions-analysis__step-title,
  .page-blog-fh88-latest-promotions-analysis__checklist-title {
    font-size: 1.2em;
  }
  .page-blog-fh88-latest-promotions-analysis__faq-question {
    font-size: 1em;
  }
}