/* style/blog-latest-promotions-99v.css */
/* body đã padding-top: var(--header-offset)；trang này không được viết lại biến đó */

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

.page-blog-latest-promotions-99v {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-main); /* Dark background, so light text */
  background-color: var(--page-background); /* From custom colors */
}

.page-blog-latest-promotions-99v__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding, only small top padding here */
  background-color: var(--page-background);
}

.page-blog-latest-promotions-99v__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-latest-promotions-99v__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-latest-promotions-99v__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
  text-align: center;
  color: var(--page-text-main);
}

.page-blog-latest-promotions-99v__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Use clamp for h1 font size */
  font-weight: 700;
  line-height: 1.2;
  color: var(--page-gold-color);
  margin-bottom: 20px;
}

.page-blog-latest-promotions-99v__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--page-text-secondary);
}

.page-blog-latest-promotions-99v__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-latest-promotions-99v__btn-primary,
.page-blog-latest-promotions-99v__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-latest-promotions-99v__btn-primary {
  background: var(--page-button-gradient);
  color: var(--page-text-main);
  border: 2px solid transparent;
}

.page-blog-latest-promotions-99v__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-latest-promotions-99v__btn-secondary {
  background-color: transparent;
  color: var(--page-gold-color);
  border: 2px solid var(--page-gold-color);
}

.page-blog-latest-promotions-99v__btn-secondary:hover {
  background-color: var(--page-gold-color);
  color: var(--page-background);
  transform: translateY(-2px);
}

.page-blog-latest-promotions-99v__content-section {
  padding: 60px 0;
  background-color: var(--page-background);
  color: var(--page-text-main);
}

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

.page-blog-latest-promotions-99v__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--page-gold-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-latest-promotions-99v__subsection-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--page-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-latest-promotions-99v__paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--page-text-secondary);
}

.page-blog-latest-promotions-99v__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-latest-promotions-99v__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--page-text-secondary);
}

.page-blog-latest-promotions-99v__ordered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--page-text-secondary);
}

.page-blog-latest-promotions-99v__list-item {
  margin-bottom: 10px;
  color: var(--page-text-secondary);
}

.page-blog-latest-promotions-99v__list-item strong {
  color: var(--page-text-main);
}

.page-blog-latest-promotions-99v__cta-block {
  background-color: var(--page-card-bg);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
  border: 1px solid var(--page-border-color);
}

.page-blog-latest-promotions-99v__cta-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--page-text-main);
  margin-bottom: 25px;
}

.page-blog-latest-promotions-99v__faq-list {
  margin-top: 40px;
}

.page-blog-latest-promotions-99v__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-latest-promotions-99v__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--page-text-main);
  background-color: var(--page-deep-green-color);
  border-bottom: 1px solid var(--page-border-color);
}

.page-blog-latest-promotions-99v__faq-item[open] .page-blog-latest-promotions-99v__faq-question {
  border-bottom: 1px solid var(--page-border-color);
}

.page-blog-latest-promotions-99v__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-promotions-99v__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-gold-color);
}

.page-blog-latest-promotions-99v__faq-answer {
  padding: 20px 25px;
  background-color: var(--page-card-bg);
  color: var(--page-text-secondary);
}

.page-blog-latest-promotions-99v__faq-answer p {
  margin-bottom: 0;
  color: var(--page-text-secondary);
}

/* Ensure summary arrow is hidden */
.page-blog-latest-promotions-99v__faq-item summary {
  list-style: none;
}

.page-blog-latest-promotions-99v__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-latest-promotions-99v {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-latest-promotions-99v__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

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

  .page-blog-latest-promotions-99v__intro-text {
    font-size: 1rem;
  }

  .page-blog-latest-promotions-99v__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-latest-promotions-99v__btn-primary,
  .page-blog-latest-promotions-99v__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-latest-promotions-99v__content-section {
    padding: 40px 0;
  }

  .page-blog-latest-promotions-99v__container {
    padding: 0 15px;
  }

  .page-blog-latest-promotions-99v__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-latest-promotions-99v__subsection-title {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-latest-promotions-99v__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 20px 0;
  }

  .page-blog-latest-promotions-99v__cta-block {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .page-blog-latest-promotions-99v__cta-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .page-blog-latest-promotions-99v__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-latest-promotions-99v__faq-answer {
    padding: 15px 20px;
  }
}