.page-blog-latest-promotions-analysis {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #2F6BFF;
}

.page-blog-latest-promotions-analysis__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-analysis__hero-content {
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  color: #000000;
}

.page-blog-latest-promotions-analysis__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2F6BFF;
  margin-bottom: 15px;
  max-width: 100%;
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Use clamp for H1 font size */
}

.page-blog-latest-promotions-analysis__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-blog-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-blog-latest-promotions-analysis__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-analysis__overview-section,
.page-blog-latest-promotions-analysis__how-to-claim-section,
.page-blog-latest-promotions-analysis__why-choose-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog-latest-promotions-analysis__section-title {
  font-size: 2.2rem;
  color: #2F6BFF;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.page-blog-latest-promotions-analysis__section-description {
  font-size: 1.05rem;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-latest-promotions-analysis__card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-blog-latest-promotions-analysis__card-title {
  font-size: 1.5rem;
  color: #2F6BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-latest-promotions-analysis__card-text {
  font-size: 1rem;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-promotions-analysis__card-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6FA3FF;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-latest-promotions-analysis__card-link:hover {
  background-color: #2F6BFF;
}

.page-blog-latest-promotions-analysis__claim-steps {
  list-style-type: decimal;
  padding-left: 25px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #1F2D3D;
}

.page-blog-latest-promotions-analysis__step-item {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-blog-latest-promotions-analysis__step-item strong {
  color: #000000;
}

.page-blog-latest-promotions-analysis__cta-button--secondary {
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
  margin-top: 20px;
}

.page-blog-latest-promotions-analysis__benefit-list {
  list-style-type: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  color: #1F2D3D;
}

.page-blog-latest-promotions-analysis__benefit-item {
  position: relative;
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-left: 30px;
  line-height: 1.8;
}

.page-blog-latest-promotions-analysis__benefit-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: #2F6BFF; /* Using main color for checkmark */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-latest-promotions-analysis__hero-content {
    padding: 20px 15px;
  }

  .page-blog-latest-promotions-analysis__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-blog-latest-promotions-analysis__hero-description,
  .page-blog-latest-promotions-analysis__section-description,
  .page-blog-latest-promotions-analysis__step-item,
  .page-blog-latest-promotions-analysis__benefit-item {
    font-size: 1rem;
  }

  .page-blog-latest-promotions-analysis__section-title {
    font-size: 1.8rem;
  }

  .page-blog-latest-promotions-analysis__card-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-latest-promotions-analysis__overview-section,
  .page-blog-latest-promotions-analysis__how-to-claim-section,
  .page-blog-latest-promotions-analysis__why-choose-section {
    margin: 20px auto;
    padding: 15px;
  }

  /* Mobile image overflow prevention */
  .page-blog-latest-promotions-analysis__hero-image,
  .page-blog-latest-promotions-analysis__card-image,
  .page-blog-latest-promotions-analysis__card-grid img,
  .page-blog-latest-promotions-analysis__overview-section img,
  .page-blog-latest-promotions-analysis__how-to-claim-section img,
  .page-blog-latest-promotions-analysis__why-choose-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
  }
}

@media (max-width: 480px) {
  .page-blog-latest-promotions-analysis__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
}