/* style/blog-3vim-latest-promotions-analysis.css */

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

.page-blog-3vim-latest-promotions-analysis {
  color: var(--color-text-main); /* Default text color for the page, assuming dark body bg */
  background-color: var(--color-bg-main);
  font-family: Arial, sans-serif;
}

.page-blog-3vim-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body already handles padding-top */
  text-align: center;
  overflow: hidden;
  background-color: var(--color-bg-main);
}

.page-blog-3vim-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-blog-3vim-latest-promotions-analysis__hero-content {
  position: relative; /* Ensure content is above any potential background layers */
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Overlap slightly with image for visual appeal */
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-3vim-latest-promotions-analysis__main-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-3vim-latest-promotions-analysis__subtitle {
  font-size: 1.1em;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-3vim-latest-promotions-analysis__btn-primary,
.page-blog-3vim-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-3vim-latest-promotions-analysis__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-3vim-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

.page-blog-3vim-latest-promotions-analysis__btn-secondary:hover {
  background: rgba(34, 199, 104, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-3vim-latest-promotions-analysis__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-3vim-latest-promotions-analysis__content-area {
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
}

.page-blog-3vim-latest-promotions-analysis__light-bg {
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
}

.page-blog-3vim-latest-promotions-analysis__dark-bg {
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
}

.page-blog-3vim-latest-promotions-analysis__section-title {
  font-size: 2.2em;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-3vim-latest-promotions-analysis__sub-section-title {
  font-size: 1.8em;
  color: var(--color-secondary);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
}

.page-blog-3vim-latest-promotions-analysis__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--color-text-secondary);
}

.page-blog-3vim-latest-promotions-analysis__text-block strong {
  color: var(--color-text-main);
}

.page-blog-3vim-latest-promotions-analysis__text-secondary {
  color: var(--color-text-secondary);
}

.page-blog-3vim-latest-promotions-analysis__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-3vim-latest-promotions-analysis__promotions-grid {
  padding-bottom: 80px;
}

.page-blog-3vim-latest-promotions-analysis__cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-3vim-latest-promotions-analysis__card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-3vim-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-3vim-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-3vim-latest-promotions-analysis__card-title {
  font-size: 1.4em;
  color: var(--color-text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-3vim-latest-promotions-analysis__card-description {
  font-size: 0.95em;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-3vim-latest-promotions-analysis__how-to-claim {
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
}

.page-blog-3vim-latest-promotions-analysis__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-3vim-latest-promotions-analysis__step-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-3vim-latest-promotions-analysis__step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
  background-color: var(--color-deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-blog-3vim-latest-promotions-analysis__step-icon img {
  
  
  object-fit: contain;
  filter: brightness(1.5); /* Enhance visibility on dark background */
  min-
  min-
}

.page-blog-3vim-latest-promotions-analysis__step-title {
  font-size: 1.5em;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.page-blog-3vim-latest-promotions-analysis__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.page-blog-3vim-latest-promotions-analysis__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 20px;
  color: var(--color-text-secondary);
  font-size: 1.05em;
  line-height: 1.8;
}

.page-blog-3vim-latest-promotions-analysis__list-item {
  margin-bottom: 10px;
}

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

.page-blog-3vim-latest-promotions-analysis__faq-section {
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
}

.page-blog-3vim-latest-promotions-analysis__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-blog-3vim-latest-promotions-analysis__faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-3vim-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-border);
}

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

.page-blog-3vim-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-3vim-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: var(--color-gold);
}

.page-blog-3vim-latest-promotions-analysis__faq-item details summary::-webkit-details-marker {
  display: none;
}

.page-blog-3vim-latest-promotions-analysis__faq-item details summary {
  list-style: none;
}

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

.page-blog-3vim-latest-promotions-analysis__faq-answer p {
  margin-bottom: 10px;
  color: var(--color-text-secondary);
}

.page-blog-3vim-latest-promotions-analysis__faq-answer strong {
  color: var(--color-text-main);
}

.page-blog-3vim-latest-promotions-analysis__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--color-deep-green);
  border-top: 1px solid var(--color-border);
}

.page-blog-3vim-latest-promotions-analysis__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-3vim-latest-promotions-analysis__hero-content {
    margin-top: -50px;
  }
}

@media (max-width: 768px) {
  .page-blog-3vim-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-3vim-latest-promotions-analysis__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-3vim-latest-promotions-analysis__hero-content {
    margin-top: -30px;
    padding: 15px;
  }

  .page-blog-3vim-latest-promotions-analysis__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-3vim-latest-promotions-analysis__subtitle {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-3vim-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-3vim-latest-promotions-analysis__btn-primary,
  .page-blog-3vim-latest-promotions-analysis__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-blog-3vim-latest-promotions-analysis__section,
  .page-blog-3vim-latest-promotions-analysis__cards-container,
  .page-blog-3vim-latest-promotions-analysis__steps-container,
  .page-blog-3vim-latest-promotions-analysis__faq-list,
  .page-blog-3vim-latest-promotions-analysis__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-3vim-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-3vim-latest-promotions-analysis__sub-section-title {
    font-size: 1.4em;
  }

  .page-blog-3vim-latest-promotions-analysis__card-image,
  .page-blog-3vim-latest-promotions-analysis__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-3vim-latest-promotions-analysis__card,
  .page-blog-3vim-latest-promotions-analysis__step-item {
    padding: 20px;
  }

  .page-blog-3vim-latest-promotions-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-3vim-latest-promotions-analysis__faq-answer {
    padding: 15px 20px;
  }

  .page-blog-3vim-latest-promotions-analysis__step-icon img {
    min-
    min-
  }

  .page-blog-3vim-latest-promotions-analysis__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-blog-3vim-latest-promotions-analysis__hero-content {
    margin-top: -20px;
  }

  .page-blog-3vim-latest-promotions-analysis__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

  .page-blog-3vim-latest-promotions-analysis__section-title {
    font-size: 1.6em;
  }
}