.page-blog-troubleshooting-49win-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Custom main text color */
}

.page-blog-troubleshooting-49win-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-troubleshooting-49win-login__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-troubleshooting-49win-login__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-blog-troubleshooting-49win-login__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px;
}

.page-blog-troubleshooting-49win-login__hero-content-wrapper {
  width: 100%;
  padding: 40px 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%); /* Gradient to blend with background */
  margin-top: -100px; /* Overlap slightly for visual blend */
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

.page-blog-troubleshooting-49win-login__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.page-blog-troubleshooting-49win-login__intro-text {
  font-size: 1.25rem;
  color: #A7D9B8; /* Custom secondary text color */
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-troubleshooting-49win-login__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

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

.page-blog-troubleshooting-49win-login__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button color */
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-troubleshooting-49win-login__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-blog-troubleshooting-49win-login__btn-secondary {
  background: transparent;
  color: #57E38D; /* Custom glow color */
  border: 2px solid #2E7A4E; /* Custom border color */
}

.page-blog-troubleshooting-49win-login__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: #F2FFF6;
  transform: translateY(-2px);
}

.page-blog-troubleshooting-49win-login__content-section {
  padding: 80px 0;
  background-color: #08160F; /* Default content section background */
  color: #F2FFF6;
}

.page-blog-troubleshooting-49win-login__dark-bg {
  background-color: #0A4B2C; /* Custom Deep Green background for contrast */
  color: #F2FFF6;
}

.page-blog-troubleshooting-49win-login__deep-green-bg {
  background-color: #0A4B2C; /* Custom Deep Green background */
  color: #F2FFF6;
}

.page-blog-troubleshooting-49win-login__card-bg {
  background-color: #11271B; /* Custom Card BG for contrast */
  color: #F2FFF6;
}

