/* style/resources-latest-promotions-analysis.css */
.page-resources-latest-promotions-analysis {
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: var(--secondary-color); /* Inherit from shared, which is #1A1A1A */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-resources-latest-promotions-analysis__hero-section {
  position: relative;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  text-align: center;
  background-color: #1A1A1A; /* Auxiliary color for dark background */
  color: #ffffff;
}

.page-resources-latest-promotions-analysis__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Primary color for main title */
  line-height: 1.2;
}

.page-resources-latest-promotions-analysis__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-resources-latest-promotions-analysis__btn-primary,
.page-resources-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-latest-promotions-analysis__btn-primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-resources-latest-promotions-analysis__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-latest-promotions-analysis__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-resources-latest-promotions-analysis__intro-video-section,
.page-resources-latest-promotions-analysis__content-section,
.page-resources-latest-promotions-analysis__vip-section,
.page-resources-latest-promotions-analysis__tips-section,
.page-resources-latest-promotions-analysis__faq-section,
.page-resources-latest-promotions-analysis__cta-bottom-section {
  padding: 60px 0;
}

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

.page-resources-latest-promotions-analysis__dark-bg {
  background-color: #1A1A1A;
  color: #ffffff;
}

.page-resources-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700;
}

.page-resources-latest-promotions-analysis__intro-video-section .page-resources-latest-promotions-analysis__section-title {
  color: #1A1A1A;
}

.page-resources-latest-promotions-analysis__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-resources-latest-promotions-analysis__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-resources-latest-promotions-analysis__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.page-resources-latest-promotions-analysis__video-description {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 20px;
}

.page-resources-latest-promotions-analysis__content-section .page-resources-latest-promotions-analysis__paragraph {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.page-resources-latest-promotions-analysis__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-latest-promotions-analysis__card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-resources-latest-promotions-analysis__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-resources-latest-promotions-analysis__card-title {
  font-size: 1.5em;
  margin: 20px 20px 10px;
  color: #FFD700;
}

.page-resources-latest-promotions-analysis__card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-latest-promotions-analysis__card-title a:hover {
  text-decoration: underline;
}

.page-resources-latest-promotions-analysis__card-text {
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-resources-latest-promotions-analysis__card .page-resources-latest-promotions-analysis__btn-primary {
  margin: 0 20px 20px;
  align-self: flex-start;
  width: calc(100% - 40px);
}

.page-resources-latest-promotions-analysis__vip-section .page-resources-latest-promotions-analysis__paragraph {
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto 30px auto;
  text-align: center;
}

.page-resources-latest-promotions-analysis__vip-image {
  display: block;
  margin: 0 auto 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-resources-latest-promotions-analysis__vip-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 700px;
}

.page-resources-latest-promotions-analysis__vip-benefits li {
  background-color: #f5f5f5;
  color: #333333;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
}

.page-resources-latest-promotions-analysis__vip-benefits li a {
  color: #1A1A1A;
  text-decoration: none;
}

.page-resources-latest-promotions-analysis__vip-benefits li a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-resources-latest-promotions-analysis__vip-section .page-resources-latest-promotions-analysis__btn-primary {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

.page-resources-latest-promotions-analysis__tips-section .page-resources-latest-promotions-analysis__paragraph {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.page-resources-latest-promotions-analysis__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-latest-promotions-analysis__tip-item {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-resources-latest-promotions-analysis__tip-title {
  font-size: 1.6em;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.page-resources-latest-promotions-analysis__tip-text {
  font-size: 1em;
  color: #555555;
}

.page-resources-latest-promotions-analysis__faq-section .page-resources-latest-promotions-analysis__section-title {
  color: #1A1A1A;
}

.page-resources-latest-promotions-analysis__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-latest-promotions-analysis__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f9f9f9;
  color: #1A1A1A;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-resources-latest-promotions-analysis__faq-question:hover {
  background-color: #f0f0f0;
}

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

.page-resources-latest-promotions-analysis__faq-item.active .page-resources-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-latest-promotions-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-latest-promotions-analysis__faq-item.active .page-resources-latest-promotions-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

.page-resources-latest-promotions-analysis__faq-answer p {
  margin: 0;
  padding-bottom: 5px; /* Adjust as needed */
}

.page-resources-latest-promotions-analysis__faq-section .page-resources-latest-promotions-analysis__btn-secondary {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

.page-resources-latest-promotions-analysis__cta-bottom-section {
  text-align: center;
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-resources-latest-promotions-analysis__cta-bottom-section .page-resources-latest-promotions-analysis__section-title {
  color: #1A1A1A;
}

.page-resources-latest-promotions-analysis__cta-bottom-section .page-resources-latest-promotions-analysis__paragraph {
  margin-bottom: 30px;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-promotions-analysis__cta-bottom-section .page-resources-latest-promotions-analysis__btn-primary {
  background-color: #1A1A1A;
  color: #FFD700;
  border-color: #1A1A1A;
}

.page-resources-latest-promotions-analysis__cta-bottom-section .page-resources-latest-promotions-analysis__btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources-latest-promotions-analysis__cta-bottom-section .page-resources-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: #1A1A1A;
  border-color: #1A1A1A;
}

.page-resources-latest-promotions-analysis__cta-bottom-section .page-resources-latest-promotions-analysis__btn-secondary:hover {
  background-color: #1A1A1A;
  color: #FFD700;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-latest-promotions-analysis__main-title {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-promotions-analysis__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-latest-promotions-analysis__main-title {
    font-size: 2.5em;
  }

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

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

  .page-resources-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-latest-promotions-analysis__btn-primary,
  .page-resources-latest-promotions-analysis__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-latest-promotions-analysis__card-grid,
  .page-resources-latest-promotions-analysis__tips-list {
    grid-template-columns: 1fr;
  }

  .page-resources-latest-promotions-analysis__card-image,
  .page-resources-latest-promotions-analysis__vip-image,
  .page-resources-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-latest-promotions-analysis video,
  .page-resources-latest-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-latest-promotions-analysis__video-section,
  .page-resources-latest-promotions-analysis__video-container,
  .page-resources-latest-promotions-analysis__video-wrapper,
  .page-resources-latest-promotions-analysis__section,
  .page-resources-latest-promotions-analysis__card,
  .page-resources-latest-promotions-analysis__container,
  .page-resources-latest-promotions-analysis__cta-buttons,
  .page-resources-latest-promotions-analysis__button-group,
  .page-resources-latest-promotions-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-latest-promotions-analysis__video-wrapper {
    padding-bottom: 56.25% !important;
  }

  .page-resources-latest-promotions-analysis__faq-question,
  .page-resources-latest-promotions-analysis__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-latest-promotions-analysis__faq-item.active .page-resources-latest-promotions-analysis__faq-answer {
    padding: 15px 15px !important;
  }
}