@font-face {
  font-family: "Roboto";
  src: url("Roboto/Roboto-VariableFont_wdth\,wght.ttf");
}

#body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

h1 {
  font-family: "Roboto";
}

h2 {
  font-family: "Roboto";
}

h3 {
  font-family: "Roboto";
}

p {
  font-family: "Roboto";
}

a {
  font-family: "Roboto";
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#Logo {
  display: block;
  width: 87%;
  max-width: 600px;
}

#SubHead {
  text-align: center;
  color: rgb(0, 0, 0);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 14px;
  margin: 0;
}

/* Top navigation bar */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  z-index: 10000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-list .nav-item {
  padding: 12px 16px;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.nav-link:hover {
  text-decoration: underline;
}

/* Push main content below fixed nav */
body {
  padding-top: 56px;
}

/* Consent banner styles */
/* consent UI removed — no styles needed */

/* Article listing and pages */
.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 16px;
}
.article-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.article-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.article-list .meta {
  color: #666;
  font-size: 0.9rem;
}
.article {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 16px;
}
.article h1 {
  margin-top: 0;
}
.article .meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.article-nav {
  max-width: 900px;
  margin: 12px auto;
  padding: 0 16px;
}
.article-nav a {
  color: #0078d4;
  text-decoration: none;
}
.article-nav a:hover {
  text-decoration: underline;
}

/* About section */
.About {
  padding: 28px 0;
  background: #fafafa;
}
.About h2 {
  margin-top: 0;
}

/* Dropdown / collapsible previews for articles */
.dropdown {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}
.dropdown-header {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.dropdown-toggle {
  background: #0078d4;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}
.dropdown-toggle:focus {
  outline: 3px solid rgba(0, 120, 212, 0.25);
}
.dropdown-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease, padding 0.2s ease;
  padding: 0 0;
}
.dropdown.open .dropdown-content {
  padding: 12px 0 0 0;
  max-height: 400px;
}
.dropdown-content p {
  margin: 0 0 8px 0;
  color: #333;
}
.dropdown-content a {
  color: #0078d4;
  text-decoration: none;
}
.dropdown-content a:hover {
  text-decoration: underline;
}

/* Member Spotlight styles */
.MemberSpotlight {
  padding: 20px 0;
  background: #fff;
}
.spotlight-card {
  display: block;
  background: #fafafa;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.spotlight-main {
  display: flex;
  gap: 12px;
  align-items: center;
}
.spotlight-photo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}
.spotlight-info h3 {
  margin: 0;
}
.spotlight-info .role {
  margin: 4px 0 0 0;
  color: #666;
  font-size: 0.9rem;
}

.spotlight-card .dropdown-toggle {
  margin-left: auto;
}
