/* style/blog-7clubs-promotions-explained.css */
:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-card-bg: #11271B;
  --page-background: #08160F;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-border-color: #2E7A4E;
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green: #0A4B2C;

  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-7clubs-promotions-explained {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-main); /* Default text color for the page */
  background-color: var(--page-background); /* Default background for the page */
}

.page-blog-7clubs-promotions-explained__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-7clubs-promotions-explained__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-height: 500px; /* Limit hero image height */
}

.page-blog-7clubs-promotions-explained__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 8px;
  margin-top: 200px; /* Push content down below the top of the image */
  color: var(--page-text-main);
}

.page-blog-7clubs-promotions-explained__main-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--page-gold-color);
  line-height: 1.2;
}

.page-blog-7clubs-promotions-explained__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--page-text-secondary);
}

.page-blog-7clubs-promotions-explained__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-blog-7clubs-promotions-explained__btn-primary {
  background: var(--btn-gradient);
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-blog-7clubs-promotions-explained__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-7clubs-promotions-explained__btn-secondary {
  background: var(--page-card-bg);
  color: var(--page-primary-color);
  border: 1px solid var(--page-border-color);
}

.page-blog-7clubs-promotions-explained__btn-secondary:hover {
  background: var(--page-primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-7clubs-promotions-explained__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-7clubs-promotions-explained__section-wrapper {
  margin-bottom: 60px;
  padding: 20px;
  border-radius: 8px;
  background-color: var(--page-background); /* Ensure consistent background */
}

.page-blog-7clubs-promotions-explained__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--page-primary-color);
  text-align: center;
}

.page-blog-7clubs-promotions-explained__section-title--light {
  color: var(--page-text-main);
}

.page-blog-7clubs-promotions-explained__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-7clubs-promotions-explained__card {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  color: var(--page-text-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-7clubs-promotions-explained__card-title {
  font-size: 1.5em;
  color: var(--page-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-7clubs-promotions-explained__card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-7clubs-promotions-explained__card-body ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-7clubs-promotions-explained__card-body li {
  margin-bottom: 8px;
  color: var(--page-text-secondary);
}

.page-blog-7clubs-promotions-explained__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-7clubs-promotions-explained__image-right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  width: 50%; /* Adjust width for desktop */
  height: auto;
}

.page-blog-7clubs-promotions-explained__text-block {
  clear: both;
  color: var(--page-text-secondary);
}

.page-blog-7clubs-promotions-explained__text-block p {
  margin-bottom: 15px;
  color: var(--page-text-secondary);
}

.page-blog-7clubs-promotions-explained__sub-title {
  font-size: 1.8em;
  color: var(--page-primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-7clubs-promotions-explained__dark-section {
  background-color: var(--page-deep-green);
  color: var(--page-text-main);
}

.page-blog-7clubs-promotions-explained__dark-section .page-blog-7clubs-promotions-explained__text-block p {
  color: var(--page-text-main);
}

.page-blog-7clubs-promotions-explained__dark-section .page-blog-7clubs-promotions-explained__sub-title {
  color: var(--page-gold-color);
}

.page-blog-7clubs-promotions-explained__faq-section {
  background-color: var(--page-card-bg);
  padding: 40px;
}

.page-blog-7clubs-promotions-explained__faq-list {
  margin-top: 30px;
}

.page-blog-7clubs-promotions-explained__faq-item {
  background-color: var(--page-background);
  border: 1px solid var(--page-border-color);
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-text-secondary);
}

.page-blog-7clubs-promotions-explained__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--page-text-main);
  background-color: var(--page-deep-green);
  border-bottom: 1px solid var(--page-divider-color);
  list-style: none; /* For details/summary */
}

.page-blog-7clubs-promotions-explained__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-7clubs-promotions-explained__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--page-gold-color);
}

.page-blog-7clubs-promotions-explained__faq-item[open] .page-blog-7clubs-promotions-explained__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-7clubs-promotions-explained__faq-answer {
  padding: 15px 20px;
  color: var(--page-text-secondary);
}

.page-blog-7clubs-promotions-explained__cta-section {
  position: relative;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--page-text-main);
  background-color: var(--page-card-bg);
  padding: 40px 20px;
}

