/* style/blog-la68-troubleshooting.css */

/* Custom Colors */
:root {
  --la68-primary-color: #11A84E;
  --la68-secondary-color: #22C768;
  --la68-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --la68-card-bg: #11271B;
  --la68-background: #08160F;
  --la68-text-main: #F2FFF6;
  --la68-text-secondary: #A7D9B8;
  --la68-border-color: #2E7A4E;
  --la68-glow-color: #57E38D;
  --la68-gold-color: #F2C14E;
  --la68-divider-color: #1E3A2A;
  --la68-deep-green: #0A4B2C;
}

/* Base styles for the page content, assuming body background is dark from shared.css */
.page-blog-la68-troubleshooting {
  color: var(--la68-text-main); /* Light text on dark background */
  background-color: var(--la68-background);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-la68-troubleshooting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-la68-troubleshooting__section-title {
  font-size: 2.5em;
  color: var(--la68-gold-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-la68-troubleshooting__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--la68-text-main);
  text-align: justify;
}

.page-blog-la68-troubleshooting__text-link {
  color: var(--la68-text-secondary);
  text-decoration: underline;
}

.page-blog-la68-troubleshooting__text-link:hover {
  color: var(--la68-glow-color);
}

/* Hero Section */
.page-blog-la68-troubleshooting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--la68-deep-green);
  overflow: hidden;
}

.page-blog-la68-troubleshooting__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.page-blog-la68-troubleshooting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-la68-troubleshooting__hero-content {
  text-align: center;
  max-width: 900px;
}

.page-blog-la68-troubleshooting__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  color: var(--la68-gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-la68-troubleshooting__hero-description {
  font-size: 1.2em;
  color: var(--la68-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-la68-troubleshooting__cta-button {
  display: inline-block;
  background: var(--la68-button-gradient);
  color: var(--la68-text-main);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.page-blog-la68-troubleshooting__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--la68-glow-color);
}

.page-blog-la68-troubleshooting__cta-button--secondary {
  background: none;
  border: 2px solid var(--la68-primary-color);
  color: var(--la68-primary-color);
}

.page-blog-la68-troubleshooting__cta-button--secondary:hover {
  background: var(--la68-primary-color);
  color: var(--la68-text-main);
  border-color: var(--la68-primary-color);
}

/* General Section Styles */
.page-blog-la68-troubleshooting__intro-section,
.page-blog-la68-troubleshooting__common-issues-section,
.page-blog-la68-troubleshooting__guide-section,
.page-blog-la68-troubleshooting__security-section,
.page-blog-la68-troubleshooting__support-section,
.page-blog-la68-troubleshooting__faq-section,
.page-blog-la68-troubleshooting__cta-section {
  padding: 60px 0;
}

.page-blog-la68-troubleshooting__common-issues-section,
.page-blog-la68-troubleshooting__security-section,
.page-blog-la68-troubleshooting__faq-section {
  background-color: var(--la68-deep-green);
}

.page-blog-la68-troubleshooting__dark-section {
  background-color: var(--la68-deep-green);
  color: var(--la68-text-main);
}

.page-blog-la68-troubleshooting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-la68-troubleshooting__card {
  background-color: var(--la68-card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--la68-border-color);
  color: var(--la68-text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-la68-troubleshooting__card-title {
  font-size: 1.4em;
  color: var(--la68-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-la68-troubleshooting__card-text {
  font-size: 1em;
  color: var(--la68-text-secondary);
}

.page-blog-la68-troubleshooting__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-la68-troubleshooting__solution-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-blog-la68-troubleshooting__solution-item {
  background-color: var(--la68-card-bg);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--la68-border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-la68-troubleshooting__solution-title {
  font-size: 1.5em;
  color: var(--la68-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-la68-troubleshooting__solution-text {
  font-size: 1em;
  color: var(--la68-text-secondary);
}

.page-blog-la68-troubleshooting__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* FAQ Section */
.page-blog-la68-troubleshooting__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-la68-troubleshooting__faq-item {
  background-color: var(--la68-card-bg);
  border: 1px solid var(--la68-border-color);
  border-radius: 10px;
  overflow: hidden;
  color: var(--la68-text-main);
}

.page-blog-la68-troubleshooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--la68-gold-color);
  cursor: pointer;
  background-color: var(--la68-deep-green);
  border-bottom: 1px solid var(--la68-divider-color);
}

.page-blog-la68-troubleshooting__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-la68-troubleshooting__faq-question::marker {
  display: none;
}

.page-blog-la68-troubleshooting__faq-qtext {
  flex-grow: 1;
}

.page-blog-la68-troubleshooting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--la68-glow-color);
}

.page-blog-la68-troubleshooting__faq-item[open] .page-blog-la68-troubleshooting__faq-toggle {
  content: '−';
}

.page-blog-la68-troubleshooting__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: var(--la68-text-secondary);
  border-top: 1px solid var(--la68-divider-color);
}

.page-blog-la68-troubleshooting__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-la68-troubleshooting__hero-content {
    padding: 0 15px;
  }
  .page-blog-la68-troubleshooting__section-title {
    font-size: 2em;
  }
  .page-blog-la68-troubleshooting__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }
}

@media (max-width: 768px) {
  .page-blog-la68-troubleshooting {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-la68-troubleshooting__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-la68-troubleshooting__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }
  .page-blog-la68-troubleshooting__hero-description {
    font-size: 1.1em;
  }
  .page-blog-la68-troubleshooting__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-la68-troubleshooting__button-group {
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-la68-troubleshooting__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-la68-troubleshooting__card {
    padding: 20px;
  }
  .page-blog-la68-troubleshooting__section-title {
    font-size: 1.8em;
  }
  .page-blog-la68-troubleshooting__solution-title {
    font-size: 1.3em;
  }
  .page-blog-la68-troubleshooting__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  /* Mobile image responsiveness */
  .page-blog-la68-troubleshooting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-la68-troubleshooting__hero-image-wrapper,
  .page-blog-la68-troubleshooting__container,
  .page-blog-la68-troubleshooting__grid,
  .page-blog-la68-troubleshooting__card,
  .page-blog-la68-troubleshooting__solution-item,
  .page-blog-la68-troubleshooting__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-la68-troubleshooting__image {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-blog-la68-troubleshooting__section-title {
    font-size: 1.5em;
  }
  .page-blog-la68-troubleshooting__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-la68-troubleshooting__hero-description {
    font-size: 1em;
  }
  .page-blog-la68-troubleshooting__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-blog-la68-troubleshooting__faq-question {
    font-size: 1em;
  }
}