/* style/blog-mu99-new-link-guide-2024.css */
.page-blog-mu99-new-link-guide-2024 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body handles background color */
}

.page-blog-mu99-new-link-guide-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-mu99-new-link-guide-2024__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  min-height: 500px;
  text-align: center;
  overflow: hidden;
}

.page-blog-mu99-new-link-guide-2024__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-blog-mu99-new-link-guide-2024__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-mu99-new-link-guide-2024__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  margin-top: 200px; /* Push content down over the image */
}

.page-blog-mu99-new-link-guide-2024__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  max-width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-mu99-new-link-guide-2024__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-mu99-new-link-guide-2024__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-mu99-new-link-guide-2024__btn-primary,
.page-blog-mu99-new-link-guide-2024__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-mu99-new-link-guide-2024__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-blog-mu99-new-link-guide-2024__btn-primary:hover {
  background-color: #1a7fb3;
  border-color: #1a7fb3;
}

.page-blog-mu99-new-link-guide-2024__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-mu99-new-link-guide-2024__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #1a7fb3;
  border-color: #1a7fb3;
}

/* Content Sections */
.page-blog-mu99-new-link-guide-2024__content-section {
  padding: 60px 0;
}

.page-blog-mu99-new-link-guide-2024__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter than body for contrast */
  color: #ffffff;
}

.page-blog-mu99-new-link-guide-2024__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-mu99-new-link-guide-2024__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-mu99-new-link-guide-2024__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: inherit;
}

.page-blog-mu99-new-link-guide-2024__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

.page-blog-mu99-new-link-guide-2024__text-center {
  text-align: center;
}

.page-blog-mu99-new-link-guide-2024__list,
.page-blog-mu99-new-link-guide-2024__numbered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-mu99-new-link-guide-2024__numbered-list {
  list-style-type: decimal;
}

.page-blog-mu99-new-link-guide-2024__list-item {
  margin-bottom: 10px;
  color: inherit;
}

.page-blog-mu99-new-link-guide-2024__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

/* Video Section */
.page-blog-mu99-new-link-guide-2024__video-section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-mu99-new-link-guide-2024__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto;
  border-radius: 8px;
}

.page-blog-mu99-new-link-guide-2024__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

/* FAQ Section */
.page-blog-mu99-new-link-guide-2024__faq-list {
  margin-top: 30px;
}

.page-blog-mu99-new-link-guide-2024__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly visible on dark background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-mu99-new-link-guide-2024__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #FFFFFF;
  background-color: rgba(38, 169, 224, 0.1);
}

.page-blog-mu99-new-link-guide-2024__faq-item summary::-webkit-details-marker,
.page-blog-mu99-new-link-guide-2024__faq-item summary::marker {
  display: none;
}

.page-blog-mu99-new-link-guide-2024__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-blog-mu99-new-link-guide-2024__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-blog-mu99-new-link-guide-2024__faq-answer p {
  margin-bottom: 0;
}

/* Inline button style */
.page-blog-mu99-new-link-guide-2024__btn-inline {
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-mu99-new-link-guide-2024__main-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-mu99-new-link-guide-2024 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-mu99-new-link-guide-2024__hero-section {
    padding: 10px 0 40px 0;
    min-height: 400px;
  }

  .page-blog-mu99-new-link-guide-2024__hero-content {
    margin-top: 150px;
    padding: 15px;
  }

  .page-blog-mu99-new-link-guide-2024__main-title {
    font-size: 2em;
  }

  .page-blog-mu99-new-link-guide-2024__hero-description {
    font-size: 1em;
  }

  .page-blog-mu99-new-link-guide-2024__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-mu99-new-link-guide-2024__btn-primary,
  .page-blog-mu99-new-link-guide-2024__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-mu99-new-link-guide-2024__content-section,
  .page-blog-mu99-new-link-guide-2024__video-section {
    padding: 40px 0;
  }

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

  .page-blog-mu99-new-link-guide-2024__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-mu99-new-link-guide-2024__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
  }

  .page-blog-mu99-new-link-guide-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-mu99-new-link-guide-2024 video,
  .page-blog-mu99-new-link-guide-2024__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-mu99-new-link-guide-2024__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-mu99-new-link-guide-2024__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-mu99-new-link-guide-2024__faq-answer {
    padding: 0 15px 15px 15px;
  }
}