/* style/blog-g-cano-latest-promotions.css */
/* Core styles for the page, confined within the BEM class */
.page-blog-g-cano-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
  padding-bottom: 40px;
}

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

/* Hero Section */
.page-blog-g-cano-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Image on top, text below */
  align-items: center;
  text-align: center;
  background-color: #C61F1F; /* Main color as fallback */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
}

.page-blog-g-cano-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height to prevent image being too large */
}

.page-blog-g-cano-latest-promotions__hero-content {
  padding: 20px;
  max-width: 800px;
  margin-top: 20px;
}

.page-blog-g-cano-latest-promotions__main-title {
  font-size: clamp(2em, 5vw, 3em); /* Responsive H1 size */
  font-weight: bold;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-g-cano-latest-promotions__description {
  font-size: 1.1em;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 30px;
}

/* Section Titles */
.page-blog-g-cano-latest-promotions__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

/* General Section Styling */
.page-blog-g-cano-latest-promotions__section {
  padding: 40px 0;
  background-color: #140C0C; /* Consistent background */
}

.page-blog-g-cano-latest-promotions__section:nth-of-type(even) {
  background-color: #2A1212; /* Card BG for alternating sections */
}

/* Feature Grid */
.page-blog-g-cano-latest-promotions__feature-grid,
.page-blog-g-cano-latest-promotions__promo-grid,
.page-blog-g-cano-latest-promotions__strategy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-g-cano-latest-promotions__feature-item,
.page-blog-g-cano-latest-promotions__promo-card,
.page-blog-g-cano-latest-promotions__strategy-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.page-blog-g-cano-latest-promotions__feature-item:hover,
.page-blog-g-cano-latest-promotions__promo-card:hover,
.page-blog-g-cano-latest-promotions__strategy-item:hover {
  transform: translateY(-5px);
}

.page-blog-g-cano-latest-promotions__feature-image,
.page-blog-g-cano-latest-promotions__promo-image,
.page-blog-g-cano-latest-promotions__strategy-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
  display: block; /* Ensure it respects width/height */
}

.page-blog-g-cano-latest-promotions__feature-title,
.page-blog-g-cano-latest-promotions__promo-title,
.page-blog-g-cano-latest-promotions__strategy-title {
  font-size: 1.4em;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
}

.page-blog-g-cano-latest-promotions__vip-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-g-cano-latest-promotions__vip-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.page-blog-g-cano-latest-promotions__vip-title,
.page-blog-g-cano-latest-promotions__scenario-title {
  font-size: 1.3em;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
}

/* CTA Buttons */
.page-blog-g-cano-latest-promotions__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-g-cano-latest-promotions__cta-button--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  color: #140C0C; /* Dark text for light button */
  border: none;
}

.page-blog-g-cano-latest-promotions__cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 176, 74, 0.4);
}

.page-blog-g-cano-latest-promotions__cta-button--secondary {
  background-color: transparent;
  color: #FFB04A; /* Gold color for text */
  border: 2px solid #FFB04A; /* Gold border */
}

.page-blog-g-cano-latest-promotions__cta-button--secondary:hover {
  background-color: #FFB04A; /* Gold background on hover */
  color: #140C0C; /* Dark text on hover */
  transform: translateY(-3px);
}

/* FAQ Section */
.page-blog-g-cano-latest-promotions__faq-list {
  margin-top: 30px;
}

.page-blog-g-cano-latest-promotions__faq-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-g-cano-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #C61F1F; /* Main color */
  color: #FFF1E8; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-blog-g-cano-latest-promotions__faq-question:hover {
  background-color: #E53030; /* Auxiliary color */
}

.page-blog-g-cano-latest-promotions__faq-item[open] .page-blog-g-cano-latest-promotions__faq-question {
  background-color: #E53030; /* Auxiliary color when open */
}

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

.page-blog-g-cano-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-blog-g-cano-latest-promotions__faq-item details > summary {
  list-style: none; /* Hide default marker */
}
.page-blog-g-cano-latest-promotions__faq-item details > summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}


.page-blog-g-cano-latest-promotions__faq-answer {
  padding: 20px;
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
  border-top: 1px solid #6A1E1E; /* Border */
}

.page-blog-g-cano-latest-promotions__faq-answer p {
  margin-bottom: 15px;
}
.page-blog-g-cano-latest-promotions__faq-answer .page-blog-g-cano-latest-promotions__cta-button {
  margin-top: 10px;
  margin-left: 0;
}


/* Responsive styles */
@media (max-width: 992px) {
  .page-blog-g-cano-latest-promotions__feature-grid,
  .page-blog-g-cano-latest-promotions__promo-grid,
  .page-blog-g-cano-latest-promotions__strategy-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

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

  .page-blog-g-cano-latest-promotions__container {
    padding: 0 15px !important; /* Force padding for mobile */
  }

  .page-blog-g-cano-latest-promotions__hero-section {
    padding-bottom: 20px;
  }

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

  .page-blog-g-cano-latest-promotions__section-title {
    font-size: clamp(1.6em, 6vw, 2em);
    margin-bottom: 20px;
    padding-top: 20px;
  }

  .page-blog-g-cano-latest-promotions__hero-image,
  .page-blog-g-cano-latest-promotions__feature-image,
  .page-blog-g-cano-latest-promotions__promo-image,
  .page-blog-g-cano-latest-promotions__strategy-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important; /* Ensure images are responsive */
    display: block !important;
    min-height: 200px; /* Ensure minimum height */
  }
  
  .page-blog-g-cano-latest-promotions__feature-item,
  .page-blog-g-cano-latest-promotions__promo-card,
  .page-blog-g-cano-latest-promotions__strategy-item,
  .page-blog-g-cano-latest-promotions__vip-item,
  .page-blog-g-cano-latest-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-g-cano-latest-promotions__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog-g-cano-latest-promotions__hero-content,
  .page-blog-g-cano-latest-promotions__promo-grid,
  .page-blog-g-cano-latest-promotions__feature-grid,
  .page-blog-g-cano-latest-promotions__strategy-list,
  .page-blog-g-cano-latest-promotions__vip-list,
  .page-blog-g-cano-latest-promotions__faq-list,
  .page-blog-g-cano-latest-promotions__scenario-points {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .page-blog-g-cano-latest-promotions__cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* Ensure no filter on images */
.page-blog-g-cano-latest-promotions img {
  filter: none !important;
}

/* Contrast Fixes - although the chosen palette should have good contrast */
.page-blog-g-cano-latest-promotions p,
.page-blog-g-cano-latest-promotions li {
  color: #FFF1E8; /* Ensure main text color is light on dark background */
}

.page-blog-g-cano-latest-promotions__dark-section {
  background: #C61F1F;
  color: #ffffff;
}

.page-blog-g-cano-latest-promotions__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C; /* Dark text for light button */
}

.page-blog-g-cano-latest-promotions__btn-secondary {
  background: transparent;
  color: #FFB04A;
  border: 2px solid #FFB04A;
}