/* style/blog-ht368-latest-promotions-analysis.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --background-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-blog-ht368-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default to light text as body background is dark */
  background-color: transparent; /* Inherit from body for dark background */
}

.page-blog-ht368-latest-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: #1a1a1a; /* Dark background for hero section */
  color: var(--text-light);
}

.page-blog-ht368-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-blog-ht368-latest-promotions-analysis__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1; /* Ensure text is above image if any overlap */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  margin-top: -150px; /* Pull content up over image slightly */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-ht368-latest-promotions-analysis__main-title {
  color: var(--secondary-color);
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-ht368-latest-promotions-analysis__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-blog-ht368-latest-promotions-analysis__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-ht368-latest-promotions-analysis__cta-buttons--center {
  margin-top: 30px;
}

.page-blog-ht368-latest-promotions-analysis__btn-primary,
.page-blog-ht368-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

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

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

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

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

.page-blog-ht368-latest-promotions-analysis__btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-blog-ht368-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1a1a1a; /* Dark background for content sections */
  color: var(--text-light);
}

.page-blog-ht368-latest-promotions-analysis__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-blog-ht368-latest-promotions-analysis__sub-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-ht368-latest-promotions-analysis__paragraph {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-light);
}

.page-blog-ht368-latest-promotions-analysis__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.page-blog-ht368-latest-promotions-analysis__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.page-blog-ht368-latest-promotions-analysis__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-blog-ht368-latest-promotions-analysis__image-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-ht368-latest-promotions-analysis__text-content {
  flex: 1.5;
  min-width: 300px;
}

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

.page-blog-ht368-latest-promotions-analysis__card {
  background-color: var(--secondary-color); /* Light background for cards */
  color: var(--text-dark); /* Dark text on light card background */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-ht368-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

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

.page-blog-ht368-latest-promotions-analysis__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-blog-ht368-latest-promotions-analysis__faq-item {
  background-color: #2a2a2a; /* Slightly lighter dark background for FAQ item */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-light);
  border: 1px solid #3a3a3a;
}

.page-blog-ht368-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  background-color: #26A9E0; /* Primary color for FAQ question background */
  color: var(--secondary-color); /* Light text on primary background */
  list-style: none; /* For details/summary */
}

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

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

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

.page-blog-ht368-latest-promotions-analysis__faq-answer {
  padding: 20px 25px;
  border-top: 1px solid #3a3a3a;
  font-size: 1em;
  line-height: 1.6;
  background-color: #2a2a2a;
  color: var(--text-light);
}

.page-blog-ht368-latest-promotions-analysis__faq-item:not([open]) .page-blog-ht368-latest-promotions-analysis__faq-answer {
  display: none; /* Hide answer when not open for details tag */
}

.page-blog-ht368-latest-promotions-analysis__dark-bg {
  background-color: #1a1a1a;
  color: var(--text-light);
}

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

.page-blog-ht368-latest-promotions-analysis .keyword {
  color: var(--primary-color);
  font-weight: bold;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-ht368-latest-promotions-analysis__hero-content {
    margin-top: -100px;
    padding: 30px 20px;
  }

  .page-blog-ht368-latest-promotions-analysis__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }

  .page-blog-ht368-latest-promotions-analysis__section-title {
    font-size: 2em;
  }

  .page-blog-ht368-latest-promotions-analysis__sub-title {
    font-size: 1.6em;
  }

  .page-blog-ht368-latest-promotions-analysis__image-text-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-blog-ht368-latest-promotions-analysis__image-text-block--reverse {
    flex-direction: column;
  }

  .page-blog-ht368-latest-promotions-analysis__image-content,
  .page-blog-ht368-latest-promotions-analysis__text-content {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-blog-ht368-latest-promotions-analysis__hero-content {
    margin-top: -80px;
    padding: 20px 15px;
    border-radius: 0;
  }

  .page-blog-ht368-latest-promotions-analysis__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }

  .page-blog-ht368-latest-promotions-analysis__description {
    font-size: 1em;
  }

  .page-blog-ht368-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-ht368-latest-promotions-analysis__btn-primary,
  .page-blog-ht368-latest-promotions-analysis__btn-secondary,
  .page-blog-ht368-latest-promotions-analysis a[class*="button"],
  .page-blog-ht368-latest-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-ht368-latest-promotions-analysis__cta-buttons,
  .page-blog-ht368-latest-promotions-analysis__button-group,
  .page-blog-ht368-latest-promotions-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-ht368-latest-promotions-analysis__content-area {
    padding: 30px 15px;
  }

  .page-blog-ht368-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-ht368-latest-promotions-analysis__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-ht368-latest-promotions-analysis__paragraph,
  .page-blog-ht368-latest-promotions-analysis__list-item {
    font-size: 1em;
  }

  .page-blog-ht368-latest-promotions-analysis__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-ht368-latest-promotions-analysis__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-ht368-latest-promotions-analysis__card {
    padding: 20px;
  }

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

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

  .page-blog-ht368-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-ht368-latest-promotions-analysis__section,
  .page-blog-ht368-latest-promotions-analysis__card,
  .page-blog-ht368-latest-promotions-analysis__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-ht368-latest-promotions-analysis__hero-section {
    padding-top: 10px !important;
  }
}