/* Home root */
#home-root {
  max-width: none;
  margin-left: 70px;
  margin-right: 10px;
  padding: 24px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #333;
}

/* Headings */
#home-root h1 { font-size: 2.4rem; margin: 0 0 0.6rem; }
#home-root h2 { font-size: 1.6rem; margin: 1.2rem 0 0.5rem; }
#home-root h3 { font-size: 1.2rem; margin: 0.8rem 0 0.4rem; }

/* Text & lists */
#home-root p { margin: 0 0 0.75rem; }
#home-root ul { margin: 0.75rem 0; padding-left: 1.2rem; }
#home-root .intro-text { margin-bottom: 1.25rem; }

/* Sections */
#home-root .home-section { margin: 1.25rem 0; padding: 0.5rem 0; }

/* Radio group */
#home-root .dash-radio-items { margin: 0.75rem 0; }
#home-root .dash-radio-items label { margin-right: 16px; font-weight: 500; }

/* Images */
#home-root .image {
  display: block;
  margin: 0.75rem 0;
  border-radius: 6px;
}
@media (max-width: 600px) {
  #home-root .image { width: 100% !important; }
}

/* Feature cards */
#home-root .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}
#home-root .feature-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#home-root .feature-card p { font-size: 0.95rem; margin: 0; }

/* Button colors */
#home-root .link-button {
  align-self: flex-start;
  display: inline-block;
  padding: 0.45rem 0.7rem;
  background: #1f77b4;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background-color 0.2s;
}
#home-root .link-button:hover,
#home-root .link-button:focus {
  background: #185988;
}

/* Tips list */
#home-root .feature-tips li { margin-bottom: 0.4rem; }

/* Institutions + team */
#home-root .institutions-title { margin-bottom: 0.4rem; }
#home-root .institutions-text { line-height: 1.5; }
#home-root .institutions-link { color: #0066cc; text-decoration: none; }
#home-root .institutions-link:hover { text-decoration: underline; }

#home-root .team-label { font-weight: 600; margin-right: 0.4rem; }
#home-root .team-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.25rem 0 0;
}
#home-root .team-member { margin-bottom: 0.4rem; }
#home-root .team-name { font-weight: 500; }
#home-root .team-role {
  font-size: 0.9em;
  opacity: 0.8;
  font-style: italic;
}

#home-root .team-member ul {
  list-style: circle;
  padding-left: 1.25rem;
  margin-top: 0.2rem;
}
#home-root .team-member ul li { margin-bottom: 0.2rem; }

/* Email chips */
#home-root .email-chip {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.2);
  background: #f8f8f8;
  color: #000;
  font-size: 0.9em;
  text-decoration: none;
}
#home-root .email-chip:hover {
  border-color: rgba(0,0,0,.4);
  background: #f0f0f0;
}