/* style/blog-how-to-access-lvs788.css */

/* Base styles for the page content, assuming body background is light (white or similar) */
.page-blog-how-to-access-lvs788 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light background */
  background-color: var(--background-color, #ffffff); /* Fallback to white if var not set */
}

/* Ensure images maintain aspect ratio and are responsive */
.page-blog-how-to-access-lvs788 img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevents extra space below image */
  border-radius: 8px; /* Soften edges */
  object-fit: cover; /* Ensures image covers area without distortion */
  transition: transform 0.3s ease;
}

.page-blog-how-to-access-lvs788 img:hover {
  transform: scale(1.02);
}

/* Hero Section */
.page-blog-how-to-access-lvs788__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #26A9E0; /* Brand color for hero background */
  color: #ffffff; /* White text for dark background */
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-how-to-access-lvs788__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; /* Space between image and content */
}

.page-blog-how-to-access-lvs788__hero-image {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  max-height: 500px; /* Limit height for aesthetic */
  object-fit: cover; /* Cover the area */
}

.page-blog-how-to-access-lvs788__hero-content {
  position: relative; /* Ensure content is above image but not overlapping */
  z-index: 1;
  max-width: 900px;
  margin-top: 20px; /* Space between image and text */
}

.page-blog-how-to-access-lvs788__main-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 100%; /* Ensure title fits */
  color: #ffffff;
}

.page-blog-how-to-access-lvs788__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

/* General Content Area */
.page-blog-how-to-access-lvs788__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* White background for content */
  color: #333333; /* Dark text */
}

.page-blog-how-to-access-lvs788__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-access-lvs788__section-title {
  font-size: 2em;
  font-weight: bold;
  color: #26A9E0; /* Brand color for main titles */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-how-to-access-lvs788__sub-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-how-to-access-lvs788__paragraph {
  margin-bottom: 15px;
}

.page-blog-how-to-access-lvs788__content-image {
  margin: 30px auto;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-blog-how-to-access-lvs788__link {
  color: #26A9E0; /* Brand color for links */
  text-decoration: underline;
}

.page-blog-how-to-access-lvs788__link:hover {
  text-decoration: none;
  color: #EA7C07; /* Login color on hover */
}

/* CTA Buttons */
.page-blog-how-to-access-lvs788__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-how-to-access-lvs788__btn-primary,
.page-blog-how-to-access-lvs788__btn-secondary,
.page-blog-how-to-access-lvs788__btn-inline {
  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, border-color 0.3s ease;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  text-align: center;
}

.page-blog-how-to-access-lvs788__btn-primary {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-access-lvs788__btn-primary:hover {
  background-color: #1a8ecb; /* Slightly darker blue */
  border-color: #1a8ecb;
}

.page-blog-how-to-access-lvs788__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-access-lvs788__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a8ecb;
  border-color: #1a8ecb;
}

.page-blog-how-to-access-lvs788__btn-inline {
  background-color: #EA7C07; /* Login color for inline buttons */
  color: #ffffff;
  border: 2px solid #EA7C07;
  margin-top: 10px;
}

.page-blog-how-to-access-lvs788__btn-inline:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

/* CTA Section at the bottom */
.page-blog-how-to-access-lvs788__cta-section {
  padding: 60px 20px;
  background-color: #26A9E0; /* Brand color */
  color: #ffffff;
  text-align: center;
}

.page-blog-how-to-access-lvs788__cta-section .page-blog-how-to-access-lvs788__section-title {
  color: #ffffff; /* White title on dark background */
}

.page-blog-how-to-access-lvs788__cta-section .page-blog-how-to-access-lvs788__paragraph {
  color: #ffffff;
}

/* FAQ Section */
.page-blog-how-to-access-lvs788__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-access-lvs788__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden; /* For smooth transition if using max-height */
}

.page-blog-how-to-access-lvs788__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-access-lvs788__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-how-to-access-lvs788__faq-item summary {
  list-style: none; /* Hide default marker for Firefox */
}

.page-blog-how-to-access-lvs788__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-blog-how-to-access-lvs788__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-how-to-access-lvs788__faq-item[open] .page-blog-how-to-access-lvs788__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or similar */
}

.page-blog-how-to-access-lvs788__faq-answer {
  padding: 15px 25px;
  color: #555555;
  background-color: #fcfcfc;
  border-top: none;
}

/* Keyword highlighting */
.page-blog-how-to-access-lvs788 .keyword {
  font-weight: bold;
  color: #26A9E0; /* Highlight keywords with brand color */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-how-to-access-lvs788 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-access-lvs788__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset, this is extra decorative padding */
  }

  .page-blog-how-to-access-lvs788__main-title {
    font-size: 2em;
  }

  .page-blog-how-to-access-lvs788__description {
    font-size: 1em;
  }

  .page-blog-how-to-access-lvs788__content-area,
  .page-blog-how-to-access-lvs788__cta-section {
    padding: 30px 15px;
  }

  .page-blog-how-to-access-lvs788__section-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-access-lvs788__sub-title {
    font-size: 1.3em;
  }

  /* Images responsiveness */
  .page-blog-how-to-access-lvs788 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Containers holding images or other content */
  .page-blog-how-to-access-lvs788__section,
  .page-blog-how-to-access-lvs788__card,
  .page-blog-how-to-access-lvs788__container,
  .page-blog-how-to-access-lvs788__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Button responsiveness */
  .page-blog-how-to-access-lvs788__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-blog-how-to-access-lvs788__btn-primary,
  .page-blog-how-to-access-lvs788__btn-secondary,
  .page-blog-how-to-access-lvs788__btn-inline,
  .page-blog-how-to-access-lvs788 a[class*="button"],
  .page-blog-how-to-access-lvs788 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; /* Add some internal padding */
    padding-right: 15px; /* Add some internal padding */
  }

  /* FAQ responsiveness */
  .page-blog-how-to-access-lvs788__faq-question {
    padding: 15px 20px;
  }

  .page-blog-how-to-access-lvs788__faq-answer {
    padding: 10px 20px;
  }
}

/* Desktop specific styles for video container width (if any video was present) */
.page-blog-how-to-access-lvs788__video-container {
  width: 100%; /* Ensure desktop width is 100% before max-width */
  max-width: 1200px; /* Example max width */
}

/* Color contrast enforcement (already applied via element styles, but explicit for clarity) */
.page-blog-how-to-access-lvs788__dark-bg {
  background-color: #26A9E0; /* Example dark background */
  color: #ffffff; /* White text */
}

.page-blog-how-to-access-lvs788__light-bg {
  background-color: #ffffff; /* Example light background */
  color: #333333; /* Dark text */
}