/* style/resources-latest-promotions-analysis.css */

/* --- General Styles --- */
.page-resources-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* body background is #000 from shared.css */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-resources-latest-promotions-analysis__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-latest-promotions-analysis__section:last-of-type {
  border-bottom: none;
}

.page-resources-latest-promotions-analysis__section-title {
  font-size: 38px;
  font-weight: 700;
  color: #FFD700; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-promotions-analysis__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-latest-promotions-analysis__image-wrapper {
  margin: 30px auto;
  text-align: center;
}

.page-resources-latest-promotions-analysis__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

/* --- Hero Section --- */
.page-resources-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px; /* Adjusted padding-top handled by main */
  background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%); /* Dark gradient for hero */
}

.page-resources-latest-promotions-analysis__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Ensure content is above any background effects */
}

.page-resources-latest-promotions-analysis__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-latest-promotions-analysis__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-latest-promotions-analysis__main-title {
  font-size: 52px;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.page-resources-latest-promotions-analysis__intro-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700; /* Primary brand color */
  color: #1A1A1A; /* Dark text for primary button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
  max-width: 100%; /* Button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-promotions-analysis__cta-button:hover {
  background: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-latest-promotions-analysis__cta-button--small {
    padding: 12px 25px;
    font-size: 16px;
    margin-top: 20px;
}

.page-resources-latest-promotions-analysis__cta-button--secondary {
    background: #1A1A1A;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-latest-promotions-analysis__cta-button--secondary:hover {
    background: #000000;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* --- Promo Cards --- */
.page-resources-latest-promotions-analysis__promo-card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-latest-promotions-analysis__card-title {
  font-size: 28px;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
}

/* --- Guide Section --- */
.page-resources-latest-promotions-analysis__guide {
    background: #1A1A1A;
}

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

.page-resources-latest-promotions-analysis__step-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-latest-promotions-analysis__step-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-latest-promotions-analysis__btn-primary,
.page-resources-latest-promotions-analysis__btn-secondary,
.page-resources-latest-promotions-analysis__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%; /* Button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-promotions-analysis__btn-primary {
  background: #FFD700;
  color: #1A1A1A;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-resources-latest-promotions-analysis__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
}

.page-resources-latest-promotions-analysis__btn-secondary {
  background: #DC143C; /* Red accent color */
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(220, 20, 60, 0.3);
}

.page-resources-latest-promotions-analysis__btn-secondary:hover {
  background: #b81132;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(220, 20, 60, 0.5);
}

.page-resources-latest-promotions-analysis__btn-tertiary {
  background: #333333;
  color: #f0f0f0;
  border: 1px solid #666666;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-promotions-analysis__btn-tertiary:hover {
  background: #555555;
  transform: translateY(-2px);
  border-color: #999999;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


/* --- Safety Section --- */
.page-resources-latest-promotions-analysis__safety {
    background: #0d0d0d;
}

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

.page-resources-latest-promotions-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for FAQ item */
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-resources-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08); /* Background for question */
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-latest-promotions-analysis__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFD700;
}

.page-resources-latest-promotions-analysis__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700; /* Gold for FAQ questions */
  pointer-events: none;
}

.page-resources-latest-promotions-analysis__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-latest-promotions-analysis__faq-item.active .page-resources-latest-promotions-analysis__faq-toggle {
  color: #ffffff; /* White when active */
  transform: rotate(45deg); /* Rotate for minus sign visual */
}

.page-resources-latest-promotions-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #f0f0f0; /* Light text for answer */
}

.page-resources-latest-promotions-analysis__faq-item.active .page-resources-latest-promotions-analysis__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03); /* Slightly different background for answer */
  border-radius: 0 0 8px 8px;
}

/* --- Final CTA Section --- */
.page-resources-latest-promotions-analysis__cta-final {
  background: #1A1A1A; /* Dark background */
  text-align: center;
  padding: 80px 0;
}

.page-resources-latest-promotions-analysis__cta-final .page-resources-latest-promotions-analysis__section-title {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-resources-latest-promotions-analysis__cta-final .page-resources-latest-promotions-analysis__paragraph {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-size: 18px;
}

.page-resources-latest-promotions-analysis__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Ensure wrap on mobile */
}