/* style/resources-nohu67-guide.css */
.page-resources-nohu67-guide {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
}

.page-resources-nohu67-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-nohu67-guide__hero-section {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-resources-nohu67-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-nohu67-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-nohu67-guide__hero-button {
  display: inline-block;
  background-color: #8B0000; /* Auxiliary color for button background */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700; /* Main color for button border */
}

.page-resources-nohu67-guide__hero-button:hover {
  background-color: #FFD700; /* Main color on hover */
  color: #8B0000;
  transform: translateY(-3px);
  border-color: #8B0000;
}

.page-resources-nohu67-guide__content-area {
  padding: 60px 0;
}

.page-resources-nohu67-guide__article-wrapper {
  display: flex;
  gap: 40px;
}

.page-resources-nohu67-guide__table-of-contents {
  flex: 0 0 280px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px; /* Adjust based on header height */
  align-self: flex-start;
  height: fit-content;
}

.page-resources-nohu67-guide__toc-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-nohu67-guide__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-nohu67-guide__toc-list li {
  margin-bottom: 10px;
}

.page-resources-nohu67-guide__toc-link {
  text-decoration: none;
  color: #333333;
  font-size: 1.1em;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.page-resources-nohu67-guide__toc-link:hover {
  color: #FFD700;
}

.page-resources-nohu67-guide__article-content {
  flex-grow: 1;
  max-width: 800px; /* Content width for comfortable reading */
}

.page-resources-nohu67-guide__section-title {
  font-size: 2.2em;
  color: #8B0000;
  margin-top: 40px;
  margin-bottom: 25px;
  line-height: 1.3;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-nohu67-guide__subsection-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-resources-nohu67-guide__article-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-nohu67-guide__list,
.page-resources-nohu67-guide__ordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-resources-nohu67-guide__list li,
.page-resources-nohu67-guide__ordered-list li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-resources-nohu67-guide__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.page-resources-nohu67-guide__button-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-nohu67-guide__action-button {
  display: inline-block;
  background-color: #FFD700; /* Main color for button background */
  color: #8B0000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
}

.page-resources-nohu67-guide__action-button:hover {
  background-color: #8B0000; /* Auxiliary color on hover */
  color: #ffffff;
}

.page-resources-nohu67-guide__conclusion {
  font-size: 1.2em;
  font-style: italic;
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  background-color: #fffbe6;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
}

.page-resources-nohu67-guide__return-link-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-resources-nohu67-guide__return-link {
  display: inline-block;
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 10px 20px;
  border: 1px solid #8B0000;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-nohu67-guide__return-link:hover {
  background-color: #8B0000;
  color: #ffffff;
}

.page-resources-nohu67-guide__related-resources {
  flex: 0 0 280px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-self: flex-start;
  height: fit-content;
}

.page-resources-nohu67-guide__aside-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-nohu67-guide__aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-nohu67-guide__aside-list li {
  margin-bottom: 10px;
}

.page-resources-nohu67-guide__aside-link {
  text-decoration: none;
  color: #333333;
  font-size: 1.1em;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.page-resources-nohu67-guide__aside-link:hover {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-nohu67-guide__article-wrapper {
    flex-direction: column;
  }

  .page-resources-nohu67-guide__table-of-contents,
  .page-resources-nohu67-guide__related-resources {
    position: static;
    width: 100%;
    margin-bottom: 40px;
  }

  .page-resources-nohu67-guide__hero-title {
    font-size: 2.5em;
  }

  .page-resources-nohu67-guide__hero-description {
    font-size: 1.1em;
  }

  .page-resources-nohu67-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-nohu67-guide__subsection-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-resources-nohu67-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-nohu67-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-nohu67-guide__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-nohu67-guide__section-title {
    font-size: 1.6em;
  }

  .page-resources-nohu67-guide__subsection-title {
    font-size: 1.2em;
  }

  .page-resources-nohu67-guide__article-content p,
  .page-resources-nohu67-guide__list li,
  .page-resources-nohu67-guide__ordered-list li,
  .page-resources-nohu67-guide__toc-link,
  .page-resources-nohu67-guide__aside-link {
    font-size: 0.95em;
  }
}