/* style/blog-khuyen-mai-moi-nhat-vz99.css */

:root {
  --vz99-primary: #2F6BFF;
  --vz99-secondary: #6FA3FF;
  --vz99-button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --vz99-card-bg: #FFFFFF;
  --vz99-background: #F4F7FB;
  --vz99-text-main: #1F2D3D;
  --vz99-text-dark: #000000;
  --vz99-border: #D6E2FF;
  --vz99-glow: #A5C4FF;
}

.page-blog-khuyen-mai-moi-nhat-vz99 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--vz99-text-main);
  background-color: var(--vz99-background); /* Assuming light background for body from shared */
}

.page-blog-khuyen-mai-moi-nhat-vz99__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding-top for header offset */
  padding-bottom: 40px;
  background-color: var(--vz99-background);
}

.page-blog-khuyen-mai-moi-nhat-vz99__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 16px;
  gap: 40px;
}

.page-blog-khuyen-mai-moi-nhat-vz99__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  color: var(--vz99-text-main);
}

.page-blog-khuyen-mai-moi-nhat-vz99__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--vz99-primary);
}

.page-blog-khuyen-mai-moi-nhat-vz99__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-khuyen-mai-moi-nhat-vz99__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-blog-khuyen-mai-moi-nhat-vz99__btn-primary,
.page-blog-khuyen-mai-moi-nhat-vz99__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-khuyen-mai-moi-nhat-vz99__btn-primary {
  background: var(--vz99-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-khuyen-mai-moi-nhat-vz99__btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-blog-khuyen-mai-moi-nhat-vz99__btn-secondary {
  background-color: var(--vz99-card-bg);
  color: var(--vz99-primary);
  border: 2px solid var(--vz99-primary);
}

.page-blog-khuyen-mai-moi-nhat-vz99__btn-secondary:hover {
  background-color: var(--vz99-primary);
  color: #ffffff;
}

.page-blog-khuyen-mai-moi-nhat-vz99__hero-image {
  flex: 1 1 40%;
  min-width: 280px;
  text-align: center;
}

.page-blog-khuyen-mai-moi-nhat-vz99__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: block;
}

.page-blog-khuyen-mai-moi-nhat-vz99__intro-section,
.page-blog-khuyen-mai-moi-nhat-vz99__promo-list-section,
.page-blog-khuyen-mai-moi-nhat-vz99__faq-section,
.page-blog-khuyen-mai-moi-nhat-vz99__cta-bottom-section {
  padding: 60px 0;
}

.page-blog-khuyen-mai-moi-nhat-vz99__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-blog-khuyen-mai-moi-nhat-vz99__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--vz99-primary);
}

.page-blog-khuyen-mai-moi-nhat-vz99__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-khuyen-mai-moi-nhat-vz99__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-khuyen-mai-moi-nhat-vz99__promo-card {
  background-color: var(--vz99-card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  color: var(--vz99-text-main);
}

.page-blog-khuyen-mai-moi-nhat-vz99__promo-card:hover {
  transform: translateY(-5px);
}

.page-blog-khuyen-mai-moi-nhat-vz99__promo-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-khuyen-mai-moi-nhat-vz99__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-khuyen-mai-moi-nhat-vz99__card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-blog-khuyen-mai-moi-nhat-vz99__card-title a {
  color: var(--vz99-primary);
  text-decoration: none;
}

.page-blog-khuyen-mai-moi-nhat-vz99__card-title a:hover {
  text-decoration: underline;
}

.page-blog-khuyen-mai-moi-nhat-vz99__card-description {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-khuyen-mai-moi-nhat-vz99__btn-card {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: var(--vz99-secondary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  align-self: flex-start;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-khuyen-mai-moi-nhat-vz99__btn-card:hover {
  background-color: var(--vz99-primary);
}

.page-blog-khuyen-mai-moi-nhat-vz99__why-choose-section {
  background-color: var(--vz99-primary);
  color: #ffffff;
  padding: 60px 0;
}

.page-blog-khuyen-mai-moi-nhat-vz99__why-choose-section .page-blog-khuyen-mai-moi-nhat-vz99__section-title {
  color: #ffffff;
}

.page-blog-khuyen-mai-moi-nhat-vz99__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-khuyen-mai-moi-nhat-vz99__benefits-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}

.page-blog-khuyen-mai-moi-nhat-vz99__benefits-title {
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--vz99-secondary);
}

.page-blog-khuyen-mai-moi-nhat-vz99__benefits-description {
  font-size: 0.95em;
  opacity: 0.9;
}

.page-blog-khuyen-mai-moi-nhat-vz99__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-khuyen-mai-moi-nhat-vz99__faq-item {
  background-color: var(--vz99-card-bg);
  border: 1px solid var(--vz99-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-khuyen-mai-moi-nhat-vz99__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--vz99-text-dark);
  cursor: pointer;
  background-color: #ffffff;
  position: relative;
  list-style: none;
  user-select: none; /* Prevent text selection on click */
}

.page-blog-khuyen-mai-moi-nhat-vz99__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-khuyen-mai-moi-nhat-vz99__faq-item[open] .page-blog-khuyen-mai-moi-nhat-vz99__faq-question {
  background-color: var(--vz99-background);
}

.page-blog-khuyen-mai-moi-nhat-vz99__faq-qtext {
  flex-grow: 1;
}

.page-blog-khuyen-mai-moi-nhat-vz99__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--vz99-primary);
}

