/* Top navigation bar */
.site-header {
  background: #e9f0f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-nav {
  display: flex;
  gap: 36px;              /* space between menu items */
  padding: 18px 24px;     /* vertical + horizontal padding */
  overflow-x: auto;
  white-space: nowrap;
}

.nav-link {
  color: #000000;         /* changed to black */
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: 6px 0;         /* adds click area + visual spacing */
}

.nav-link:hover {
  text-decoration: underline;
}
/* ===== Candidate row layout (text left, photo right) ===== */
.candidate-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 18px 0;
}

/* Left text column */
.candidate-text {
  flex: 1;
  min-width: 0;
}

/* Right photo column */
.candidate-photo-wrap {
  flex: 0 0 auto;
}

/* Force photo to be small + circular */
.candidate-photo {
  width: 200px !important;
  height: 200px !important;
  max-width: 200px !important;
  max-height: 200px !important;
  object-fit: cover;
  display: block;
}