/* style/blog-phan-tich-ty-le-keo-chuan-hieu-qua.css */

/* General styles for the page */
.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #333333); /* Default text color */
  background-color: var(--bg-color, #F5F7FA); /* Default background color from shared */
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__hero-section {
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  background-color: #ffffff; /* Explicit light background for this section */
  color: var(--text-main, #333333);
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 16px;
  gap: 40px;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #E53935; /* Brand color for title */
  max-width: 700px; /* Limit title width */
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__btn-primary,
.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
}

/* Content Section */
.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__content-section {
  padding: 60px 0;
  background-color: #ffffff; /* Explicit light background for content */
  color: var(--text-main, #333333);
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__content-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__section-title {
  font-size: clamp(1.8em, 2.5vw, 2.2em);
  font-weight: 700;
  color: #E53935;
  margin-bottom: 25px;
  margin-top: 40px;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__subsection-title {
  font-size: clamp(1.4em, 2vw, 1.8em);
  font-weight: 600;
  color: #FF5A4F;
  margin-bottom: 20px;
  margin-top: 30px;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua p {
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #555555;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #555555;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__list li {
  margin-bottom: 0.5em;
  font-size: 1.05em;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* CTA Banner within content */
.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__cta-banner {
  background-color: #E53935;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 50px 0;
  color: #ffffff;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__cta-banner-title {
  font-size: clamp(1.8em, 2.5vw, 2.5em);
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__cta-banner-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-section {
  padding: 60px 0;
  background-color: var(--bg-color, #F5F7FA); /* Use default background */
  color: var(--text-main, #333333);
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-list {
  margin-top: 30px;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #333333;
  list-style: none; /* For details/summary */
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-item summary {
  list-style: none;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #E53935;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-item[open] .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-toggle {
  content: "−";
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #555555;
}

/* Images in content area - ensures min size and no filter */
.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua img {
  filter: none; /* Ensure no filter is applied */
  -webkit-filter: none;
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Hero Section */
  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__hero-section {
    padding-top: 10px !important; /* Small top padding, important for mobile */
    padding-bottom: 40px;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__hero-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 30px;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__hero-content {
    order: 2; /* Content below image on mobile */
    min-width: unset;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__hero-image {
    order: 1; /* Image above content on mobile */
    width: 100%;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__main-title {
    font-size: 2em; /* Adjust for mobile */
    margin-bottom: 15px;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__cta-buttons {
    flex-direction: column; /* Buttons stack vertically */
    gap: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__btn-primary,
  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Content Section */
  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__content-section {
    padding: 30px 0;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__content-container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__section-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__subsection-title {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua p,
  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__list li {
    font-size: 0.95em;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  /* CTA Banner */
  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__cta-banner {
    padding: 30px 20px;
    margin: 30px 0;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__cta-banner-title {
    font-size: 1.5em;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__cta-banner-description {
    font-size: 1em;
  }

  /* FAQ Section */
  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-section {
    padding: 30px 0;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  /* Universal image and container rules for mobile */
  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__section,
  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__card,
  .page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Contrast fix if needed, though explicit backgrounds are used */
.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-phan-tich-ty-le-keo-chuan-hieu-qua__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}