/* style/blog-troubleshooting-ok36538-login.css */

/* Base styles for the page content, assuming body background is dark from shared.css */
.page-blog-troubleshooting-ok36538-login {
  color: var(--text-main); /* Using Text Main: #F2FFF6 */
  background-color: var(--background); /* Using Background: #08160F */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-troubleshooting-ok36538-login__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-blog-troubleshooting-ok36538-login__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height to prevent image from being too tall */
  overflow: hidden;
}

.page-blog-troubleshooting-ok36538-login__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-troubleshooting-ok36538-login__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
}

.page-blog-troubleshooting-ok36538-login__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-troubleshooting-ok36538-login__description {
  font-size: 1.1em;
  color: var(--text-secondary); /* Using Text Secondary: #A7D9B8 */
  margin-bottom: 30px;
}

.page-blog-troubleshooting-ok36538-login__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-troubleshooting-ok36538-login__btn-primary,
.page-blog-troubleshooting-ok36538-login__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-troubleshooting-ok36538-login__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Using Button color */
  color: var(--text-main); /* White text on dark button */
  border: 2px solid transparent;
}

.page-blog-troubleshooting-ok36538-login__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-troubleshooting-ok36538-login__btn-secondary {
  background: transparent;
  color: var(--main-color); /* Using Main color: #11A84E */
  border: 2px solid var(--border-color); /* Using Border: #2E7A4E */
}

.page-blog-troubleshooting-ok36538-login__btn-secondary:hover {
  background-color: rgba(var(--main-color-rgb), 0.1);
  transform: translateY(-2px);
}

/* Content Area */
.page-blog-troubleshooting-ok36538-login__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-troubleshooting-ok36538-login__section-title {
  font-size: 2.2em;
  color: var(--text-main);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-troubleshooting-ok36538-login__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--glow-color); /* Using Glow: #57E38D */
  border-radius: 2px;
}

.page-blog-troubleshooting-ok36538-login__text-block {
  font-size: 1.05em;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

/* Grid Container for Cards */
.page-blog-troubleshooting-ok36538-login__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-troubleshooting-ok36538-login__card {
  background-color: var(--card-bg); /* Using Card BG: #11271B */
  border: 1px solid var(--border-color); /* Using Border: #2E7A4E */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-main);
}

.page-blog-troubleshooting-ok36538-login__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-troubleshooting-ok36538-login__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-troubleshooting-ok36538-login__card-title {
  font-size: 1.4em;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-troubleshooting-ok36538-login__card-text {
  font-size: 0.95em;
  color: var(--text-secondary);
}

/* Steps Container */
.page-blog-troubleshooting-ok36538-login__steps-container {
  margin-top: 40px;
}

.page-blog-troubleshooting-ok36538-login__step-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--text-main);
}

.page-blog-troubleshooting-ok36538-login__step-title {
  font-size: 1.8em;
  color: var(--gold-color); /* Using Gold: #F2C14E */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-blog-troubleshooting-ok36538-login__step-item p {
  color: var(--text-secondary);
  font-size: 1.05em;
}

.page-blog-troubleshooting-ok36538-login__step-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 15px;
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-blog-troubleshooting-ok36538-login__faq-list {
  margin-top: 40px;
}

.page-blog-troubleshooting-ok36538-login__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-troubleshooting-ok36538-login__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main);
  transition: background-color 0.3s ease;
}

.page-blog-troubleshooting-ok36538-login__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-troubleshooting-ok36538-login__faq-item summary:hover {
  background-color: var(--deep-green); /* Using Deep Green: #0A4B2C */
}

.page-blog-troubleshooting-ok36538-login__faq-qtext {
  flex-grow: 1;
}

.page-blog-troubleshooting-ok36538-login__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color); /* Using Glow: #57E38D */
}

.page-blog-troubleshooting-ok36538-login__faq-item[open] .page-blog-troubleshooting-ok36538-login__faq-toggle {
  content: '−';
}

.page-blog-troubleshooting-ok36538-login__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--text-secondary);
  border-top: 1px solid var(--divider-color); /* Using Divider: #1E3A2A */
}

/* Tips Section */
.page-blog-troubleshooting-ok36538-login__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-troubleshooting-ok36538-login__tip-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-main);
}

.page-blog-troubleshooting-ok36538-login__tip-title {
  font-size: 1.3em;
  color: var(--glow-color); /* Using Glow: #57E38D */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-troubleshooting-ok36538-login__tip-item p {
  font-size: 0.95em;
  color: var(--text-secondary);
}

.page-blog-troubleshooting-ok36538-login__cta-buttons--bottom {
  margin-top: 60px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-troubleshooting-ok36538-login__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

  .page-blog-troubleshooting-ok36538-login__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-troubleshooting-ok36538-login__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-troubleshooting-ok36538-login__hero-content {
    margin-top: 20px;
  }

  .page-blog-troubleshooting-ok36538-login__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-troubleshooting-ok36538-login__description {
    font-size: 1em;
  }

  .page-blog-troubleshooting-ok36538-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-troubleshooting-ok36538-login__btn-primary,
  .page-blog-troubleshooting-ok36538-login__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-blog-troubleshooting-ok36538-login__content-area {
    padding: 40px 15px;
  }

  .page-blog-troubleshooting-ok36538-login__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-blog-troubleshooting-ok36538-login__text-block,
  .page-blog-troubleshooting-ok36538-login__card-text,
  .page-blog-troubleshooting-ok36538-login__step-item p,
  .page-blog-troubleshooting-ok36538-login__faq-answer p,
  .page-blog-troubleshooting-ok36538-login__tip-item p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Images responsive */
  .page-blog-troubleshooting-ok36538-login img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Containers responsive */
  .page-blog-troubleshooting-ok36538-login__hero-section,
  .page-blog-troubleshooting-ok36538-login__content-area,
  .page-blog-troubleshooting-ok36538-login__grid-container,
  .page-blog-troubleshooting-ok36538-login__card,
  .page-blog-troubleshooting-ok36538-login__step-item,
  .page-blog-troubleshooting-ok36538-login__faq-item,
  .page-blog-troubleshooting-ok36538-login__tip-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-troubleshooting-ok36538-login__card-image,
  .page-blog-troubleshooting-ok36538-login__step-image {
    height: auto; /* Allow height to adjust for smaller screens */
    min-height: 200px; /* Maintain minimum height */
  }

  .page-blog-troubleshooting-ok36538-login__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-troubleshooting-ok36538-login__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-blog-troubleshooting-ok36538-login__tips-list {
    grid-template-columns: 1fr;
  }
}

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