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

/* Base styles for the page content */
.page-blog-hwin-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #ffffff;
}

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

/* Hero Section */
.page-blog-hwin-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  margin-bottom: 40px;
}

.page-blog-hwin-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-blog-hwin-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 8px;
  max-width: 900px;
  margin-top: 150px; /* Push content below image on larger screens */
}

.page-blog-hwin-latest-promotions-analysis__main-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #ffffff;
}

.page-blog-hwin-latest-promotions-analysis__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* CTA Buttons */
.page-blog-hwin-latest-promotions-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-hwin-latest-promotions-analysis__btn-primary,
.page-blog-hwin-latest-promotions-analysis__btn-secondary,
.page-blog-hwin-latest-promotions-analysis__btn-card {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-hwin-latest-promotions-analysis__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-hwin-latest-promotions-analysis__btn-primary:hover {
  background-color: #1a7fb0;
  border-color: #1a7fb0;
}

.page-blog-hwin-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-blog-hwin-latest-promotions-analysis__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-blog-hwin-latest-promotions-analysis__btn-card {
  background-color: #EA7C07; /* Login color for card buttons */
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
}

.page-blog-hwin-latest-promotions-analysis__btn-card:hover {
  background-color: #c96806;
}

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

.page-blog-hwin-latest-promotions-analysis__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-hwin-latest-promotions-analysis__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-hwin-latest-promotions-analysis__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-blog-hwin-latest-promotions-analysis__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

.page-blog-hwin-latest-promotions-analysis__keyword {
  font-weight: bold;
  color: inherit;
}

.page-blog-hwin-latest-promotions-analysis__link {
  color: #EA7C07;
  text-decoration: underline;
}

.page-blog-hwin-latest-promotions-analysis__link:hover {
  color: #c96806;
}

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

.page-blog-hwin-latest-promotions-analysis__promotion-card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-hwin-latest-promotions-analysis__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-hwin-latest-promotions-analysis__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-blog-hwin-latest-promotions-analysis__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 15px;
  color: #26A9E0;
}

.page-blog-hwin-latest-promotions-analysis__card-text {
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
  color: #555555;
}

/* Steps Section */
.page-blog-hwin-latest-promotions-analysis__steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hwin-latest-promotions-analysis__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-hwin-latest-promotions-analysis__step-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-blog-hwin-latest-promotions-analysis__step-text {
  font-size: 1em;
  color: #555555;
}

.page-blog-hwin-latest-promotions-analysis__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* List Styles */
.page-blog-hwin-latest-promotions-analysis__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-blog-hwin-latest-promotions-analysis__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: inherit;
}

.page-blog-hwin-latest-promotions-analysis__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #26A9E0;
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-blog-hwin-latest-promotions-analysis__faq-item {
  background-color: #f0f8ff; /* Light blue tint */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-hwin-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.page-blog-hwin-latest-promotions-analysis__faq-item[open] > .page-blog-hwin-latest-promotions-analysis__faq-question {
  border-bottom: 1px solid #ffffff;
}

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

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

.page-blog-hwin-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 15px;
}

.page-blog-hwin-latest-promotions-analysis__faq-answer {
  padding: 15px 25px 20px;
  background-color: #ffffff;
  color: #333333;
  font-size: 1em;
  line-height: 1.6;
}

/* Call to Action Section */
.page-blog-hwin-latest-promotions-analysis__call-to-action {
  text-align: center;
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-hwin-latest-promotions-analysis__main-title {
    font-size: 2.5em;
  }
  .page-blog-hwin-latest-promotions-analysis__section-title {
    font-size: 2em;
  }
  .page-blog-hwin-latest-promotions-analysis__hero-content {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .page-blog-hwin-latest-promotions-analysis__hero-section {
    min-height: 400px;
  }
  .page-blog-hwin-latest-promotions-analysis__hero-content {
    padding: 30px 15px;
    margin-top: 80px;
  }
  .page-blog-hwin-latest-promotions-analysis__main-title {
    font-size: 2em;
  }
  .page-blog-hwin-latest-promotions-analysis__intro-text {
    font-size: 1em;
  }
  .page-blog-hwin-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-hwin-latest-promotions-analysis__btn-primary,
  .page-blog-hwin-latest-promotions-analysis__btn-secondary,
  .page-blog-hwin-latest-promotions-analysis__btn-card {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1em;
  }

  .page-blog-hwin-latest-promotions-analysis__content-section {
    padding: 40px 0;
  }
  .page-blog-hwin-latest-promotions-analysis__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-blog-hwin-latest-promotions-analysis__section-title {
    font-size: 1.8em;
  }
  .page-blog-hwin-latest-promotions-analysis__paragraph,
  .page-blog-hwin-latest-promotions-analysis__list-item,
  .page-blog-hwin-latest-promotions-analysis__faq-answer {
    font-size: 1em;
  }
  .page-blog-hwin-latest-promotions-analysis__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-hwin-latest-promotions-analysis__card-image {
    height: 200px;
  }
  .page-blog-hwin-latest-promotions-analysis__card-title {
    font-size: 1.2em;
  }
  .page-blog-hwin-latest-promotions-analysis__content-image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
  }
  .page-blog-hwin-latest-promotions-analysis img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-hwin-latest-promotions-analysis__promotion-card,
  .page-blog-hwin-latest-promotions-analysis__step-item,
  .page-blog-hwin-latest-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-hwin-latest-promotions-analysis__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-blog-hwin-latest-promotions-analysis__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-blog-hwin-latest-promotions-analysis__hero-image {
    position: relative; /* Change to relative for mobile to prevent text overlay issues */
    height: 250px; /* Adjust height for mobile */
  }
  .page-blog-hwin-latest-promotions-analysis__hero-content {
    position: relative;
    margin-top: 20px;
    background-color: #26A9E0; /* Use primary color as solid background on mobile */
    border-radius: 0;
    width: 100%;
    max-width: none;
  }
  .page-blog-hwin-latest-promotions-analysis__hero-section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    min-height: auto;
  }
  .page-blog-hwin-latest-promotions-analysis__hero-section .page-blog-hwin-latest-promotions-analysis__hero-image {
    position: relative;
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .page-blog-hwin-latest-promotions-analysis__hero-section .page-blog-hwin-latest-promotions-analysis__hero-content {
    width: 100%;
    padding: 20px 15px;
    margin-top: 0;
    background-color: #26A9E0;
  }
}

@media (max-width: 480px) {
  .page-blog-hwin-latest-promotions-analysis__main-title {
    font-size: 1.8em;
  }
  .page-blog-hwin-latest-promotions-analysis__section-title {
    font-size: 1.6em;
  }
}