.page-blog-latest-promotions {
  color: #ffffff; /* Body background is #000000 (dark), so use light text */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: #000000; /* Ensure dark background for hero */
}

.page-blog-latest-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-latest-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-latest-promotions__intro-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-latest-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-latest-promotions__cta-buttons--center {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-latest-promotions__btn-primary,
.page-blog-latest-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-latest-promotions__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-latest-promotions__btn-primary:hover {
  background-color: #1e87b6;
  transform: translateY(-3px);
}

.page-blog-latest-promotions__btn-secondary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-latest-promotions__btn-secondary:hover {
  background-color: #c76706;
  transform: translateY(-3px);
}

.page-blog-latest-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #000000; /* Main content area background, consistent with body */
  color: #ffffff; /* Light text for dark background */
}

.page-blog-latest-promotions__light-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-blog-latest-promotions__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-blog-latest-promotions__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.page-blog-latest-promotions__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-latest-promotions__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-latest-promotions__text-block a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
}

.page-blog-latest-promotions__text-block a:hover {
  text-decoration: underline;
}

.page-blog-latest-promotions__keyword {
  color: #EA7C07;
  font-weight: 600;
}

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

.page-blog-latest-promotions__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-latest-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-promotions__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-latest-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-latest-promotions__card-text {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-blog-latest-promotions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-latest-promotions__list-item {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-blog-latest-promotions__list-item strong {
  color: #26A9E0;
}

.page-blog-latest-promotions__steps-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-latest-promotions__steps-list .page-blog-latest-promotions__list-item {
  margin-bottom: 15px;
}

.page-blog-latest-promotions__faq-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-latest-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.page-blog-latest-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-promotions__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #EA7C07;
}

.page-blog-latest-promotions__faq-item[open] .page-blog-latest-promotions__faq-question {
  border-bottom: none;
}

.page-blog-latest-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-blog-latest-promotions__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
}

.page-blog-latest-promotions__conclusion-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #000000; /* Dark background for conclusion */
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-latest-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-blog-latest-promotions__hero-content {
    max-width: 700px;
  }

  .page-blog-latest-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-latest-promotions__intro-text {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }

  .page-blog-latest-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .page-blog-latest-promotions__card-title {
    font-size: 1.3rem;
  }

  .page-blog-latest-promotions__card-text {
    font-size: 0.95rem;
  }
}

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

  .page-blog-latest-promotions__hero-section {
    padding: 30px 15px !important;
    padding-top: 10px !important;
  }

  .page-blog-latest-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-latest-promotions__intro-text {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  .page-blog-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-promotions__btn-primary,
  .page-blog-latest-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
  }

  .page-blog-latest-promotions__content-area {
    padding: 30px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-latest-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 20px;
  }

  .page-blog-latest-promotions__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    margin-top: 30px;
  }

  .page-blog-latest-promotions__text-block {
    font-size: 1rem;
  }

  .page-blog-latest-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-latest-promotions__card {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-latest-promotions__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-latest-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-blog-latest-promotions__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-blog-latest-promotions__conclusion-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Ensure all images are responsive and don't overflow */
  .page-blog-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions__section,
  .page-blog-latest-promotions__card,
  .page-blog-latest-promotions__container,
  .page-blog-latest-promotions__hero-section,
  .page-blog-latest-promotions__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-latest-promotions__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

/* Image size constraint: min 200x200 for content images */
.page-blog-latest-promotions img:not(.page-blog-latest-promotions__hero-image) {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}