/* Monospace “code strip” bio panel */
.bio-mono {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  background: #f6f8fa;
  border-left: 0;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  color: #111;
}

/* Keep wrapping nice on narrow screens */
.bio-mono {
  overflow-wrap: anywhere;
  word-break: normal;
}

.bio-mono p {
  margin: 0 0 10px 0;
}

.bio-mono p:last-child {
  margin-bottom: 0;
}
.bio-mono {
  font-size: 0.95rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.site-header {
  background-image: url("header.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 220px;
}

/* Make text readable on top of image */
.site-title,
.site-title:visited {
  color: white;
  font-weight: 600;
}

.site-nav {
  background: transparent;
}
.page-header {
  background: url("/assets/images/banner.jpg") center / cover no-repeat !important;
}

/* Optional: make the header taller so you can see the image */
.page-header {
  padding: 4rem 2rem !important;
}

/* Optional: dark overlay for readability */
.page-header {
  position: relative;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  pointer-events: none;
}
.page-header > * {
  position: relative;
}
#header_wrap {
  background: url("/assets/images/banner.jpg") center / cover no-repeat !important;
}
.footer-links {
  margin-top: 0.25rem;   /* move higher */
  margin-bottom: 1.5rem;
  text-align: center;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin: 0 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f3f5;

  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 0.9rem;
  color: #0366d6;
  text-decoration: none;

  transition: background 0.15s ease, transform 0.15s ease;
}

.footer-links a:hover {
  background: #e6e8eb;
  transform: translateY(-1px);
}

.footer-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}
.news-table {
  margin-top: 0.75rem;
}

.news-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #e5e7eb; /* subtle divider */
}

.news-row:first-child {
  border-top: none;
}

.news-date {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 0.9rem;
  color: #6b7280;
  white-space: nowrap;
}

.news-item {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.5;
}

.news-item a {
  color: #0366d6;
  text-decoration: none;
}

.news-item a:hover {
  text-decoration: underline;
}

/* Mobile: stack date above item */
@media (max-width: 600px) {
  .news-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