.page-blog-troubleshooting-49win-login__section-title {
  font-size: 2.5rem;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-troubleshooting-49win-login__section-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-blog-troubleshooting-49win-login__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-troubleshooting-49win-login__card {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom border color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
}

.page-blog-troubleshooting-49win-login__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-troubleshooting-49win-login__card-title {
  font-size: 1.6rem;
  color: #57E38D; /* Custom glow color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-troubleshooting-49win-login__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-blog-troubleshooting-49win-login__solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-troubleshooting-49win-login__solution-list li {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom border color */
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-blog-troubleshooting-49win-login__solution-list li h3 {
  font-size: 1.8rem;
  color: #F2C14E; /* Custom gold color */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-troubleshooting-49win-login__solution-list li p {
  font-size: 1.1rem;
  color: #A7D9B8;
}

.page-blog-troubleshooting-49win-login__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-blog-troubleshooting-49win-login__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-troubleshooting-49win-login__feature-card {
  background-color: #0A4B2C; /* Deep Green background */
  border: 1px solid #2E7A4E; /* Custom border color */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #F2FFF6;
}

.page-blog-troubleshooting-49win-login__feature-title {
  font-size: 1.5rem;
  color: #57E38D; /* Custom glow color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-troubleshooting-49win-login__cta-section {
  background-color: #08160F; /* Custom background color */
  padding: 100px 0;
  text-align: center;
}

.page-blog-troubleshooting-49win-login__cta-title {
  font-size: 2.8rem;
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-troubleshooting-49win-login__cta-description {
  font-size: 1.2rem;
  color: #A7D9B8;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-blog-troubleshooting-49win-login__faq-section {
  padding: 80px 0;
  background-color: #11271B; /* Custom Card BG */
  color: #F2FFF6;
}

.page-blog-troubleshooting-49win-login__faq-list {
  margin-top: 40px;
}

.page-blog-troubleshooting-49win-login__faq-item {
  background-color: #0A4B2C; /* Deep Green background */
  border: 1px solid #2E7A4E; /* Custom border color */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-troubleshooting-49win-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #F2C14E; /* Custom gold color */
  cursor: pointer;
  list-style: none; /* For details/summary */
}

.page-blog-troubleshooting-49win-login__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-troubleshooting-49win-login__faq-question::marker {
  display: none;
}

.page-blog-troubleshooting-49win-login__faq-toggle {
  font-size: 1.8rem;
  color: #57E38D; /* Custom glow color */
  margin-left: 15px;
}

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

.page-blog-troubleshooting-49win-login__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05rem;
  color: #A7D9B8;
}

.page-blog-troubleshooting-49win-login__related-articles {
  padding: 80px 0;
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6;
}

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

.page-blog-troubleshooting-49win-login__article-card {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom border color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
}

.page-blog-troubleshooting-49win-login__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-troubleshooting-49win-login__article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-blog-troubleshooting-49win-login__article-title {
  font-size: 1.35rem;
  color: #57E38D; /* Custom glow color */
  padding: 15px 20px 10px;
  margin: 0;
  line-height: 1.4;
}

.page-blog-troubleshooting-49win-login__article-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-troubleshooting-49win-login__article-title a:hover {
  text-decoration: underline;
}

.page-blog-troubleshooting-49win-login__article-meta {
  font-size: 0.9rem;
  color: #A7D9B8;
  padding: 0 20px;
  margin-bottom: 10px;
}

.page-blog-troubleshooting-49win-login__article-excerpt {
  font-size: 1rem;
  color: #A7D9B8;
  padding: 0 20px 15px;
}

.page-blog-troubleshooting-49win-login__read-more {
  display: inline-block;
  padding: 10px 20px;
  background: #2E7A4E; /* Custom border color as background */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 6px;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-blog-troubleshooting-49win-login__read-more:hover {
  background-color: #13994A;
}

.page-blog-troubleshooting-49win-login__view-all-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-troubleshooting-49win-login__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-troubleshooting-49win-login__intro-text {
    font-size: 1.1rem;
  }
  .page-blog-troubleshooting-49win-login__section-title {
    font-size: 2.2rem;
  }
  .page-blog-troubleshooting-49win-login__cta-title {
    font-size: 2.5rem;
  }
  .page-blog-troubleshooting-49win-login__card-title,
  .page-blog-troubleshooting-49win-login__feature-title {
    font-size: 1.4rem;
  }
  .page-blog-troubleshooting-49win-login__faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-troubleshooting-49win-login {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-troubleshooting-49win-login__container {
    padding: 0 15px;
  }

  .page-blog-troubleshooting-49win-login__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-troubleshooting-49win-login__hero-image {
    min-height: 250px;
  }

  .page-blog-troubleshooting-49win-login__hero-content-wrapper {
    margin-top: -50px;
    padding-top: 70px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-troubleshooting-49win-login__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-troubleshooting-49win-login__intro-text {
    font-size: 1rem;
  }

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

  .page-blog-troubleshooting-49win-login__btn-primary,
  .page-blog-troubleshooting-49win-login__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-blog-troubleshooting-49win-login__content-section,
  .page-blog-troubleshooting-49win-login__cta-section,
  .page-blog-troubleshooting-49win-login__faq-section,
  .page-blog-troubleshooting-49win-login__related-articles {
    padding: 40px 0;
  }

  .page-blog-troubleshooting-49win-login__section-title {
    font-size: 1.8rem;
  }

  .page-blog-troubleshooting-49win-login__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-blog-troubleshooting-49win-login__grid {
    grid-template-columns: 1fr;
  }

  .page-blog-troubleshooting-49win-login__card {
    padding: 20px;
  }

  .page-blog-troubleshooting-49win-login__card-title {
    font-size: 1.3rem;
  }

  .page-blog-troubleshooting-49win-login__solution-list li {
    padding: 25px;
  }

  .page-blog-troubleshooting-49win-login__solution-list li h3 {
    font-size: 1.5rem;
  }

  .page-blog-troubleshooting-49win-login__solution-list li p {
    font-size: 1rem;
  }

  .page-blog-troubleshooting-49win-login__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-troubleshooting-49win-login__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-troubleshooting-49win-login__feature-card {
    padding: 25px;
  }

  .page-blog-troubleshooting-49win-login__feature-title {
    font-size: 1.3rem;
  }

  .page-blog-troubleshooting-49win-login__cta-title {
    font-size: 2rem;
  }

  .page-blog-troubleshooting-49win-login__cta-description {
    font-size: 1rem;
  }

  .page-blog-troubleshooting-49win-login__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

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

  .page-blog-troubleshooting-49win-login__articles-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-troubleshooting-49win-login__article-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-troubleshooting-49win-login__article-title {
    font-size: 1.2rem;
  }

  /* Ensure all image containers are responsive */
  .page-blog-troubleshooting-49win-login__section,
  .page-blog-troubleshooting-49win-login__card,
  .page-blog-troubleshooting-49win-login__container,
  .page-blog-troubleshooting-49win-login__hero-image-wrapper,
  .page-blog-troubleshooting-49win-login__solution-list li,
  .page-blog-troubleshooting-49win-login__feature-card,
  .page-blog-troubleshooting-49win-login__article-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Override padding for elements that should not have it */
  .page-blog-troubleshooting-49win-login__hero-section,
  .page-blog-troubleshooting-49win-login__cta-section,
  .page-blog-troubleshooting-49win-login__related-articles {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-blog-troubleshooting-49win-login__hero-content-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-blog-troubleshooting-49win-login__hero-content-wrapper .page-blog-troubleshooting-49win-login__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* No filter on images */
.page-blog-troubleshooting-49win-login img {
  filter: none;
}