/* style/blog-gacam67-promotions-guide.css */

:root {
  --primary-color: #C91F17;
  --secondary-color: #E53935;
  --text-main-color: #FFF5E1;
  --card-bg-color: #D32F2F;
  --background-color: #B71C1C;
  --border-color: #F2B544;
  --glow-color: #FFCC66;
  --gold-color: #F4D34D;
  --deep-red-color: #7A0E0E;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
}

.page-blog-gacam67-promotions-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: var(--background-color); /* Fallback for body, main content */
}

/* Color Contrast System Integration */
.page-blog-gacam67-promotions-guide__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-gacam67-promotions-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-gacam67-promotions-guide__card {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
  border: 1px solid var(--border-color);
}

.page-blog-gacam67-promotions-guide__card-title {
  color: var(--gold-color);
}

/* Hero Section */
.page-blog-gacam67-promotions-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--deep-red-color);
  color: var(--text-main-color);
}

.page-blog-gacam67-promotions-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog-gacam67-promotions-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-gacam67-promotions-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-gacam67-promotions-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-gacam67-promotions-guide__hero-content h1 {
  color: var(--gold-color);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-gacam67-promotions-guide__hero-content p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-gacam67-promotions-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #000000; /* Ensure contrast on gold gradient */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--border-color);
}

.page-blog-gacam67-promotions-guide__cta-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-blog-gacam67-promotions-guide__section {
  padding: 50px 0;
}

.page-blog-gacam67-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-gacam67-promotions-guide__main-title,
.page-blog-gacam67-promotions-guide__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.page-blog-gacam67-promotions-guide__intro-section .page-blog-gacam67-promotions-guide__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

.page-blog-gacam67-promotions-guide__promotion-types .page-blog-gacam67-promotions-guide__section-title,
.page-blog-gacam67-promotions-guide__terms-conditions .page-blog-gacam67-promotions-guide__section-title,
.page-blog-gacam67-promotions-guide__conclusion-section .page-blog-gacam67-promotions-guide__section-title {
  color: var(--gold-color);
}

/* Grid for Promotion Types */
.page-blog-gacam67-promotions-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-gacam67-promotions-guide__card {
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-gacam67-promotions-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-gacam67-promotions-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-blog-gacam67-promotions-guide__card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-gacam67-promotions-guide__card-text {
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Buttons within cards */
.page-blog-gacam67-promotions-guide__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--button-gradient);
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-blog-gacam67-promotions-guide__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.page-blog-gacam67-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
}

.page-blog-gacam67-promotions-guide__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
}

/* How to Claim Section */
.page-blog-gacam67-promotions-guide__ordered-list,
.page-blog-gacam67-promotions-guide__unordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: #333333;
}

.page-blog-gacam67-promotions-guide__unordered-list {
  list-style-type: disc;
}

.page-blog-gacam67-promotions-guide__ordered-list li,
.page-blog-gacam67-promotions-guide__unordered-list li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.page-blog-gacam67-promotions-guide__ordered-list li strong {
  color: var(--primary-color);
}

.page-blog-gacam67-promotions-guide__button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-gacam67-promotions-guide__button-group .page-blog-gacam67-promotions-guide__btn-primary,
.page-blog-gacam67-promotions-guide__button-group .page-blog-gacam67-promotions-guide__btn-secondary {
  min-width: 200px;
}

/* FAQ Section */
.page-blog-gacam67-promotions-guide__faq-section {
  background-color: #f9f9f9;
}

.page-blog-gacam67-promotions-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-blog-gacam67-promotions-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-blog-gacam67-promotions-guide__faq-item summary.page-blog-gacam67-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-gacam67-promotions-guide__faq-item summary.page-blog-gacam67-promotions-guide__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-gacam67-promotions-guide__faq-item summary.page-blog-gacam67-promotions-guide__faq-question:hover {
  background: #f5f5f5;
}
.page-blog-gacam67-promotions-guide__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-blog-gacam67-promotions-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-gacam67-promotions-guide__faq-item .page-blog-gacam67-promotions-guide__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

/* Conclusion Section */
.page-blog-gacam67-promotions-guide__conclusion-section {
  text-align: center;
  background-color: var(--deep-red-color);
  color: var(--text-main-color);
}

.page-blog-gacam67-promotions-guide__conclusion-section .page-blog-gacam67-promotions-guide__text-block {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

.page-blog-gacam67-promotions-guide__btn-gold-gradient {
  background: var(--button-gradient);
  color: #000000;
  border: 2px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-gacam67-promotions-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-gacam67-promotions-guide__hero-image img {
    border-radius: 4px;
  }
  
  .page-blog-gacam67-promotions-guide__hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-gacam67-promotions-guide__hero-content p {
    font-size: 1rem;
  }

  .page-blog-gacam67-promotions-guide__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-gacam67-promotions-guide__section {
    padding: 30px 0;
  }

  .page-blog-gacam67-promotions-guide__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-gacam67-promotions-guide__main-title,
  .page-blog-gacam67-promotions-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-blog-gacam67-promotions-guide__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-gacam67-promotions-guide__card {
    padding: 20px;
  }

  .page-blog-gacam67-promotions-guide__card-image {
    height: 180px;
  }

  .page-blog-gacam67-promotions-guide__card-title {
    font-size: 1.2rem;
  }

  .page-blog-gacam67-promotions-guide__card-text {
    font-size: 0.95rem;
  }

  .page-blog-gacam67-promotions-guide__btn-primary,
  .page-blog-gacam67-promotions-guide__btn-secondary {
    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-gacam67-promotions-guide__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-gacam67-promotions-guide__ordered-list,
  .page-blog-gacam67-promotions-guide__unordered-list {
    font-size: 1rem;
    margin-left: 20px;
  }

  details.page-blog-gacam67-promotions-guide__faq-item summary.page-blog-gacam67-promotions-guide__faq-question { padding: 15px; }
  .page-blog-gacam67-promotions-guide__faq-qtext { font-size: 15px; }
  .page-blog-gacam67-promotions-guide__faq-toggle {
    font-size: 20px;
    width: 24px;
  }
  details.page-blog-gacam67-promotions-guide__faq-item .page-blog-gacam67-promotions-guide__faq-answer {
    padding: 0 15px 15px;
  }

  /* Image responsiveness */
  .page-blog-gacam67-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-gacam67-promotions-guide__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-gacam67-promotions-guide__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important; /* Ensure height adjusts */
  }
}

/* Ensure all content area images and containers are responsive and don't cause overflow */
.page-blog-gacam67-promotions-guide__section,
.page-blog-gacam67-promotions-guide__container,
.page-blog-gacam67-promotions-guide__grid,
.page-blog-gacam67-promotions-guide__card {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* Prevent overflow from children */
}

.page-blog-gacam67-promotions-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-gacam67-promotions-guide a {
  color: var(--gold-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-gacam67-promotions-guide a:hover {
  color: var(--glow-color);
  text-decoration: underline;
}

/* Ensure content area images meet minimum size requirements */
.page-blog-gacam67-promotions-guide__card-image, 
.page-blog-gacam67-promotions-guide__hero-image img {
  min-width: 200px;
  min-height: 200px;
}

/* No filter properties on images */
.page-blog-gacam67-promotions-guide img {
  filter: none;
}