/* style/blog-getting-started-with-8k8-your-ultimate-guide.css */
/*
  Body background color: #0A0A0A (dark)
  Main text color: #FFF6D6 (light)
  Card background color: #111111 (dark)
  Button gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%)
  Border color: #3A2A12
  Glow color: #FFD36B
*/

.page-blog-getting-started-with-8k8-your-ultimate-guide {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Light text for dark body background */
  line-height: 1.6;
  background-color: #0A0A0A; /* Ensure consistency, though body handles it */
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 60px; /* Space below hero content */
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
  margin-top: 80px; /* Push content down to avoid overlapping the header visually */
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  color: #F2C14E; /* Brand color for title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__intro-text {
  font-size: 1.2rem;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__btn-primary,
.page-blog-getting-started-with-8k8-your-ultimate-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
  border: none;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__btn-secondary {
  background: #111111; /* Card background color */
  color: #F2C14E; /* Brand color for text */
  border: 2px solid #F2C14E;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Consistent dark background */
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__section-title {
  font-size: 2.5rem;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__subsection-title {
  font-size: 1.8rem;
  color: #FFD36B;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide p {
  margin-bottom: 15px;
  color: #FFF6D6;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__image-and-text {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__image-and-text--reversed {
  flex-direction: row-reverse;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__content-image {
  flex: 0 0 50%;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 200px; /* Ensure min size */
  min-height: 200px;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__text-block {
  flex: 1;
}

/* FAQ Section */
.page-blog-getting-started-with-8k8-your-ultimate-guide__faq-list {
  margin-top: 40px;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__faq-item {
  background-color: #111111; /* Card background */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #111111;
  color: #F2C14E; /* Question text color */
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__faq-question:hover {
  background-color: #1a1a1a;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__faq-item.active .page-blog-getting-started-with-8k8-your-ultimate-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #111111; /* Card background */
  color: #FFF6D6; /* Light text color */
}

.page-blog-getting-started-with-8k8-your-ultimate-guide__faq-item.active .page-blog-getting-started-with-8k8-your-ultimate-guide__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-getting-started-with-8k8-your-ultimate-guide__hero-content {
    padding: 30px 15px;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__section-title {
    font-size: 2rem;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__subsection-title {
    font-size: 1.6rem;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__image-and-text {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__content-image {
    max-width: 100%;
    flex: none;
  }
}

@media (max-width: 768px) {
  .page-blog-getting-started-with-8k8-your-ultimate-guide__hero-content {
    margin-top: 40px; /* Adjust for smaller screens */
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__btn-primary,
  .page-blog-getting-started-with-8k8-your-ultimate-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__section,
  .page-blog-getting-started-with-8k8-your-ultimate-guide__container {
    padding: 40px 15px;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__intro-text {
    font-size: 1rem;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__subsection-title {
    font-size: 1.4rem;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide p {
    font-size: 0.95rem;
  }

  /* Mobile image adaptation */
  .page-blog-getting-started-with-8k8-your-ultimate-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__section,
  .page-blog-getting-started-with-8k8-your-ultimate-guide__card,
  .page-blog-getting-started-with-8k8-your-ultimate-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__hero-section {
    padding-top: 10px !important; /* Small top padding */
  }

  .page-blog-getting-started-with-8k8-your-ultimate-guide__faq-answer {
    padding: 0 15px;
  }
  .page-blog-getting-started-with-8k8-your-ultimate-guide__faq-item.active .page-blog-getting-started-with-8k8-your-ultimate-guide__faq-answer {
    padding: 15px 15px;
  }
  .page-blog-getting-started-with-8k8-your-ultimate-guide__faq-question {
    padding: 15px;
  }
}