.page-blog-khuyen-mai-moi-nhat-vz99__faq-answer {
  padding: 15px 25px 25px;
  font-size: 0.95em;
  color: var(--vz99-text-main);
  background-color: var(--vz99-background);
  border-top: 1px solid var(--vz99-border);
}

.page-blog-khuyen-mai-moi-nhat-vz99__cta-bottom-section {
  text-align: center;
  background-color: var(--vz99-primary);
  color: #ffffff;
  padding: 80px 0;
}

.page-blog-khuyen-mai-moi-nhat-vz99__cta-bottom-section .page-blog-khuyen-mai-moi-nhat-vz99__section-title {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-blog-khuyen-mai-moi-nhat-vz99__cta-bottom-section .page-blog-khuyen-mai-moi-nhat-vz99__text-block {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #ffffff;
  opacity: 0.9;
}

.page-blog-khuyen-mai-moi-nhat-vz99__cta-bottom-section .page-blog-khuyen-mai-moi-nhat-vz99__cta-buttons {
  justify-content: center;
}

/* General image responsiveness */
.page-blog-khuyen-mai-moi-nhat-vz99 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-blog-khuyen-mai-moi-nhat-vz99 {
    font-size: 15px;
  }

  /* HERO section */
  .page-blog-khuyen-mai-moi-nhat-vz99__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__hero-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__hero-content {
    order: 2;
    text-align: center;
    min-width: unset;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__hero-image {
    order: 1;
    min-width: unset;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__main-title {
    font-size: clamp(1.8em, 8vw, 2.2em);
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  /* Buttons and button containers */
  .page-blog-khuyen-mai-moi-nhat-vz99__cta-buttons {
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__btn-primary,
  .page-blog-khuyen-mai-moi-nhat-vz99__btn-secondary,
  .page-blog-khuyen-mai-moi-nhat-vz99__btn-card,
  .page-blog-khuyen-mai-moi-nhat-vz99 a[class*="button"],
  .page-blog-khuyen-mai-moi-nhat-vz99 a[class*="btn"] {
    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;
  }

  /* General content sections */
  .page-blog-khuyen-mai-moi-nhat-vz99__intro-section,
  .page-blog-khuyen-mai-moi-nhat-vz99__promo-list-section,
  .page-blog-khuyen-mai-moi-nhat-vz99__faq-section,
  .page-blog-khuyen-mai-moi-nhat-vz99__cta-bottom-section {
    padding: 40px 0;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__section-title {
    font-size: clamp(1.5em, 7vw, 2em);
    margin-bottom: 30px;
  }

  /* Promo list */
  .page-blog-khuyen-mai-moi-nhat-vz99__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__promo-image {
    height: 180px; /* Adjust height for mobile */
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__card-content {
    padding: 20px;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__card-title {
    font-size: 1.15em;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__btn-card {
    align-self: stretch;
  }

  /* Why choose section */
  .page-blog-khuyen-mai-moi-nhat-vz99__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__benefits-title {
    font-size: 1.1em;
  }

  /* FAQ section */
  .page-blog-khuyen-mai-moi-nhat-vz99__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-khuyen-mai-moi-nhat-vz99__faq-answer {
    padding: 10px 20px 20px;
    font-size: 0.9em;
  }

  /* CTA bottom section */
  .page-blog-khuyen-mai-moi-nhat-vz99__cta-bottom-section .page-blog-khuyen-mai-moi-nhat-vz99__text-block {
    font-size: 1em;
    padding: 0 15px;
  }

  /* Generic image rules for content area */
  .page-blog-khuyen-mai-moi-nhat-vz99 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Ensure content containers don't overflow */
  .page-blog-khuyen-mai-moi-nhat-vz99__section,
  .page-blog-khuyen-mai-moi-nhat-vz99__card,
  .page-blog-khuyen-mai-moi-nhat-vz99__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
}

/* Ensure no image filters are used */
.page-blog-khuyen-mai-moi-nhat-vz99 img {
  filter: none;
}