/* style/blog-latest-promotions-analysis.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

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

/* Hero Section */
.page-blog-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: var(--background-color);
  color: var(--text-main);
}

.page-blog-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

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

.page-blog-latest-promotions-analysis__hero-content {
  max-width: 1200px;
  width: 100%; /* Ensure content block takes full width within max-width */
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem); /* Responsive font size for H1 */
}

.page-blog-latest-promotions-analysis__lead-paragraph {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-latest-promotions-analysis__btn-primary,
.page-blog-latest-promotions-analysis__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-promotions-analysis__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
}

.page-blog-latest-promotions-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow-color);
}

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

.page-blog-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-main);
  box-shadow: 0 0 15px rgba(17, 168, 78, 0.4);
}

/* Content Area */
.page-blog-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color);
  color: var(--text-main);
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__section-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-latest-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.5rem);
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: left;
}

.page-blog-latest-promotions-analysis__content-area p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

.page-blog-latest-promotions-analysis__text-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-blog-latest-promotions-analysis__text-link:hover {
  color: var(--glow-color);
}

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

.page-blog-latest-promotions-analysis__promotion-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-secondary);
}

.page-blog-latest-promotions-analysis__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-latest-promotions-analysis__promotion-card .page-blog-latest-promotions-analysis__card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-main);
  padding: 15px 20px 10px;
}

.page-blog-latest-promotions-analysis__promotion-card p {
  padding: 0 20px 15px;
  flex-grow: 1;
  margin-bottom: 0;
}

.page-blog-latest-promotions-analysis__promotion-card .page-blog-latest-promotions-analysis__card-link {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 10px 20px;
  background: var(--button-gradient);
  color: var(--text-main);
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-blog-latest-promotions-analysis__promotion-card .page-blog-latest-promotions-analysis__card-link:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Steps List */
.page-blog-latest-promotions-analysis__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

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

.page-blog-latest-promotions-analysis__step-title {
  font-size: 1.4rem;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-latest-promotions-analysis__step-item p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-promotions-analysis__btn-small {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
}

/* Benefits Grid */
.page-blog-latest-promotions-analysis__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.page-blog-latest-promotions-analysis__benefit-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-latest-promotions-analysis__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-blog-latest-promotions-analysis__benefit-title {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-analysis__benefit-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* List Styles */
.page-blog-latest-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-latest-promotions-analysis__list li {
  background-color: var(--card-bg);
  border-left: 4px solid var(--primary-color);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-latest-promotions-analysis__list li strong {
  color: var(--text-main);
}

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

.page-blog-latest-promotions-analysis__faq-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  color: var(--text-secondary);
}

.page-blog-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider-color);
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.page-blog-latest-promotions-analysis__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

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

.page-blog-latest-promotions-analysis__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background-color: var(--card-bg);
}

.page-blog-latest-promotions-analysis__faq-answer p {
  margin-bottom: 0;
}

/* Floating Buttons */
.page-blog-latest-promotions-analysis__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-blog-latest-promotions-analysis__floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-blog-latest-promotions-analysis__floating-btn--register {
  background: var(--button-gradient);
}

.page-blog-latest-promotions-analysis__floating-btn--register:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-promotions-analysis__floating-btn--login {
  background-color: var(--deep-green);
  border: 1px solid var(--primary-color);
}

.page-blog-latest-promotions-analysis__floating-btn--login:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  background-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-analysis__main-title {
    font-size: clamp(2rem, 5vw + 1rem, 3rem);
  }
  .page-blog-latest-promotions-analysis__section-title {
    font-size: clamp(1.6rem, 4vw + 0.5rem, 2.2rem);
  }
  .page-blog-latest-promotions-analysis__promotions-grid,
  .page-blog-latest-promotions-analysis__steps-list,
  .page-blog-latest-promotions-analysis__benefits-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-promotions-analysis__hero-content,
  .page-blog-latest-promotions-analysis__content-area {
    padding: 30px 15px;
  }
  .page-blog-latest-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 6vw + 0.5rem, 2.5rem);
  }
  .page-blog-latest-promotions-analysis__lead-paragraph {
    font-size: 1rem;
  }
  .page-blog-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .page-blog-latest-promotions-analysis__btn-primary,
  .page-blog-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* Image and Video Responsive for Mobile */
  .page-blog-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-latest-promotions-analysis video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-latest-promotions-analysis__section,
  .page-blog-latest-promotions-analysis__card,
  .page-blog-latest-promotions-analysis__container,
  .page-blog-latest-promotions-analysis__promotions-grid,
  .page-blog-latest-promotions-analysis__steps-list,
  .page-blog-latest-promotions-analysis__benefits-grid,
  .page-blog-latest-promotions-analysis__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-latest-promotions-analysis__hero-section {
    padding-top: 10px !important;
  }
  .page-blog-latest-promotions-analysis__floating-buttons {
    right: 10px;
    bottom: 10px;
  }
  .page-blog-latest-promotions-analysis__floating-btn {
    width: 100px;
    height: 45px;
  }
  .page-blog-latest-promotions-analysis__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog-latest-promotions-analysis__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-promotions-analysis__main-title {
    font-size: clamp(1.6rem, 7vw + 0.5rem, 2.2rem);
  }
  .page-blog-latest-promotions-analysis__section-title {
    font-size: clamp(1.4rem, 6vw + 0.5rem, 2rem);
  }
  .page-blog-latest-promotions-analysis__floating-buttons {
    flex-direction: row;
    width: calc(100% - 20px);
    justify-content: space-around;
    right: 10px;
    bottom: 10px;
  }
  .page-blog-latest-promotions-analysis__floating-btn {
    width: 48%;
    height: 40px;
  }
}