/* style/blog-oke365-latest-promotions.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-oke365-latest-promotions {
  color: #ffffff; /* Light text for overall page due to dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-oke365-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding for content below image */
  text-align: center;
  overflow: hidden;
  background: #000000; /* Ensure section background is dark */
}

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

.page-blog-oke365-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-oke365-latest-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative; /* Ensure content is above other elements but not overlapping image */
  z-index: 1;
  color: #ffffff;
}

.page-blog-oke365-latest-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-blog-oke365-latest-promotions__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-oke365-latest-promotions__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-oke365-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-oke365-latest-promotions__text-block {
  margin-bottom: 20px;
}

.page-blog-oke365-latest-promotions__intro-section,
.page-blog-oke365-latest-promotions__how-to-claim,
.page-blog-oke365-latest-promotions__news-update,
.page-blog-oke365-latest-promotions__cta-section {
  padding: 60px 0;
  color: #333333; /* Dark text for light background sections */
}

.page-blog-oke365-latest-promotions__promotions-overview,
.page-blog-oke365-latest-promotions__why-choose,
.page-blog-oke365-latest-promotions__faq-section {
  padding: 60px 0;
  color: #ffffff; /* Light text for dark background sections */
}

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

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

.page-blog-oke365-latest-promotions__inline-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-blog-oke365-latest-promotions__inline-link:hover {
  color: #1a7aab;
}

/* Buttons */
.page-blog-oke365-latest-promotions__btn-primary,
.page-blog-oke365-latest-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-blog-oke365-latest-promotions__btn-primary:hover {
  background-color: #1a7aab;
  border-color: #1a7aab;
}

.page-blog-oke365-latest-promotions__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin: 0 10px;
}

.page-blog-oke365-latest-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-oke365-latest-promotions__btn-text {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-oke365-latest-promotions__btn-text:hover {
  color: #1a7aab;
  text-decoration: underline;
}

.page-blog-oke365-latest-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%; /* Ensure container takes full width */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Promotion Cards */
.page-blog-oke365-latest-promotions__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-oke365-latest-promotions__promo-card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background for cards on dark section */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-blog-oke365-latest-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure image is block for max-width */
}

.page-blog-oke365-latest-promotions__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-blog-oke365-latest-promotions__card-description {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Steps List */
.page-blog-oke365-latest-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-oke365-latest-promotions__list-item {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-blog-oke365-latest-promotions__step-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

/* Why Choose Section */
.page-blog-oke365-latest-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-blog-oke365-latest-promotions__benefits-list .page-blog-oke365-latest-promotions__list-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-blog-oke365-latest-promotions__list-icon {
  width: 100%;
  height: 150px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-oke365-latest-promotions__list-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

/* News Cards */
.page-blog-oke365-latest-promotions__news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-oke365-latest-promotions__news-card {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-blog-oke365-latest-promotions__news-card .page-blog-oke365-latest-promotions__card-image {
  height: 180px;
  margin-bottom: 15px;
}

.page-blog-oke365-latest-promotions__news-card .page-blog-oke365-latest-promotions__card-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333333;
}

.page-blog-oke365-latest-promotions__news-card .page-blog-oke365-latest-promotions__card-title a {
  color: #333333;
  text-decoration: none;
}

.page-blog-oke365-latest-promotions__news-card .page-blog-oke365-latest-promotions__card-title a:hover {
  color: #26A9E0;
}

.page-blog-oke365-latest-promotions__card-date {
  font-size: 0.85em;
  color: #666;
  margin-bottom: 10px;
}

.page-blog-oke365-latest-promotions__news-card .page-blog-oke365-latest-promotions__card-description {
  font-size: 0.9em;
  flex-grow: 1;
  margin-bottom: 15px;
}

.page-blog-oke365-latest-promotions__view-all-btn {
  margin-top: 40px;
  text-align: center;
  display: block;
}

/* FAQ Section */
.page-blog-oke365-latest-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-oke365-latest-promotions__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-oke365-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

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

.page-blog-oke365-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-oke365-latest-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95em;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-oke365-latest-promotions__hero-content {
    max-width: 700px;
  }
  .page-blog-oke365-latest-promotions__promo-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-blog-oke365-latest-promotions__steps-list,
  .page-blog-oke365-latest-promotions__benefits-list,
  .page-blog-oke365-latest-promotions__news-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-oke365-latest-promotions__hero-section,
  .page-blog-oke365-latest-promotions__intro-section,
  .page-blog-oke365-latest-promotions__promotions-overview,
  .page-blog-oke365-latest-promotions__how-to-claim,
  .page-blog-oke365-latest-promotions__why-choose,
  .page-blog-oke365-latest-promotions__news-update,
  .page-blog-oke365-latest-promotions__faq-section,
  .page-blog-oke365-latest-promotions__cta-section {
    padding: 40px 0;
  }

  .page-blog-oke365-latest-promotions__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-blog-oke365-latest-promotions__description {
    font-size: clamp(0.9em, 3.5vw, 1.1em);
  }

  .page-blog-oke365-latest-promotions__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-blog-oke365-latest-promotions__promo-cards,
  .page-blog-oke365-latest-promotions__steps-list,
  .page-blog-oke365-latest-promotions__benefits-list,
  .page-blog-oke365-latest-promotions__news-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Images responsive */
  .page-blog-oke365-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-oke365-latest-promotions__card-image,
  .page-blog-oke365-latest-promotions__list-icon {
    height: auto !important; /* Allow auto height for card/list images on mobile */
    min-height: 200px !important; /* Ensure min size */
  }

  /* Buttons responsive */
  .page-blog-oke365-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-oke365-latest-promotions__btn-primary,
  .page-blog-oke365-latest-promotions__btn-secondary {
    width: 100% !important;
    margin: 0 !important;
    padding: 15px 20px !important;
    font-size: 1.1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-oke365-latest-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-oke365-latest-promotions__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-blog-oke365-latest-promotions__main-title {
    font-size: clamp(1.6em, 8vw, 2.2em);
  }

  .page-blog-oke365-latest-promotions__description {
    font-size: clamp(0.85em, 4vw, 1em);
  }

  .page-blog-oke365-latest-promotions__section-title {
    font-size: clamp(1.4em, 7vw, 1.8em);
  }

  .page-blog-oke365-latest-promotions__btn-primary,
  .page-blog-oke365-latest-promotions__btn-secondary {
    padding: 12px 15px !important;
  }
}