/* style/blog-mb661-new-link-guide.css */
/* body đã padding-top: var(--header-offset) từ shared.css, không lặp lại tại đây. */
.page-blog-mb661-new-link-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: #0a0a0a; /* Ensure consistency with body background type */
}

.page-blog-mb661-new-link-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-mb661-new-link-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, not var(--header-offset) */
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-mb661-new-link-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-blog-mb661-new-link-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-mb661-new-link-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text on image */
  border-radius: 8px;
  margin-top: 150px; /* Push content down to avoid overlapping the top of the image */
}

.page-blog-mb661-new-link-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Use clamp for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-blog-mb661-new-link-guide__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-mb661-new-link-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-mb661-new-link-guide__btn-primary,
.page-blog-mb661-new-link-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-mb661-new-link-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-mb661-new-link-guide__btn-primary:hover {
  background-color: #1a7bb7;
  border-color: #1a7bb7;
}

.page-blog-mb661-new-link-guide__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-blog-mb661-new-link-guide__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-blog-mb661-new-link-guide__content-section {
  padding: 60px 0;
}

.page-blog-mb661-new-link-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-mb661-new-link-guide__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-blog-mb661-new-link-guide__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-mb661-new-link-guide__sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: inherit;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-mb661-new-link-guide__paragraph {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: inherit;
}

.page-blog-mb661-new-link-guide__highlight {
  color: #26A9E0; /* Highlight color */
  font-weight: 700;
}

.page-blog-mb661-new-link-guide__text-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-mb661-new-link-guide__text-link:hover {
  text-decoration: underline;
}

.page-blog-mb661-new-link-guide__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-mb661-new-link-guide__ordered-list {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-mb661-new-link-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog-mb661-new-link-guide__image-section {
  padding: 40px 0;
  background-color: #1a1a1a; /* Darker background for image sections */
  text-align: center;
}

.page-blog-mb661-new-link-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center the image */
}

.page-blog-mb661-new-link-guide__cta-banner {
  padding: 80px 0;
  text-align: center;
}

.page-blog-mb661-new-link-guide__banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.page-blog-mb661-new-link-guide__banner-text {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-mb661-new-link-guide__faq-section {
  padding: 60px 0;
}

.page-blog-mb661-new-link-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly visible on dark background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-mb661-new-link-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly darker for summary */
  transition: background-color 0.3s ease;
  list-style: none; /* For details tag */
}

.page-blog-mb661-new-link-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-mb661-new-link-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-mb661-new-link-guide__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: #26A9E0;
  line-height: 1;
}

.page-blog-mb661-new-link-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05rem;
  color: #f0f0f0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-mb661-new-link-guide__faq-item[open] .page-blog-mb661-new-link-guide__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 15px;
}

.page-blog-mb661-new-link-guide__final-cta {
  padding: 80px 0;
  text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-mb661-new-link-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-mb661-new-link-guide__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-mb661-new-link-guide__hero-section {
    padding: 10px 0 40px 0; /* Adjust padding for mobile */
  }

  .page-blog-mb661-new-link-guide__hero-content {
    margin-top: 100px; /* Adjust margin for mobile */
    padding: 15px;
  }

  .page-blog-mb661-new-link-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem); /* Smaller H1 on mobile */
    margin-bottom: 15px;
  }

  .page-blog-mb661-new-link-guide__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-mb661-new-link-guide__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-blog-mb661-new-link-guide__btn-primary,
  .page-blog-mb661-new-link-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-mb661-new-link-guide__content-section,
  .page-blog-mb661-new-link-guide__image-section,
  .page-blog-mb661-new-link-guide__cta-banner,
  .page-blog-mb661-new-link-guide__faq-section,
  .page-blog-mb661-new-link-guide__final-cta {
    padding: 40px 0;
  }

  .page-blog-mb661-new-link-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-mb661-new-link-guide__sub-title {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-blog-mb661-new-link-guide__paragraph,
  .page-blog-mb661-new-link-guide__list-item {
    font-size: 0.95rem;
  }

  .page-blog-mb661-new-link-guide__content-image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-mb661-new-link-guide__banner-title {
    font-size: 2rem;
  }

  .page-blog-mb661-new-link-guide__banner-text {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  .page-blog-mb661-new-link-guide__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-mb661-new-link-guide__faq-answer {
    padding: 0 20px 15px;
  }

  /* Ensure all images within the content area are responsive */
  .page-blog-mb661-new-link-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
}