/* style/blog-e28bet-common-login-issues.css */

/* Body background color: #08160F (dark), so text should be light */
.page-blog-e28bet-common-login-issues {
  font-family: 'Arial', sans-serif;
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6); /* Light text for dark background */
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for content area, body handles header offset */
}

.page-blog-e28bet-common-login-issues__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Adjusted padding to adhere to small top distance */
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-e28bet-common-login-issues__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px; /* Space between image and text */
}

.page-blog-e28bet-common-login-issues__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-e28bet-common-login-issues__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-e28bet-common-login-issues__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Flexible font size, not too large */
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-e28bet-common-login-issues__hero-description {
  font-size: 1.1em;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 30px;
}

.page-blog-e28bet-common-login-issues__btn-primary,
.page-blog-e28bet-common-login-issues__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal; /* Allow button text to wrap */
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-e28bet-common-login-issues__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-e28bet-common-login-issues__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-e28bet-common-login-issues__btn-secondary {
  background: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-blog-e28bet-common-login-issues__btn-secondary:hover {
  background: var(--deep-green-color, #0A4B2C);
  color: var(--glow-color, #57E38D);
}

.page-blog-e28bet-common-login-issues__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-e28bet-common-login-issues__section-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-blog-e28bet-common-login-issues__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 15px;
}

.page-blog-e28bet-common-login-issues__section-subtitle {
  font-size: 1.1em;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-e28bet-common-login-issues__issue-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.page-blog-e28bet-common-login-issues__issue-card {
  background: var(--card-bg-color, #11271B);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-e28bet-common-login-issues__issue-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-blog-e28bet-common-login-issues__issue-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-e28bet-common-login-issues__issue-title {
  font-size: 1.5em;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 15px;
}

.page-blog-e28bet-common-login-issues__issue-description {
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-e28bet-common-login-issues__solution-heading {
  font-size: 1.2em;
  color: var(--glow-color, #57E38D);
  margin-bottom: 10px;
}

.page-blog-e28bet-common-login-issues__solution-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-e28bet-common-login-issues__solution-list li {
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.page-blog-e28bet-common-login-issues__solution-list li::before {
  content: '✓';
  color: var(--glow-color, #57E38D);
  position: absolute;
  left: 0;
}

.page-blog-e28bet-common-login-issues__cta-section {
  background: var(--deep-green-color, #0A4B2C);
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 60px;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-e28bet-common-login-issues__cta-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: var(--gold-color, #F2C14E);
  margin-bottom: 20px;
}

.page-blog-e28bet-common-login-issues__cta-description {
  font-size: 1.1em;
  color: var(--text-main-color, #F2FFF6);
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-blog-e28bet-common-login-issues__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-e28bet-common-login-issues__faq-section {
  margin-bottom: 60px;
}

.page-blog-e28bet-common-login-issues__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-e28bet-common-login-issues__faq-item {
  background: var(--card-bg-color, #11271B);
  border-radius: 8px;
  border: 1px solid var(--border-color, #2E7A4E);
  overflow: hidden;
}

.page-blog-e28bet-common-login-issues__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: var(--text-main-color, #F2FFF6);
  font-weight: 600;
  font-size: 1.1em;
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-e28bet-common-login-issues__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-blog-e28bet-common-login-issues__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow-color, #57E38D);
  transition: transform 0.3s ease;
}

.page-blog-e28bet-common-login-issues__faq-item[open] .page-blog-e28bet-common-login-issues__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-blog-e28bet-common-login-issues__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1em;
  line-height: 1.5;
}

.page-blog-e28bet-common-login-issues__related-articles {
  margin-top: 80px;
}

.page-blog-e28bet-common-login-issues__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-e28bet-common-login-issues__article-card {
  background: var(--card-bg-color, #11271B);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-e28bet-common-login-issues__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-e28bet-common-login-issues__article-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.page-blog-e28bet-common-login-issues__article-title {
  font-size: 1.25em;
  color: var(--text-main-color, #F2FFF6);
  padding: 15px 20px 10px;
}

.page-blog-e28bet-common-login-issues__article-date {
  font-size: 0.9em;
  color: var(--text-secondary-color, #A7D9B8);
  padding: 0 20px 15px;
  margin-top: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-e28bet-common-login-issues {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-e28bet-common-login-issues__hero-section {
    padding: 10px 15px 40px; /* Adjusted for mobile */
  }

  .page-blog-e28bet-common-login-issues__hero-content {
    padding: 0 15px;
  }

  .page-blog-e28bet-common-login-issues__main-title {
    font-size: 2em; /* Smaller h1 for mobile */
  }

  .page-blog-e28bet-common-login-issues__btn-primary,
  .page-blog-e28bet-common-login-issues__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-e28bet-common-login-issues__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-blog-e28bet-common-login-issues__content-area,
  .page-blog-e28bet-common-login-issues__cta-section,
  .page-blog-e28bet-common-login-issues__faq-section,
  .page-blog-e28bet-common-login-issues__related-articles {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-blog-e28bet-common-login-issues img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-e28bet-common-login-issues__issue-card {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-blog-e28bet-common-login-issues__issue-list {
    gap: 30px;
  }
}