/* style/blog-latest-promotions-789pet-win.css */

/* Base styles for the page content, ensuring text contrast with body background */
.page-blog-latest-promotions-789pet-win {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  background-color: var(--background-color, #08160F); /* Background */
  padding-bottom: 40px;
}

/* Section styling */
.page-blog-latest-promotions-789pet-win__section {
  padding: 40px 0;
  border-bottom: 1px solid var(--divider-color, #1E3A2A); /* Divider */
}

.page-blog-latest-promotions-789pet-win__section:last-of-type {
  border-bottom: none;
}

/* Container for content width */
.page-blog-latest-promotions-789pet-win__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-latest-promotions-789pet-win__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  background-color: var(--card-bg-color, #11271B); /* Card BG */
  overflow: hidden; /* Ensure image doesn't overflow */
}

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

.page-blog-latest-promotions-789pet-win__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any potential background effects */
  color: var(--text-main-color, #F2FFF6); /* Text Main */
}

/* Titles */
.page-blog-latest-promotions-789pet-win__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-blog-latest-promotions-789pet-win__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: var(--gold-color, #F2C14E); /* Gold */
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-latest-promotions-789pet-win__sub-title {
  font-size: clamp(1.3em, 2.5vw, 1.8em);
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--deep-green-color, #0A4B2C); /* Deep Green */
  background-color: var(--text-main-color, #F2FFF6); /* Text Main as background for contrast */
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
}

/* Paragraphs and Text Blocks */
.page-blog-latest-promotions-789pet-win__intro-description,
.page-blog-latest-promotions-789pet-win__text-block p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--text-main-color, #F2FFF6); /* Text Main */
}

.page-blog-latest-promotions-789pet-win__intro-description {
  font-size: 1.2em;
  color: var(--text-secondary-color, #A7D9B8); /* Text Secondary */
}

/* Images within content */
.page-blog-latest-promotions-789pet-win__image-full {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Lists */
.page-blog-latest-promotions-789pet-win__list,
.page-blog-latest-promotions-789pet-win__numbered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main-color, #F2FFF6); /* Text Main */
}

.page-blog-latest-promotions-789pet-win__numbered-list {
  list-style-type: decimal;
}

.page-blog-latest-promotions-789pet-win__list li,
.page-blog-latest-promotions-789pet-win__numbered-list li {
  margin-bottom: 10px;
  color: var(--text-main-color, #F2FFF6); /* Text Main */
}

.page-blog-latest-promotions-789pet-win__list li strong {
  color: var(--gold-color, #F2C14E); /* Gold */
}

/* Call to Action Buttons */
.page-blog-latest-promotions-789pet-win__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-latest-promotions-789pet-win__btn-primary,
.page-blog-latest-promotions-789pet-win__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-promotions-789pet-win__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff; /* White text on dark button */
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-latest-promotions-789pet-win__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-blog-latest-promotions-789pet-win__btn-secondary {
  background: transparent;
  color: var(--deep-green-color, #0A4B2C); /* Deep Green */
  border: 2px solid var(--deep-green-color, #0A4B2C);
  background-color: var(--text-main-color, #F2FFF6); /* Text Main as background for contrast */
}

.page-blog-latest-promotions-789pet-win__btn-secondary:hover {
  background-color: var(--deep-green-color, #0A4B2C); /* Deep Green */
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  border-color: var(--deep-green-color, #0A4B2C);
  transform: translateY(-2px);
}

/* FAQ Section */
.page-blog-latest-promotions-789pet-win__faq-list {
  margin-top: 30px;
}

.page-blog-latest-promotions-789pet-win__faq-item {
  background-color: var(--card-bg-color, #11271B); /* Card BG */
  border: 1px solid var(--border-color, #2E7A4E); /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color, #F2FFF6); /* Text Main */
}

.page-blog-latest-promotions-789pet-win__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  background-color: var(--deep-green-color, #0A4B2C); /* Deep Green */
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  border-bottom: 1px solid var(--border-color, #2E7A4E); /* Border */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-latest-promotions-789pet-win__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for WebKit */
}

.page-blog-latest-promotions-789pet-win__faq-question:hover {
  background-color: var(--primary-color, #11A84E); /* Primary color */
}

.page-blog-latest-promotions-789pet-win__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-promotions-789pet-win__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-latest-promotions-789pet-win__faq-item[open] .page-blog-latest-promotions-789pet-win__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-blog-latest-promotions-789pet-win__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: var(--text-secondary-color, #A7D9B8); /* Text Secondary */
  background-color: var(--card-bg-color, #11271B); /* Card BG */
}

/* Ensure images within content areas are at least 200px */
.page-blog-latest-promotions-789pet-win__text-block img,
.page-blog-latest-promotions-789pet-win__overview-section img,
.page-blog-latest-promotions-789pet-win__new-member-section img,
.page-blog-latest-promotions-789pet-win__cashback-section img,
.page-blog-latest-promotions-789pet-win__daily-weekly-section img,
.page-blog-latest-promotions-789pet-win__vip-section img,
.page-blog-latest-promotions-789pet-win__guide-section img,
.page-blog-latest-promotions-789pet-win__faq-section img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-789pet-win__hero-content {
    padding: 0 15px;
  }
  .page-blog-latest-promotions-789pet-win__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-latest-promotions-789pet-win__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }
}

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

  /* Mobile image and video responsiveness */
  .page-blog-latest-promotions-789pet-win img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-789pet-win video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/videos */
  .page-blog-latest-promotions-789pet-win__section,
  .page-blog-latest-promotions-789pet-win__container,
  .page-blog-latest-promotions-789pet-win__hero-section,
  .page-blog-latest-promotions-789pet-win__video-section,
  .page-blog-latest-promotions-789pet-win__video-container,
  .page-blog-latest-promotions-789pet-win__video-wrapper,
  .page-blog-latest-promotions-789pet-win__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Specific top padding for hero/video sections */
  .page-blog-latest-promotions-789pet-win__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
    padding-left: 0;
    padding-right: 0;
  }

  /* Button responsiveness */
  .page-blog-latest-promotions-789pet-win__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-blog-latest-promotions-789pet-win__btn-primary,
  .page-blog-latest-promotions-789pet-win__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }
}