/* style/blog-lc79b-beginner-guide.css */

/* Base styles for the page */
.page-blog-lc79b-beginner-guide {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Body background from shared.css */
}

.page-blog-lc79b-beginner-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-blog-lc79b-beginner-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.page-blog-lc79b-beginner-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-blog-lc79b-beginner-guide__hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin-top: -200px; /* Adjust to overlap image slightly for visual appeal, but text is below */
  padding: 0 20px;
  z-index: 1;
  color: #ffffff;
}

.page-blog-lc79b-beginner-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-lc79b-beginner-guide__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-blog-lc79b-beginner-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-lc79b-beginner-guide__btn-primary,
.page-blog-lc79b-beginner-guide__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-blog-lc79b-beginner-guide__btn-primary:hover {
  background-color: #1e87b7;
  transform: translateY(-2px);
}

.page-blog-lc79b-beginner-guide__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-blog-lc79b-beginner-guide__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-blog-lc79b-beginner-guide__section {
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark body */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-blog-lc79b-beginner-guide__section:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
}

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

.page-blog-lc79b-beginner-guide__section-title {
  font-size: 2.2rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-lc79b-beginner-guide__sub-title {
  font-size: 1.6rem;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-lc79b-beginner-guide__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-lc79b-beginner-guide__list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-lc79b-beginner-guide__list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog-lc79b-beginner-guide__list ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.page-blog-lc79b-beginner-guide__list li strong {
  color: #26A9E0;
}

.page-blog-lc79b-beginner-guide__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  max-width: 800px;
}

.page-blog-lc79b-beginner-guide__cta-container {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-blog-lc79b-beginner-guide__faq-section {
  background-color: rgba(38, 169, 224, 0.1);
}

.page-blog-lc79b-beginner-guide__faq-list {
  margin-top: 30px;
}

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

.page-blog-lc79b-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-blog-lc79b-beginner-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-lc79b-beginner-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-blog-lc79b-beginner-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-lc79b-beginner-guide__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-lc79b-beginner-guide__faq-answer {
  padding: 15px 25px;
  font-size: 1rem;
  color: #f0f0f0;
}

.page-blog-lc79b-beginner-guide__faq-answer p {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-lc79b-beginner-guide__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

/* Specific color for login related buttons if needed */
.page-blog-lc79b-beginner-guide__login-btn {
  background-color: #EA7C07;
  border-color: #EA7C07;
  color: #ffffff;
}

.page-blog-lc79b-beginner-guide__login-btn:hover {
  background-color: #c96700;
  border-color: #c96700;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-lc79b-beginner-guide__hero-content {
    margin-top: -150px;
  }
  .page-blog-lc79b-beginner-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-lc79b-beginner-guide__section-title {
    font-size: 2rem;
  }
  .page-blog-lc79b-beginner-guide__sub-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-blog-lc79b-beginner-guide__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-lc79b-beginner-guide__hero-content {
    margin-top: -100px;
    padding: 0 15px;
  }
  .page-blog-lc79b-beginner-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-blog-lc79b-beginner-guide__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-blog-lc79b-beginner-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-blog-lc79b-beginner-guide__btn-primary,
  .page-blog-lc79b-beginner-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-lc79b-beginner-guide__section {
    padding: 40px 15px;
    margin-bottom: 15px;
  }
  .page-blog-lc79b-beginner-guide__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-blog-lc79b-beginner-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-lc79b-beginner-guide__sub-title {
    font-size: 1.3rem;
  }
  .page-blog-lc79b-beginner-guide__text-block,
  .page-blog-lc79b-beginner-guide__list li,
  .page-blog-lc79b-beginner-guide__faq-answer p {
    font-size: 0.95rem;
  }
  .page-blog-lc79b-beginner-guide__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-blog-lc79b-beginner-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-lc79b-beginner-guide__faq-answer {
    padding: 10px 20px;
  }

  /* Ensure all img tags are responsive on mobile */
  .page-blog-lc79b-beginner-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-lc79b-beginner-guide__section,
  .page-blog-lc79b-beginner-guide__card,
  .page-blog-lc79b-beginner-guide__container,
  .page-blog-lc79b-beginner-guide__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-lc79b-beginner-guide__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-blog-lc79b-beginner-guide__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-blog-lc79b-beginner-guide__hero-content {
    margin-top: -80px;
  }
  .page-blog-lc79b-beginner-guide__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-blog-lc79b-beginner-guide__section-title {
    font-size: 1.6rem;
  }
  .page-blog-lc79b-beginner-guide__sub-title {
    font-size: 1.2rem;
  }
  .page-blog-lc79b-beginner-guide__faq-question {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
  .page-blog-lc79b-beginner-guide__faq-answer {
    padding: 8px 15px;
  }
  .page-blog-lc79b-beginner-guide__section {
    padding: 30px 10px;
  }
}