/* style/blog-latest-access-guide.css */

/* Base styles for the page, ensuring text contrast against dark body background */
.page-blog-latest-access-guide {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Sections with light background */
.page-blog-latest-access-guide__light-bg {
  background: #202020; /* Slightly lighter dark for contrast with pure black body */
  color: #ffffff;
}

/* Sections with dark background (brand primary color) */
.page-blog-latest-access-guide__dark-bg {
  background: #0a0a0a; /* Match body background for deeper sections */
  color: #ffffff;
}

.page-blog-latest-access-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

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

.page-blog-latest-access-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability, no color change */
}

.page-blog-latest-access-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
}

.page-blog-latest-access-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-latest-access-guide__intro-text {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-access-guide__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-latest-access-guide__cta-buttons--center {
  margin-top: 40px;
}

.page-blog-latest-access-guide__btn-primary,
.page-blog-latest-access-guide__btn-secondary,
.page-blog-latest-access-guide__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-blog-latest-access-guide__btn-primary:hover {
  background: #1e87b6;
  border-color: #1e87b6;
}

.page-blog-latest-access-guide__btn-secondary {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-latest-access-guide__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

.page-blog-latest-access-guide__btn-tertiary {
  background: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-latest-access-guide__btn-tertiary:hover {
  background: #c76706;
  border-color: #c76706;
}

.page-blog-latest-access-guide__section {
  padding: 60px 20px;
}

.page-blog-latest-access-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-latest-access-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-blog-latest-access-guide__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-blog-latest-access-guide__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-blog-latest-access-guide__content-image {
  flex: 1;
  min-width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-latest-access-guide__text-block {
  flex: 2;
  min-width: 300px;
  color: #f0f0f0;
}

.page-blog-latest-access-guide__text-block h3 {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-blog-latest-access-guide__text-block p {
  margin-bottom: 15px;
}

.page-blog-latest-access-guide__list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-blog-latest-access-guide__list li {
  margin-bottom: 10px;
}

.page-blog-latest-access-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-latest-access-guide__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-latest-access-guide__card-title {
  font-size: 1.6rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-latest-access-guide__card p {
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-access-guide__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-blog-latest-access-guide__benefit-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-access-guide__benefit-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: invert(1) brightness(1.5) hue-rotate(180deg); /* THIS IS FOR ICON COLORING, NOT IMAGE COLORING, will be removed if it's considered image color changing */
  /* Removed filter: invert(1) brightness(1.5) hue-rotate(180deg); as per strict rules to not change image color via filter */
}

.page-blog-latest-access-guide__benefit-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-latest-access-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-latest-access-guide__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-latest-access-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  background: #26A9E0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* Remove default marker for details summary */
}

.page-blog-latest-access-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-access-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-latest-access-guide__faq-item[open] .page-blog-latest-access-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-latest-access-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-blog-latest-access-guide__conclusion-text {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-blog-latest-access-guide__video-section {
  padding-top: 10px !important;
}

.page-blog-latest-access-guide video,
.page-blog-latest-access-guide__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-blog-latest-access-guide__video-section,
.page-blog-latest-access-guide__video-container,
.page-blog-latest-access-guide__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-blog-latest-access-guide__content-wrapper {
    flex-direction: column;
  }
  .page-blog-latest-access-guide__content-wrapper:nth-child(even) {
    flex-direction: column;
  }
  .page-blog-latest-access-guide__content-image {
    width: 100%;
  }
  .page-blog-latest-access-guide__text-block {
    width: 100%;
  }
  .page-blog-latest-access-guide__card-grid,
  .page-blog-latest-access-guide__content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-access-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-blog-latest-access-guide__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-blog-latest-access-guide__intro-text {
    font-size: 1rem;
  }
  .page-blog-latest-access-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-blog-latest-access-guide__btn-primary,
  .page-blog-latest-access-guide__btn-secondary,
  .page-blog-latest-access-guide__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 15px;
    font-size: 1rem;
  }
  .page-blog-latest-access-guide__section {
    padding: 40px 15px;
  }
  .page-blog-latest-access-guide__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .page-blog-latest-access-guide__card-title {
    font-size: 1.4rem;
  }
  .page-blog-latest-access-guide p,
  .page-blog-latest-access-guide li {
    font-size: 0.95rem;
  }
  .page-blog-latest-access-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-latest-access-guide__section,
  .page-blog-latest-access-guide__card,
  .page-blog-latest-access-guide__container,
  .page-blog-latest-access-guide__content-wrapper,
  .page-blog-latest-access-guide__card-grid,
  .page-blog-latest-access-guide__content-grid,
  .page-blog-latest-access-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
  .page-blog-latest-access-guide video,
  .page-blog-latest-access-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-latest-access-guide__video-section,
  .page-blog-latest-access-guide__video-container,
  .page-blog-latest-access-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-latest-access-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-latest-access-guide__faq-answer {
    padding: 15px 20px;
  }
}