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

/* Global styles for the page, inheriting body background from shared.css */
/* Assuming body background is #08160F (dark), so text should be light */
.page-blog-wynn09-login-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Main text color from palette */
  background-color: var(--background, #08160F); /* Background color from palette */
}

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

/* Hero Section */
.page-blog-wynn09-login-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background, #08160F);
}

.page-blog-wynn09-login-guide__hero-image {
  width: 100%;
  max-width: 100%; /* Ensures image fills container */
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 20px; /* Space between image and content */
  border-radius: 8px;
}

.page-blog-wynn09-login-guide__hero-content {
  text-align: center;
  max-width: 800px;
  padding: 20px 0 60px 0;
  color: var(--text-main, #F2FFF6);
}

.page-blog-wynn09-login-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: bold;
  color: var(--gold, #F2C14E); /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-wynn09-login-guide__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8); /* Secondary text color */
}

/* CTA Buttons */
.page-blog-wynn09-login-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-wynn09-login-guide__btn-primary,
.page-blog-wynn09-login-guide__btn-secondary {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text break */
}

.page-blog-wynn09-login-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient from palette */
  color: var(--text-main, #F2FFF6); /* Light text on dark button */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-wynn09-login-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-wynn09-login-guide__btn-secondary {
  background: transparent;
  color: var(--gold, #F2C14E); /* Gold text for secondary button */
  border: 2px solid var(--gold, #F2C14E); /* Gold border */
}

.page-blog-wynn09-login-guide__btn-secondary:hover {
  background: var(--gold, #F2C14E);
  color: var(--background, #08160F); /* Dark background text on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.3);
}

/* Content Sections */
.page-blog-wynn09-login-guide__content-section {
  padding: 60px 0;
  background-color: var(--background, #08160F); /* Default dark background */
  color: var(--text-main, #F2FFF6); /* Light text */
}

.page-blog-wynn09-login-guide__dark-section {
  background-color: var(--card-bg, #11271B); /* Slightly different dark background for contrast */
  color: var(--text-main, #F2FFF6); /* Light text */
}

.page-blog-wynn09-login-guide__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--gold, #F2C14E); /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-wynn09-login-guide__subsection-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--text-main, #F2FFF6); /* Main text color for subsections */
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--divider, #1E3A2A); /* Divider from palette */
  padding-bottom: 10px;
}

.page-blog-wynn09-login-guide__text-block p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-wynn09-login-guide__text-block ul,
.page-blog-wynn09-login-guide__text-block ol {
  list-style-position: inside;
  margin-bottom: 15px;
  padding-left: 20px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-wynn09-login-guide__text-block li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-wynn09-login-guide__highlight {
  color: var(--glow, #57E38D); /* Highlight color from palette */
  font-weight: bold;
}

.page-blog-wynn09-login-guide__text-link {
  color: var(--glow, #57E38D); /* Link color from palette */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-wynn09-login-guide__text-link:hover {
  color: var(--gold, #F2C14E);
}

/* Images in content */
.page-blog-wynn09-login-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* FAQ Section */
.page-blog-wynn09-login-guide__faq-list {
  margin-top: 40px;
}

.page-blog-wynn09-login-guide__faq-item {
  background-color: var(--card-bg, #11271B); /* Card background from palette */
  border: 1px solid var(--border, #2E7A4E); /* Border from palette */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-blog-wynn09-login-guide__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--gold, #F2C14E); /* Gold for FAQ questions */
  background-color: var(--deep-green, #0A4B2C); /* Deep green for summary background */
  transition: background-color 0.3s ease;
}

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

.page-blog-wynn09-login-guide__faq-item summary:hover {
  background-color: var(--border, #2E7A4E); /* Hover effect for summary */
}

.page-blog-wynn09-login-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-wynn09-login-guide__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--text-main, #F2FFF6);
}

.page-blog-wynn09-login-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  background-color: var(--card-bg, #11271B);
}

.page-blog-wynn09-login-guide__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary, #A7D9B8);
}

/* Conclusion Section */
.page-blog-wynn09-login-guide__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-wynn09-login-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-wynn09-login-guide__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-wynn09-login-guide__hero-section {
    padding: 20px 15px 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }

  .page-blog-wynn09-login-guide__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-bottom: 15px;
  }

  .page-blog-wynn09-login-guide__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-wynn09-login-guide__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-wynn09-login-guide__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-blog-wynn09-login-guide__btn-primary,
  .page-blog-wynn09-login-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-wynn09-login-guide__cta-buttons--mobile {
    margin-top: 20px;
  }

  .page-blog-wynn09-login-guide__content-section,
  .page-blog-wynn09-login-guide__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-wynn09-login-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-wynn09-login-guide__subsection-title {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-wynn09-login-guide__text-block p,
  .page-blog-wynn09-login-guide__text-block li {
    font-size: 0.95rem;
  }

  .page-blog-wynn09-login-guide__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 20px auto;
  }

  /* Ensure all image containers are responsive */
  .page-blog-wynn09-login-guide__section,
  .page-blog-wynn09-login-guide__card,
  .page-blog-wynn09-login-guide__container,
  .page-blog-wynn09-login-guide__text-block { /* Targeting text-block as it contains images */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-blog-wynn09-login-guide__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-wynn09-login-guide__faq-answer {
    padding: 15px 20px;
  }
}