/* style/resources-latest-promo-analysis.css */
.page-resources-latest-promo-analysis {
  color: #ffffff; /* Light text for dark body background */
  background-color: #1A1A1A;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-latest-promo-analysis__hero-section {
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, var(--main-color, #FFD700) 0%, var(--aux-color, #DC143C) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-resources-latest-promo-analysis__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-resources-latest-promo-analysis__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-resources-latest-promo-analysis__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-promo-analysis__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-latest-promo-analysis__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-resources-latest-promo-analysis__button--primary {
  background-color: var(--main-color, #FFD700);
  color: #1A1A1A;
  border: 2px solid var(--main-color, #FFD700);
}

.page-resources-latest-promo-analysis__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-latest-promo-analysis__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-latest-promo-analysis__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-resources-latest-promo-analysis__button--full-width {
  width: 100%;
  max-width: 400px;
  margin-top: 40px;
}

.page-resources-latest-promo-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-latest-promo-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-resources-latest-promo-analysis__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1A1A1A;
  color: #ffffff;
}

.page-resources-latest-promo-analysis__article-nav {
  margin-bottom: 30px;
  text-align: left;
}

.page-resources-latest-promo-analysis__back-link {
  color: var(--main-color, #FFD700);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-latest-promo-analysis__back-link:hover {
  color: var(--aux-color, #DC143C);
}

.page-resources-latest-promo-analysis__article {
  background-color: #222222;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-promo-analysis__section-title {
  font-size: 2.5em;
  color: var(--main-color, #FFD700);
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.2;
}

.page-resources-latest-promo-analysis__sub-title {
  font-size: 1.8em;
  color: var(--aux-color, #DC143C);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.page-resources-latest-promo-analysis__article p {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-latest-promo-analysis__list,
.page-resources-latest-promo-analysis__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-resources-latest-promo-analysis__ordered-list {
  list-style-type: decimal;
}

.page-resources-latest-promo-analysis__list li,
.page-resources-latest-promo-analysis__ordered-list li {
  margin-bottom: 10px;
}

.page-resources-latest-promo-analysis__blockquote {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--main-color, #FFD700);
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-latest-promo-analysis__image-wrapper {
  margin: 30px auto;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-latest-promo-analysis__content-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-latest-promo-analysis__hero-section {
    padding: 60px 15px 30px;
  }

  .page-resources-latest-promo-analysis__main-title {
    font-size: 2.2em;
  }

  .page-resources-latest-promo-analysis__intro-text {
    font-size: 1em;
  }

  .page-resources-latest-promo-analysis__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-latest-promo-analysis__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1em;
  }

  .page-resources-latest-promo-analysis__content-area {
    padding: 30px 15px;
  }

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

  .page-resources-latest-promo-analysis__sub-title {
    font-size: 1.5em;
  }

  .page-resources-latest-promo-analysis__article p,
  .page-resources-latest-promo-analysis__list li,
  .page-resources-latest-promo-analysis__ordered-list li,
  .page-resources-latest-promo-analysis__blockquote {
    font-size: 0.95em;
  }

  .page-resources-latest-promo-analysis__content-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-latest-promo-analysis__main-title {
    font-size: 1.8em;
  }

  .page-resources-latest-promo-analysis__section-title {
    font-size: 1.6em;
  }

  .page-resources-latest-promo-analysis__sub-title {
    font-size: 1.3em;
  }

  .page-resources-latest-promo-analysis__article p {
    font-size: 0.9em;
  }
}