body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px;
  background: #f9f9f9;
  color: #333;
}

header, footer {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  color: #800000; /* Brophy maroon */
}

h2 {
  font-style: italic;
}

/* Article card styling */
article {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Grid layout for multiple articles */
main {
  display: grid;
  grid-template-columns: 1fr;   /* 1 column on phones */
  gap: 24px;
}

@media (min-width: 900px) {
  main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Featured image + caption block */
figure.featured {
  margin: 0 0 12px 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;          /* rounds image corners */
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

figure.featured img {
  display: block;
  width: 100%;
  height: auto;
}

figure.featured figcaption {
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  padding: 8px 10px;
  background: #f3f3f3;
  color: #555;
}

/* Byline with date */
.byline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.byline h2 {
  margin: 0;
}

.byline .pubdate {
  color: #666;
  font-size: 0.9rem;
}

/* Tags row */
.tags {
  margin-top: 12px;
  font-size: 0.95rem;
}

.tag {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 999px;
  margin-right: 6px;
  margin-top: 6px;
  background: #fafafa;
}

/* Enforce no paragraph indents + consistent spacing */
p {
  text-indent: 0;
  margin: 1em 0;
}

/* Navigation bar */
.navbar {
  background: #800000; /* Brophy maroon */
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-title {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

.navbar a.active {
  text-decoration: underline;
  color: #ffcccb; /* lighter highlight shade */
}

/* Abstract + read more */
.abstract {
  font-size: 1rem;
  color: #333;
}

.meta {
  color: #666;
  margin: 0.5em 0 0.75em;
}

.actions .btn {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #800000;
  text-decoration: none;
  color: #800000;
  font-weight: bold;
}

.actions .btn:hover {
  background: #800000;
  color: #fff;
}

/* Archives page */
#archives section {
  margin-bottom: 2em;
  padding: 1em;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

#archives h2 {
  margin-top: 0;
  color: #800000; /* Brophy maroon */
  border-bottom: 2px solid #ddd;
  padding-bottom: 6px;
}

#archives ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#archives li {
  margin: 0.5em 0;
  line-height: 1.5;
}

#archives a {
  color: #800000;
  text-decoration: none;
}

#archives a:hover {
  text-decoration: underline;
}

/* Back to top links */
.back-top {
  text-align: right;
  margin-top: 0.5em;
}

.back-top a {
  font-size: 0.85rem;
  color: #555;
  text-decoration: none;
}

.back-top a:hover {
  text-decoration: underline;
}

/* Offset scroll anchor so sticky navbar doesn't cover headings */
header, h1, h2 {
  scroll-margin-top: 72px;
}


/* ---- About page only ---- */
.about-content {
  /* centers the whole About section without touching the nav */
  max-width: 800px;       /* comfy reading width */
  margin: 2rem auto;      /* centers horizontally on the page */
  padding: 1.5rem;
  display: flex;
  flex-direction: column; /* stack image, heading, paragraphs */
  align-items: center;    /* center the stack horizontally */
  text-align: center;     /* center the text */
}

.about-content figure {
  margin: 0 0 1.25rem; /* space below the image+caption block */
}

.about-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;   /* optional: soft corners */
  display: block;
}

.about-content figcaption {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  font-style: italic;
  color: #666;
}

.about-content h1 {
  margin: 0 0 1rem;
}

.about-content p {
  max-width: 70ch;      /* keeps paragraphs from getting too wide */
  line-height: 1.65;
  margin: 0 0 1rem;
}

/* Optional: if you have a leadership list block, add class="about-leadership" to its <ul> */
.about-leadership {
  list-style-position: inside;
  padding: 0;
  margin: 1rem 0 0;
}
