/* style/blog-newest-promotions-good88-vina.css */
:root {
  --good88-vina-primary: #11A84E;
  --good88-vina-secondary: #22C768;
  --good88-vina-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --good88-vina-card-bg: #11271B;
  --good88-vina-background: #08160F;
  --good88-vina-text-main: #F2FFF6;
  --good88-vina-text-secondary: #A7D9B8;
  --good88-vina-border: #2E7A4E;
  --good88-vina-glow: #57E38D;
  --good88-vina-gold: #F2C14E;
  --good88-vina-divider: #1E3A2A;
  --good88-vina-deep-green: #0A4B2C;
}

/* General page styles, body padding-top handled by shared.css */
.page-blog-newest-promotions-good88-vina {
  background-color: var(--good88-vina-background);
  color: var(--good88-vina-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-newest-promotions-good88-vina__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small decorative top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  background: var(--good88-vina-background);
}

.page-blog-newest-promotions-good88-vina__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-blog-newest-promotions-good88-vina__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px;
}

.page-blog-newest-promotions-good88-vina__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: 40px; /* Separates content from image */
  padding: 0 20px;
}

.page-blog-newest-promotions-good88-vina__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: var(--good88-vina-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-newest-promotions-good88-vina__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--good88-vina-text-secondary);
  margin-bottom: 30px;
}

.page-blog-newest-promotions-good88-vina__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-newest-promotions-good88-vina__btn-primary,
.page-blog-newest-promotions-good88-vina__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button adapts */
}

.page-blog-newest-promotions-good88-vina__btn-primary {
  background: var(--good88-vina-button-gradient);
  color: var(--good88-vina-text-main);
  border: none;
}

.page-blog-newest-promotions-good88-vina__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-newest-promotions-good88-vina__btn-secondary {
  background: none;
  color: var(--good88-vina-primary);
  border: 2px solid var(--good88-vina-primary);
}

.page-blog-newest-promotions-good88-vina__btn-secondary:hover {
  background: var(--good88-vina-primary);
  color: var(--good88-vina-text-main);
}

.page-blog-newest-promotions-good88-vina__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--good88-vina-text-main);
}

.page-blog-newest-promotions-good88-vina__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--good88-vina-text-main);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-blog-newest-promotions-good88-vina__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--good88-vina-text-secondary);
  text-align: justify;
}

.page-blog-newest-promotions-good88-vina__text-block a {
  color: var(--good88-vina-primary);
  text-decoration: underline;
}

.page-blog-newest-promotions-good88-vina__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Min size requirement */
}

.page-blog-newest-promotions-good88-vina__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-blog-newest-promotions-good88-vina__card {
  background-color: var(--good88-vina-card-bg);
  border: 1px solid var(--good88-vina-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px; /* Ensure cards have a decent height */
}

.page-blog-newest-promotions-good88-vina__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Min size requirement */
  min-height: 200px; /* Min size requirement */
}

.page-blog-newest-promotions-good88-vina__card-title {
  font-size: 1.5em;
  color: var(--good88-vina-text-main);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-newest-promotions-good88-vina__card-text {
  color: var(--good88-vina-text-secondary);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-newest-promotions-good88-vina__card .page-blog-newest-promotions-good88-vina__btn-primary {
  width: 100%;
  margin-top: auto; /* Push button to bottom */
}

.page-blog-newest-promotions-good88-vina__numbered-list,
.page-blog-newest-promotions-good88-vina__bullet-list {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--good88-vina-text-secondary);
}

.page-blog-newest-promotions-good88-vina__numbered-list li,
.page-blog-newest-promotions-good88-vina__bullet-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--good88-vina-text-secondary);
}

.page-blog-newest-promotions-good88-vina__numbered-list li strong {
  color: var(--good88-vina-text-main);
}

.page-blog-newest-promotions-good88-vina__faq-list {
  margin-top: 30px;
}

.page-blog-newest-promotions-good88-vina__faq-item {
  background-color: var(--good88-vina-card-bg);
  border: 1px solid var(--good88-vina-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--good88-vina-text-main);
}

.page-blog-newest-promotions-good88-vina__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--good88-vina-deep-green);
  border-bottom: 1px solid var(--good88-vina-border);
  color: var(--good88-vina-text-main);
  list-style: none; /* For details/summary */
}

.page-blog-newest-promotions-good88-vina__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-blog-newest-promotions-good88-vina__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--good88-vina-primary);
}

.page-blog-newest-promotions-good88-vina__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--good88-vina-text-secondary);
  border-top: 1px solid var(--good88-vina-divider);
}

.page-blog-newest-promotions-good88-vina__faq-item[open] .page-blog-newest-promotions-good88-vina__faq-question {
  border-bottom: 1px solid var(--good88-vina-divider);
}

.page-blog-newest-promotions-good88-vina__cta-section {
  background-color: var(--good88-vina-deep-green);
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-newest-promotions-good88-vina__cta-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--good88-vina-text-main);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-newest-promotions-good88-vina__cta-description {
  font-size: 1.1em;
  color: var(--good88-vina-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-newest-promotions-good88-vina__hero-content {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-newest-promotions-good88-vina {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-newest-promotions-good88-vina__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-newest-promotions-good88-vina__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-blog-newest-promotions-good88-vina__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-newest-promotions-good88-vina__hero-description {
    font-size: clamp(1em, 2.5vw, 1.1em);
  }

  .page-blog-newest-promotions-good88-vina__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-newest-promotions-good88-vina__btn-primary,
  .page-blog-newest-promotions-good88-vina__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-blog-newest-promotions-good88-vina__content-area {
    padding: 20px 15px;
  }

  .page-blog-newest-promotions-good88-vina__section-title {
    font-size: clamp(1.6em, 5vw, 2em);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-newest-promotions-good88-vina__text-block,
  .page-blog-newest-promotions-good88-vina__numbered-list li,
  .page-blog-newest-promotions-good88-vina__bullet-list li {
    font-size: 1em;
  }

  .page-blog-newest-promotions-good88-vina__image-full-width,
  .page-blog-newest-promotions-good88-vina__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-newest-promotions-good88-vina__card {
    padding: 20px;
    min-height: auto;
  }

  .page-blog-newest-promotions-good88-vina__card-title {
    font-size: 1.3em;
  }

  .page-blog-newest-promotions-good88-vina__card-text {
    font-size: 0.9em;
  }

  .page-blog-newest-promotions-good88-vina__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-newest-promotions-good88-vina__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-blog-newest-promotions-good88-vina__cta-section {
    padding: 40px 20px;
    margin-top: 40px;
  }

  .page-blog-newest-promotions-good88-vina__cta-title {
    font-size: clamp(1.6em, 5vw, 2.2em);
  }

  .page-blog-newest-promotions-good88-vina__cta-description {
    font-size: 1em;
  }

  /* Ensure all containers are responsive */
  .page-blog-newest-promotions-good88-vina__hero-section,
  .page-blog-newest-promotions-good88-vina__content-area,
  .page-blog-newest-promotions-good88-vina__promotion-grid,
  .page-blog-newest-promotions-good88-vina__card,
  .page-blog-newest-promotions-good88-vina__faq-item,
  .page-blog-newest-promotions-good88-vina__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}