/* style/blog-latest-promotions-win55-no-hu.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-blog-latest-promotions-win55-no-hu {
  color: #F2FFF6; /* Text Main */
  background-color: transparent; /* Body background from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-latest-promotions-win55-no-hu__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-latest-promotions-win55-no-hu__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-latest-promotions-win55-no-hu__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-latest-promotions-win55-no-hu__hero-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 30px 0;
  margin-top: 20px;
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with opacity */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-win55-no-hu__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-latest-promotions-win55-no-hu__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-promotions-win55-no-hu__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-latest-promotions-win55-no-hu__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-latest-promotions-win55-no-hu__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #13994A; /* From button gradient */
  border-radius: 2px;
}

.page-blog-latest-promotions-win55-no-hu__text-block {
  font-size: 1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-latest-promotions-win55-no-hu__text-block strong {
  color: #F2C14E; /* Gold */
}

.page-blog-latest-promotions-win55-no-hu__text-highlight {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

.page-blog-latest-promotions-win55-no-hu__text-block a,
.page-blog-latest-promotions-win55-no-hu li a {
  color: #2AD16F; /* Lighter green from button gradient */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-latest-promotions-win55-no-hu__text-block a:hover,
.page-blog-latest-promotions-win55-no-hu li a:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

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

.page-blog-latest-promotions-win55-no-hu__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-latest-promotions-win55-no-hu__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-win55-no-hu__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  max-width: 100%; /* Ensure responsiveness */
}

.page-blog-latest-promotions-win55-no-hu__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-latest-promotions-win55-no-hu__card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  flex-grow: 1;
}

.page-blog-latest-promotions-win55-no-hu__btn-primary,
.page-blog-latest-promotions-win55-no-hu__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-promotions-win55-no-hu__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-win55-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-win55-no-hu__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Lighter green from button gradient */
  border: 2px solid #2AD16F;
  margin-top: 20px;
}

.page-blog-latest-promotions-win55-no-hu__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
}

.page-blog-latest-promotions-win55-no-hu__promo-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-win55-no-hu__promo-subtitle {
  font-size: 1.8em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-align: left;
}

.page-blog-latest-promotions-win55-no-hu__promo-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  max-width: 100%; /* Ensure responsiveness */
}

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

.page-blog-latest-promotions-win55-no-hu__step-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-latest-promotions-win55-no-hu__step-title {
  font-size: 1.6em;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
}

.page-blog-latest-promotions-win55-no-hu__step-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  flex-grow: 1;
}

.page-blog-latest-promotions-win55-no-hu__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-latest-promotions-win55-no-hu__feature-list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-left: 5px solid #2AD16F; /* Lighter green */
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  font-size: 1.05em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-latest-promotions-win55-no-hu__feature-list li strong {
  color: #F2C14E; /* Gold */
}

.page-blog-latest-promotions-win55-no-hu__section-faq {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 20px;
  margin-top: 40px;
}

.page-blog-latest-promotions-win55-no-hu__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-blog-latest-promotions-win55-no-hu__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-latest-promotions-win55-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  border-bottom: 1px solid #2E7A4E;
  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-latest-promotions-win55-no-hu__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-promotions-win55-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-blog-latest-promotions-win55-no-hu__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
}

.page-blog-latest-promotions-win55-no-hu__faq-answer p {
  margin-bottom: 0;
}

.page-blog-latest-promotions-win55-no-hu__section-cta {
  text-align: center;
  padding-bottom: 60px;
}

.page-blog-latest-promotions-win55-no-hu__btn-large {
  padding: 15px 40px;
  font-size: 1.2em;
  margin-top: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-win55-no-hu__hero-content {
    padding: 20px;
  }
  .page-blog-latest-promotions-win55-no-hu__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-blog-latest-promotions-win55-no-hu__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-promotions-win55-no-hu {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-latest-promotions-win55-no-hu__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body already handles header offset */
  }
  .page-blog-latest-promotions-win55-no-hu__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-latest-promotions-win55-no-hu__hero-content {
    margin-top: 15px;
    padding: 20px;
  }
  .page-blog-latest-promotions-win55-no-hu__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-blog-latest-promotions-win55-no-hu__description {
    font-size: 1em;
  }
  .page-blog-latest-promotions-win55-no-hu__content-area,
  .page-blog-latest-promotions-win55-no-hu__section-faq {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-latest-promotions-win55-no-hu__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-latest-promotions-win55-no-hu__promo-cards,
  .page-blog-latest-promotions-win55-no-hu__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-latest-promotions-win55-no-hu__card,
  .page-blog-latest-promotions-win55-no-hu__step-item,
  .page-blog-latest-promotions-win55-no-hu__promo-item,
  .page-blog-latest-promotions-win55-no-hu__feature-list li,
  .page-blog-latest-promotions-win55-no-hu__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-latest-promotions-win55-no-hu__card-image,
  .page-blog-latest-promotions-win55-no-hu__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-latest-promotions-win55-no-hu__btn-primary,
  .page-blog-latest-promotions-win55-no-hu__btn-secondary,
  .page-blog-latest-promotions-win55-no-hu a[class*="button"],
  .page-blog-latest-promotions-win55-no-hu 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-latest-promotions-win55-no-hu__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-blog-latest-promotions-win55-no-hu__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-promotions-win55-no-hu__main-title {
    font-size: 1.8em;
  }
  .page-blog-latest-promotions-win55-no-hu__section-title {
    font-size: 1.5em;
  }
  .page-blog-latest-promotions-win55-no-hu__promo-subtitle {
    font-size: 1.4em;
  }
  .page-blog-latest-promotions-win55-no-hu__btn-large {
    font-size: 1em;
    padding: 12px 25px;
  }
}