/* style/blog-thomo667-login-guide.css */

/* --- General Styles --- */
.page-blog-thomo667-login-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-blog-thomo667-login-guide__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.2;
}

.page-blog-thomo667-login-guide__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-blog-thomo667-login-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-thomo667-login-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-thomo667-login-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* --- Color Contrast Classes --- */
.page-blog-thomo667-login-guide__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-thomo667-login-guide__light-bg {
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
}

/* For elements on light-bg that need specific text color for contrast if F2FFF6 isn't enough */
.page-blog-thomo667-login-guide__text-contrast-fix {
    color: #F2FFF6; /* Ensure light text on dark background */
}

/* --- Hero Section --- */
.page-blog-thomo667-login-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Ensure image is above content */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #08160F; /* Background */
}

.page-blog-thomo667-login-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure it takes full width */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-thomo667-login-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-blog-thomo667-login-guide__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px 0;
  box-sizing: border-box;
}

.page-blog-thomo667-login-guide__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em); /* Responsive font size */
  font-weight: 800;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-blog-thomo667-login-guide__intro-text {
  font-size: 1.3em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* --- CTA Buttons --- */
.page-blog-thomo667-login-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-thomo667-login-guide__btn-primary,
.page-blog-thomo667-login-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-blog-thomo667-login-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-thomo667-login-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-thomo667-login-guide__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-blog-thomo667-login-guide__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: #F2FFF6; /* Text Main */
  border-color: #F2FFF6; /* Text Main */
}

/* --- Content Sections --- */
.page-blog-thomo667-login-guide__content-section {
  padding: 60px 0;
}

.page-blog-thomo667-login-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-blog-thomo667-login-guide__image-block {
    width: 100%;
    max-width: 800px; /* Constrain image width */
    margin: 40px auto;
    box-sizing: border-box;
    overflow: hidden;
}

/* --- FAQ Section --- */
.page-blog-thomo667-login-guide__faq-section {
  padding: 60px 0;
  background-color: #11271B; /* Card B G */
}

.page-blog-thomo667-login-guide__faq-item {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-thomo667-login-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #08160F; /* Background */
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker for details summary */
}

.page-blog-thomo667-login-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-thomo667-login-guide__faq-question:hover {
  background-color: rgba(17, 168, 78, 0.1);
}

.page-blog-thomo667-login-guide__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6; /* Text Main */
}

.page-blog-thomo667-login-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-blog-thomo667-login-guide__faq-item[open] .page-blog-thomo667-login-guide__faq-question {
  background-color: #11271B; /* Card B G */
}

.page-blog-thomo667-login-guide__faq-item[open] .page-blog-thomo667-login-guide__faq-toggle {
  content: "−";
}

.page-blog-thomo667-login-guide__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-thomo667-login-guide__faq-answer p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

/* --- CTA Section at Bottom --- */
.page-blog-thomo667-login-guide__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #08160F; /* Background */
}

.page-blog-thomo667-login-guide__cta-content {
    max-width: 900px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .page-blog-thomo667-login-guide__container {
    padding: 0 15px;
  }

  .page-blog-thomo667-login-guide__hero-content {
    padding: 20px 15px 0;
  }

  .page-blog-thomo667-login-guide__main-title {
    font-size: 2.2em; /* Smaller on mobile */
  }

  .page-blog-thomo667-login-guide__intro-text {
    font-size: 1em;
  }

  .page-blog-thomo667-login-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-thomo667-login-guide__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-thomo667-login-guide__text-block,
  .page-blog-thomo667-login-guide__list-item,
  .page-blog-thomo667-login-guide__faq-answer p {
    font-size: 1em;
  }

  .page-blog-thomo667-login-guide__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
  }

  .page-blog-thomo667-login-guide__btn-primary,
  .page-blog-thomo667-login-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Images and Videos responsiveness */
  .page-blog-thomo667-login-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .page-blog-thomo667-login-guide video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-blog-thomo667-login-guide__section,
  .page-blog-thomo667-login-guide__card,
  .page-blog-thomo667-login-guide__container,
  .page-blog-thomo667-login-guide__image-block,
  .page-blog-thomo667-login-guide__video-section,
  .page-blog-thomo667-login-guide__video-container,
  .page-blog-thomo667-login-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-blog-thomo667-login-guide__hero-section,
  .page-blog-thomo667-login-guide__video-section {
    padding-top: 10px !important; /* body handles --header-offset, this is just for visual spacing */
  }
}

/* Ensure content area images are at least 200x200px */
.page-blog-thomo667-login-guide__content-area img,
.page-blog-thomo667-login-guide__image-block img {
  min-width: 200px;
  min-height: 200px;
}