/* style/blog-latest-entry-registration-guide.css */
:root {
  --link-win55-primary-color: #11A84E;
  --link-win55-secondary-color: #22C768;
  --link-win55-bg-color: #08160F;
  --link-win55-card-bg: #11271B;
  --link-win55-text-main: #F2FFF6;
  --link-win55-text-secondary: #A7D9B8;
  --link-win55-border-color: #2E7A4E;
  --link-win55-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-latest-entry-registration-guide {
  background-color: var(--link-win55-bg-color);
  color: var(--link-win55-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-latest-entry-registration-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom for content */
  box-sizing: border-box;
  background-color: var(--link-win55-bg-color);
}

.page-blog-latest-entry-registration-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.page-blog-latest-entry-registration-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-blog-latest-entry-registration-guide__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(8, 22, 15, 0.7); /* Semi-transparent background for text */
  border-radius: 8px;
  margin-top: -100px; /* Overlap with image slightly for visual appeal */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-entry-registration-guide__hero-title {
  font-size: clamp(2em, 3.5vw, 3.2em); /* Responsive font size for H1 */
  color: var(--link-win55-text-main);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-latest-entry-registration-guide__hero-description {
  font-size: 1.1em;
  color: var(--link-win55-text-secondary);
  margin-bottom: 30px;
}

.page-blog-latest-entry-registration-guide__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-latest-entry-registration-guide__btn-primary,
.page-blog-latest-entry-registration-guide__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-latest-entry-registration-guide__btn-primary {
  background: var(--link-win55-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-latest-entry-registration-guide__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-latest-entry-registration-guide__btn-secondary {
  background-color: transparent;
  color: var(--link-win55-text-main);
  border: 2px solid var(--link-win55-primary-color);
}

.page-blog-latest-entry-registration-guide__btn-secondary:hover {
  background-color: var(--link-win55-primary-color);
  color: #ffffff;
}

.page-blog-latest-entry-registration-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: var(--link-win55-bg-color); /* Main content background */
  color: var(--link-win55-text-main);
}

.page-blog-latest-entry-registration-guide__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-latest-entry-registration-guide__section-title {
  font-size: 2.5em;
  color: var(--link-win55-primary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-latest-entry-registration-guide__sub-title {
  font-size: 1.8em;
  color: var(--link-win55-text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-latest-entry-registration-guide__paragraph {
  font-size: 1.1em;
  color: var(--link-win55-text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-blog-latest-entry-registration-guide__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--link-win55-text-secondary);
}

.page-blog-latest-entry-registration-guide__numbered-list {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--link-win55-text-secondary);
}

.page-blog-latest-entry-registration-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-blog-latest-entry-registration-guide__list-item strong {
  color: var(--link-win55-text-main);
}

.page-blog-latest-entry-registration-guide__nested-list {
  list-style: circle;
  margin-left: 20px;
  margin-top: 10px;
}

.page-blog-latest-entry-registration-guide__image-wrapper {
  margin: 30px 0;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-entry-registration-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.page-blog-latest-entry-registration-guide__cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-latest-entry-registration-guide__faq-list {
  margin-top: 30px;
}

.page-blog-latest-entry-registration-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--link-win55-card-bg);
  border: 1px solid var(--link-win55-border-color);
  color: var(--link-win55-text-main);
}

.page-blog-latest-entry-registration-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: var(--link-win55-card-bg);
  font-size: 1.2em;
  font-weight: bold;
  color: var(--link-win55-text-main);
  border-bottom: 1px solid var(--link-win55-border-color);
  list-style: none; /* For details/summary */
}

.page-blog-latest-entry-registration-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-entry-registration-guide__faq-question:hover {
  background-color: rgba(var(--link-win55-primary-color), 0.1);
}

.page-blog-latest-entry-registration-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-entry-registration-guide__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--link-win55-primary-color);
}

.page-blog-latest-entry-registration-guide__faq-item[open] .page-blog-latest-entry-registration-guide__faq-question {
  border-bottom: none;
}

.page-blog-latest-entry-registration-guide__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.05em;
  color: var(--link-win55-text-secondary);
  line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-latest-entry-registration-guide {
    font-size: 15px;
  }

  .page-blog-latest-entry-registration-guide__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-latest-entry-registration-guide__hero-content {
    padding: 15px;
    margin-top: -80px;
  }

  .page-blog-latest-entry-registration-guide__hero-title {
    font-size: 2em;
  }

  .page-blog-latest-entry-registration-guide__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-latest-entry-registration-guide__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-latest-entry-registration-guide__btn-primary,
  .page-blog-latest-entry-registration-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;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-entry-registration-guide__content-area {
    padding: 40px 15px;
  }

  .page-blog-latest-entry-registration-guide__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-latest-entry-registration-guide__section-title {
    font-size: 2em;
    margin-bottom: 25px;
  }

  .page-blog-latest-entry-registration-guide__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-latest-entry-registration-guide__paragraph,
  .page-blog-latest-entry-registration-guide__list-item {
    font-size: 1em;
  }

  .page-blog-latest-entry-registration-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-entry-registration-guide__image-wrapper,
  .page-blog-latest-entry-registration-guide__card,
  .page-blog-latest-entry-registration-guide__container,
  .page-blog-latest-entry-registration-guide__hero-section,
  .page-blog-latest-entry-registration-guide__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-entry-registration-guide__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-latest-entry-registration-guide__faq-answer {
    padding: 0 15px 15px 15px;
  }
}