* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Parkinsans', sans-serif;
  color: #fff;
  background: #00000033;
}

#vanta-bg {
  position: fixed;
  height: auto;
  inset: 0;
  z-index: 0;
}

#main {
  position: relative;
  z-index: 1;
  height: auto;
  opacity: 1;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
}


.board {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(6px);
}

.board-header {
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-shrink: 0;
}

.board-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.board-header span {
  font-size: 0.72rem;
  color: #ffffff;
}

.panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex: 1;
  min-height: 0;
}

.panel { padding: 1rem 1.15rem; overflow: hidden; }

.panel + .panel { border-left: 1px solid #ffffff59; }

.panel-heading {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
}

.img-block {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ffffff;
  aspect-ratio: inherit;
  margin-bottom: 0.35rem;
}

.img-caption {
  font-size: 0.7rem;
  color: #bbbbbb;
  margin-bottom: 0.85rem;
  font-style: italic;
}

p {
  font-size: 0.85rem;
  color: #dfdfdf;
  line-height: 1.65;
  margin-bottom: 0.7rem;
}

ul {
  list-style: none;
  margin-bottom: 0.7rem;
}

ul li {
  font-size: 0.73rem;
  color: #e9e9e9;
  line-height: 1.5;
  padding: 0.28rem 0 0.28rem 1rem;
  border-bottom: 1px solid #ffffff;
  position: relative;
}

ul li i {
  position: absolute;
  left: 0;
  top: 0.46rem;
  color: #ffffff;
  font-size: 0.45rem;
}

.sub-heading {
  font-size: 0.68rem;
  font-weight: 600;
  color: #e4e4e4;
  margin: 0.85rem 0 0.45rem;
}

.bib {
  color: #ffffff;
  font-style: italic;
  font-size: 0.66rem;
  line-height: 1.8;
  margin: 0;
}

a:link {
  color: #6464ff;
  text-decoration: none;
  transition: color 0.35s ease;
}

a:visited {
  color: #8a6728; 
}

a:hover {
  color: #ffbd41; 
}
a:active {
  color: #ffbd41;
}