.page-blog-7clubs-promotions-explained__cta-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-7clubs-promotions-explained__cta-content {
  padding: 30px;
  background: rgba(0, 0, 0, 0.5); /* Overlay for text readability */
  border-radius: 8px;
  margin-top: -100px; /* Adjust position relative to image */
  position: relative;
  z-index: 2;
}

.page-blog-7clubs-promotions-explained__cta-title {
  font-size: 2.5em;
  color: var(--page-gold-color);
  margin-bottom: 20px;
}

.page-blog-7clubs-promotions-explained__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--page-text-secondary);
}

.page-blog-7clubs-promotions-explained__conclusion-section {
  padding: 40px 20px;
  background-color: var(--page-card-bg);
  border-radius: 8px;
  color: var(--page-text-secondary);
}

.page-blog-7clubs-promotions-explained__conclusion-section p {
  color: var(--page-text-secondary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-7clubs-promotions-explained__hero-image {
    max-height: 400px;
  }
  .page-blog-7clubs-promotions-explained__hero-content {
    margin-top: 150px;
  }
  .page-blog-7clubs-promotions-explained__main-title {
    font-size: 2.5em;
  }
  .page-blog-7clubs-promotions-explained__section-title {
    font-size: 2em;
  }
  .page-blog-7clubs-promotions-explained__sub-title {
    font-size: 1.6em;
  }
  .page-blog-7clubs-promotions-explained__image-right {
    width: 100%;
    float: none;
    margin-left: 0;
  }
  .page-blog-7clubs-promotions-explained__text-block {
    clear: both;
  }
}

@media (max-width: 768px) {
  .page-blog-7clubs-promotions-explained {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-7clubs-promotions-explained__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-blog-7clubs-promotions-explained__hero-image {
    max-height: 300px !important;
  }
  .page-blog-7clubs-promotions-explained__hero-content {
    margin-top: 100px !important;
    padding: 20px 15px !important;
  }
  .page-blog-7clubs-promotions-explained__main-title {
    font-size: 2em !important;
  }
  .page-blog-7clubs-promotions-explained__intro-text {
    font-size: 1em !important;
  }
  .page-blog-7clubs-promotions-explained__cta-button,
  .page-blog-7clubs-promotions-explained__btn-primary,
  .page-blog-7clubs-promotions-explained__btn-secondary,
  .page-blog-7clubs-promotions-explained a[class*="button"],
  .page-blog-7clubs-promotions-explained 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 !important;
    padding-right: 15px !important;
  }
  .page-blog-7clubs-promotions-explained__cta-buttons,
  .page-blog-7clubs-promotions-explained__button-group,
  .page-blog-7clubs-promotions-explained__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-7clubs-promotions-explained__cta-buttons {
    display: flex;
    flex-direction: column;
  }
  .page-blog-7clubs-promotions-explained__content-area,
  .page-blog-7clubs-promotions-explained__section-wrapper,
  .page-blog-7clubs-promotions-explained__card,
  .page-blog-7clubs-promotions-explained__cta-section,
  .page-blog-7clubs-promotions-explained__conclusion-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-7clubs-promotions-explained img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-7clubs-promotions-explained__image-right {
    float: none;
    margin-left: 0;
    width: 100% !important;
  }
  .page-blog-7clubs-promotions-explained__faq-section {
    padding: 20px 15px !important;
  }
  .page-blog-7clubs-promotions-explained__cta-content {
    margin-top: -50px; /* Adjust for smaller screens */
    padding: 20px;
  }
  .page-blog-7clubs-promotions-explained__cta-title {
    font-size: 1.8em !important;
  }
  .page-blog-7clubs-promotions-explained__cta-text {
    font-size: 0.9em !important;
  }
}

@media (max-width: 480px) {
  .page-blog-7clubs-promotions-explained__main-title {
    font-size: 1.8em !important;
  }
  .page-blog-7clubs-promotions-explained__section-title {
    font-size: 1.6em !important;
  }
  .page-blog-7clubs-promotions-explained__sub-title {
    font-size: 1.4em !important;
  }
}