/* style/blog-latest-promotions-2024.css */
/* Base styles for the page content, ensuring dark text on light body background */
.page-blog-latest-promotions-2024 {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Explicitly white background for content area */
  line-height: 1.6;
}

/* Hero Section */
.page-blog-latest-promotions-2024__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 40px; /* Adjust padding for visual spacing */
  background-color: #26A9E0; /* Brand color for hero section background */
  color: #FFFFFF; /* White text for brand color background */
}

.page-blog-latest-promotions-2024__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-latest-promotions-2024__hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-latest-promotions-2024__main-title {
  font-size: clamp(2rem, 5vw, 3.2rem); /* Responsive font size */
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-blog-latest-promotions-2024__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0; /* Slightly off-white for contrast */
}

/* General Section Styles */
.page-blog-latest-promotions-2024__section {
  padding: 40px 0;
  background-color: #FFFFFF; /* Default light background */
  color: #333333; /* Default dark text */
}

.page-blog-latest-promotions-2024__section:nth-of-type(even) {
  background-color: #f8f8f8; /* Slightly different background for alternating sections */
}

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

.page-blog-latest-promotions-2024__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #26A9E0; /* Brand color for section titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-latest-promotions-2024__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

/* List Styles */
.page-blog-latest-promotions-2024__list,
.page-blog-latest-promotions-2024__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-latest-promotions-2024__ordered-list {
  list-style-type: decimal;
}

.page-blog-latest-promotions-2024__list-item {
  margin-bottom: 10px;
}

/* Image in Content */
.page-blog-latest-promotions-2024__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Promotion Cards */
.page-blog-latest-promotions-2024__promotion-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-promotions-2024__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-blog-latest-promotions-2024__card-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-latest-promotions-2024__card-title {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-latest-promotions-2024__card-text {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #555555;
  text-align: justify;
}

/* CTA Buttons */
.page-blog-latest-promotions-2024__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-blog-latest-promotions-2024__btn-primary {
  background-color: #EA7C07; /* Login orange */
  color: #FFFFFF;
  border: 2px solid transparent;
}

.page-blog-latest-promotions-2024__btn-primary:hover {
  background-color: #d16b06;
  transform: translateY(-2px);
}

.page-blog-latest-promotions-2024__btn-secondary {
  background-color: #26A9E0; /* Brand blue */
  color: #FFFFFF;
  border: 2px solid transparent;
}

.page-blog-latest-promotions-2024__btn-secondary:hover {
  background-color: #1f8ac2;
  transform: translateY(-2px);
}

.page-blog-latest-promotions-2024__btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* FAQ Section */
.page-blog-latest-promotions-2024__faq {
  background-color: #f0f0f0;
}

.page-blog-latest-promotions-2024__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-latest-promotions-2024__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  color: #333333;
}

.page-blog-latest-promotions-2024__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  background-color: #fcfcfc;
  border-bottom: 1px solid #eee;
  color: #26A9E0; /* Brand color for questions */
}

.page-blog-latest-promotions-2024__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-blog-latest-promotions-2024__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-promotions-2024__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #EA7C07; /* Orange for toggle icon */
}

.page-blog-latest-promotions-2024__faq-answer {
  padding: 20px 25px;
  font-size: 0.95rem;
  color: #555555;
  text-align: justify;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-latest-promotions-2024__hero-section {
    padding: 10px 15px 30px; /* Reduced top padding for mobile */
  }

  .page-blog-latest-promotions-2024__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-latest-promotions-2024__hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }

  .page-blog-latest-promotions-2024__section {
    padding: 30px 0;
  }

  .page-blog-latest-promotions-2024__container {
    padding: 0 15px; /* Add horizontal padding to containers */
  }

  .page-blog-latest-promotions-2024__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 25px;
  }

  .page-blog-latest-promotions-2024__text-block,
  .page-blog-latest-promotions-2024__list-item,
  .page-blog-latest-promotions-2024__card-text,
  .page-blog-latest-promotions-2024__faq-answer p {
    font-size: 0.9rem;
  }

  /* Images responsive */
  .page-blog-latest-promotions-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Video responsive (if any) - not present in this HTML, but good to include for robustness */
  .page-blog-latest-promotions-2024 video,
  .page-blog-latest-promotions-2024__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video container responsive (if any) */
  .page-blog-latest-promotions-2024__video-section,
  .page-blog-latest-promotions-2024__video-container,
  .page-blog-latest-promotions-2024__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-latest-promotions-2024__video-section {
    padding-top: 10px !important; /* Small top padding for video section */
  }

  /* Ensure all containers with images/videos are responsive */
  .page-blog-latest-promotions-2024__section,
  .page-blog-latest-promotions-2024__promotion-card,
  .page-blog-latest-promotions-2024__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons responsive */
  .page-blog-latest-promotions-2024__cta-button,
  .page-blog-latest-promotions-2024__btn-primary,
  .page-blog-latest-promotions-2024__btn-secondary,
  .page-blog-latest-promotions-2024 a[class*="button"],
  .page-blog-latest-promotions-2024 a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-promotions-2024__cta-buttons,
  .page-blog-latest-promotions-2024__button-group,
  .page-blog-latest-promotions-2024__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-blog-latest-promotions-2024__cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  .page-blog-latest-promotions-2024__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-latest-promotions-2024__faq-answer {
    padding: 15px 20px;
  }
}