/* style/blog-how-to-securely-get-123go-login-entry.css */

/* Body background from shared.css is #08160F (dark), so text should be light */
.page-blog-how-to-securely-get-123go-login-entry {
  color: var(--text-main, #F2FFF6); /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-securely-get-123go-login-entry__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
  overflow: hidden;
}

.page-blog-how-to-securely-get-123go-login-entry__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-blog-how-to-securely-get-123go-login-entry__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-securely-get-123go-login-entry__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.page-blog-how-to-securely-get-123go-login-entry__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-how-to-securely-get-123go-login-entry__description {
  font-size: 1.1rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

.page-blog-how-to-securely-get-123go-login-entry__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-how-to-securely-get-123go-login-entry__btn-primary,
.page-blog-how-to-securely-get-123go-login-entry__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-blog-how-to-securely-get-123go-login-entry__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main, #F2FFF6);
  border: 2px solid transparent;
}

.page-blog-how-to-securely-get-123go-login-entry__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow, #57E38D);
}

.page-blog-how-to-securely-get-123go-login-entry__btn-secondary {
  background: var(--card-bg, #11271B);
  color: var(--gold, #F2C14E);
  border: 2px solid var(--border, #2E7A4E);
}

.page-blog-how-to-securely-get-123go-login-entry__btn-secondary:hover {
  background: var(--border, #2E7A4E);
  color: var(--text-main, #F2FFF6);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.4);
}

.page-blog-how-to-securely-get-123go-login-entry__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-securely-get-123go-login-entry__article-body {
  background-color: var(--card-bg, #11271B);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-securely-get-123go-login-entry__section-title {
  font-size: 2rem;
  color: var(--gold, #F2C14E);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--divider, #1E3A2A);
  padding-bottom: 10px;
}

.page-blog-how-to-securely-get-123go-login-entry__sub-title {
  font-size: 1.5rem;
  color: var(--text-main, #F2FFF6);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-how-to-securely-get-123go-login-entry p {
  margin-bottom: 15px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-securely-get-123go-login-entry ul,
.page-blog-how-to-securely-get-123go-login-entry ol {
  margin-bottom: 20px;
  padding-left: 25px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-securely-get-123go-login-entry li {
  margin-bottom: 8px;
}

.page-blog-how-to-securely-get-123go-login-entry strong {
  color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-securely-get-123go-login-entry__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.page-blog-how-to-securely-get-123go-login-entry__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-securely-get-123go-login-entry__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-securely-get-123go-login-entry__faq-item {
  background-color: var(--deep-green, #0A4B2C);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-securely-get-123go-login-entry__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  background-color: var(--deep-green, #0A4B2C);
  position: relative;
  list-style: none;
}

.page-blog-how-to-securely-get-123go-login-entry__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-securely-get-123go-login-entry__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold, #F2C14E);
  margin-left: 15px;
}

.page-blog-how-to-securely-get-123go-login-entry__faq-answer {
  padding: 0 20px 15px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-securely-get-123go-login-entry__cta-banner {
  background-color: var(--deep-green, #0A4B2C);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.page-blog-how-to-securely-get-123go-login-entry__cta-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: brightness(0.7); /* Darken image slightly to improve text contrast */
}

.page-blog-how-to-securely-get-123go-login-entry__cta-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  text-align: center;
}

.page-blog-how-to-securely-get-123go-login-entry__cta-title {
  font-size: 2.5rem;
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-how-to-securely-get-123go-login-entry__cta-text {
  font-size: 1.2rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-securely-get-123go-login-entry__hero-content {
    padding: 30px 15px;
  }

  .page-blog-how-to-securely-get-123go-login-entry__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-how-to-securely-get-123go-login-entry__description {
    font-size: 1rem;
  }

  .page-blog-how-to-securely-get-123go-login-entry__section-title {
    font-size: 1.8rem;
  }

  .page-blog-how-to-securely-get-123go-login-entry__sub-title {
    font-size: 1.3rem;
  }

  .page-blog-how-to-securely-get-123go-login-entry__article-body {
    padding: 30px;
  }

  .page-blog-how-to-securely-get-123go-login-entry__cta-title {
    font-size: 2rem;
  }

  .page-blog-how-to-securely-get-123go-login-entry__cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-securely-get-123go-login-entry {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-securely-get-123go-login-entry__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-how-to-securely-get-123go-login-entry__hero-content {
    padding: 20px 15px;
  }

  .page-blog-how-to-securely-get-123go-login-entry__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-how-to-securely-get-123go-login-entry__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px; /* Constrain button group width */
    margin: 0 auto;
  }

  .page-blog-how-to-securely-get-123go-login-entry__btn-primary,
  .page-blog-how-to-securely-get-123go-login-entry__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-how-to-securely-get-123go-login-entry__content-area {
    padding: 20px 15px;
  }

  .page-blog-how-to-securely-get-123go-login-entry__article-body {
    padding: 20px;
  }

  .page-blog-how-to-securely-get-123go-login-entry__section-title {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  .page-blog-how-to-securely-get-123go-login-entry__sub-title {
    font-size: 1.2rem;
  }

  .page-blog-how-to-securely-get-123go-login-entry p,
  .page-blog-how-to-securely-get-123go-login-entry li {
    font-size: 0.95rem;
  }

  .page-blog-how-to-securely-get-123go-login-entry img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-securely-get-123go-login-entry__cta-banner {
    padding: 20px;
  }

  .page-blog-how-to-securely-get-123go-login-entry__cta-title {
    font-size: 1.5rem;
  }

  .page-blog-how-to-securely-get-123go-login-entry__cta-text {
    font-size: 0.95rem;
  }

  .page-blog-how-to-securely-get-123go-login-entry__faq-question {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-blog-how-to-securely-get-123go-login-entry__faq-answer {
    padding: 0 15px 12px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-securely-get-123go-login-entry__hero-section {
    padding-bottom: 30px;
  }
  .page-blog-how-to-securely-get-123go-login-entry__hero-content {
    padding: 15px 10px;
  }
  .page-blog-how-to-securely-get-123go-login-entry__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-blog-how-to-securely-get-123go-login-entry__section-title {
    font-size: 1.3rem;
  }
  .page-blog-how-to-securely-get-123go-login-entry__cta-title {
    font-size: 1.3rem;
  }
  .page-blog-how-to-securely-get-123go-login-entry__cta-text {
    font-size: 0.9rem;
  }
  .page-blog-how-to-securely-get-123go-login-entry__article-body {
    padding: 15px;
  }
  .page-blog-how-to-securely-get-123go-login-entry__cta-content {
    width: 90%;
  }
}