/* [project]/src/app/code-of-conduct/code-of-conduct.css [app-client] (css) */
.code-of-conduct-page {
  background: #fff;
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

.code-container {
  max-width: 1400px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
}

.code-nav {
  background: #f8f9fa;
  border-right: 1px solid #e9ecef;
  width: 300px;
  height: 100vh;
  padding: 2rem 1.5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow-y: auto;
}

.code-nav h3 {
  color: #004aad;
  border-bottom: 2px solid #004aad;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.code-nav ul {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.code-nav li {
  margin-bottom: .5rem;
}

.nav-link {
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  width: 100%;
  padding: .75rem 1rem;
  font-size: .9rem;
  line-height: 1.4;
  transition: all .2s;
}

.nav-link:hover {
  background: #e9ecef;
}

.nav-link.active {
  color: #fff;
  background: #004aad;
}

.nav-link-text {
  color: inherit;
  text-decoration: none;
  display: block;
}

.nav-link.active .nav-link-text {
  color: #fff;
}

.back-link {
  border-top: 1px solid #e9ecef;
  margin-top: 2rem;
  padding-top: 2rem;
}

.back-button {
  color: #004aad;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.back-button:hover {
  color: #003d8a;
  text-decoration: underline;
}

.code-content {
  flex: 1;
  max-width: calc(100% - 300px);
  padding: 2rem 3rem;
}

.code-header {
  text-align: center;
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.code-header h1 {
  color: #004aad;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.intro-text {
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.code-section {
  margin-bottom: 3rem;
  scroll-margin-top: 2rem;
}

.code-section h2 {
  color: #004aad;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.code-section ul {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

.code-section li {
  color: #333;
  margin-bottom: .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.code-section ul ul {
  margin-top: .5rem;
  margin-left: 1.5rem;
}

.code-section ul ul li {
  margin-bottom: .5rem;
  font-size: .95rem;
}

.acknowledgment-box {
  background: #f8f9fa;
  border-left: 4px solid #004aad;
  border-radius: 8px;
  margin-top: 1.5rem;
  padding: 2rem;
}

.acknowledgment-box p {
  color: #333;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.code-section a {
  color: #004aad;
  font-weight: 500;
  text-decoration: none;
}

.code-section a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .code-container {
    flex-direction: column;
  }

  .code-nav {
    border-bottom: 1px solid #e9ecef;
    border-right: none;
    width: 100%;
    height: auto;
    position: static;
  }

  .code-content {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .code-nav ul {
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
    display: flex;
  }

  .code-nav li {
    flex: 1;
    min-width: 200px;
  }

  .back-link {
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

@media (max-width: 768px) {
  .code-content {
    padding: 1.5rem 1rem;
  }

  .code-header h1 {
    font-size: 2rem;
  }

  .code-section h2 {
    font-size: 1.4rem;
  }

  .code-nav {
    padding: 1.5rem 1rem;
  }

  .code-nav ul {
    flex-direction: column;
  }

  .code-nav li {
    min-width: auto;
  }

  .intro-text {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=src_app_code-of-conduct_code-of-conduct_29ca68b9.css.map*/