
body {
  margin: 0;
  font-family: "Georgia", serif;
  background-color: #f9f9f9;
  color: #222;
}

header {
  background-color: #00274D;
  padding: 10px 20px;
  text-align: center;
}

.logo {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav ul li a {
  text-decoration: none;
  color: #FFD700;
  font-weight: bold;
  font-size: 1rem;
}

nav ul li a:hover {
  color: #fff;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background-color: #fdfdfd;
}

.hero h1 {
  font-size: 2.5rem;
  color: #00274D;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}

footer {
  background-color: #00274D;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  margin-top: 50px;
}
/* Accessibility helpers */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  border:2px solid currentColor;
  border-radius:10px;
  z-index:9999;
}
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Editorial Board layout */
.board-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}

.board-card{
  grid-column: span 12;
  display:grid;
  grid-template-columns: 112px 1fr;
  gap:16px;
  padding:16px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:16px;
  background:#fff;
}

.board-media{
  margin:0;
  width:112px;height:112px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
}

.board-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.board-name{
  margin:0 0 4px 0;
  font-size:18px;
  line-height:1.2;
}

.board-role{
  margin:0 0 4px 0;
  font-weight:700;
  font-size:13px;
  letter-spacing:.02em;
  opacity:.85;
}

.board-affil{
  margin:0 0 10px 0;
  font-size:14px;
  opacity:.9;
}

.board-bio{
  margin:0 0 10px 0;
  font-size:14px;
  line-height:1.55;
}

.board-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.board-links a{
  font-weight:700;
  text-decoration:none;
}
.board-links a:hover{
  text-decoration:underline;
}

@media (min-width: 720px){
  .board-card{ grid-column: span 6; }
}

@media (min-width: 1024px){
  .board-card{ grid-column: span 4; grid-template-columns: 120px 1fr; }
  .board-media{ width:120px; height:120px; }
}
/* Add these rules to /css/main.css (or merge with your existing main.css).
   This is the minimal styling needed for the rebuilt About page to look polished + accessible.
   It’s designed to work as a shared site-wide foundation. */

/* Base */
:root{
  --bg: #fdfcf9;
  --text: #121212;
  --muted: rgba(18,18,18,.72);

  --navy: #0d1b2a;
  --navy-2: #133b5c;

  --panel: #ffffff;
  --line: rgba(18,18,18,.12);

  --radius: 16px;
  --shadow: 0 10px 24px rgba(0,0,0,.08);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.6;
}

img{ max-width:100%; height:auto; display:block; }
a{ color: inherit; }
a:focus{ outline:3px solid currentColor; outline-offset:3px; }

.container{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}

/* Skip link */
.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  border:2px solid currentColor;
  border-radius:12px;
  z-index:9999;
}

/* Header / Nav */
.site-header{
  background: var(--navy);
  color:#fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; }
.brand-mark{ width:56px; height:auto; }

.site-nav{ position:relative; }
.nav-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
}
.nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:none;
  position:absolute;
  right:0;
  top:52px;
  background: var(--navy-2);
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  min-width: 220px;
  overflow:hidden;
}
.nav-list.is-open{ display:block; }
.nav-list a{
  display:block;
  padding:12px 14px;
  text-decoration:none;
  color:#fff;
  font-weight:700;
}
.nav-list a:hover{ background: rgba(255,255,255,.08); }
.nav-list a[aria-current="page"]{ text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 900px){
  .nav-toggle{ display:none; }
  .nav-list{
    display:flex !important;
    position:static;
    background:transparent;
    border:none;
    min-width:auto;
    gap:6px;
  }
  .nav-list a{
    border-radius:12px;
    padding:10px 12px;
  }
  .nav-list a:hover{ background: rgba(255,255,255,.10); }
}

/* Page */
.page-hero{
  padding: 44px 0 26px;
  background: linear-gradient(180deg, rgba(13,27,42,.08), transparent);
}
.page-hero h1{
  margin:0 0 10px 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height:1.15;
}
.lead{
  margin:0;
  font-size: 18px;
  color: var(--muted);
  max-width: 70ch;
}
.hero-actions{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Sections */
.section{ padding: 28px 0; }
.section-muted{ background: rgba(19,59,92,.06); border-top:1px solid rgba(0,0,0,.04); border-bottom:1px solid rgba(0,0,0,.04); }

.section-head{ margin-bottom: 14px; }
.section-head h2{ margin:0 0 6px 0; }
.muted{ color: var(--muted); margin:0; }

.split{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px){
  .split{ grid-template-columns: 1fr 1fr; }
}

.panel{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.panel h2{ margin-top:0; }

/* Cards */
.cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}
@media (min-width: 720px){
  .cards{ grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px){
  .cards{ grid-template-columns: 1fr 1fr 1fr; }
}
.card{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.card h3{ margin:0 0 6px 0; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration:none;
}
.btn-primary{
  background: var(--navy);
  color:#fff;
  border-color: rgba(255,255,255,.08);
}
.btn-primary:hover{ filter: brightness(1.08); }
.btn-secondary{
  background: transparent;
  border-color: rgba(13,27,42,.30);
}
.btn-secondary:hover{ background: rgba(13,27,42,.06); }

/* Lists / Quote */
.checklist{
  padding-left: 18px;
  margin: 10px 0 0;
}
.pull-quote{
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 5px solid var(--navy);
  border-radius: 14px;
  background: #fff;
  border:1px solid var(--line);
}
.note{ color: var(--muted); }

/* Footer */
.site-footer{
  margin-top: 24px;
  background: var(--navy);
  color:#fff;
  padding: 18px 0;
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.footer-links a{ color:#fff; text-decoration:none; font-weight:800; }
.footer-links a:hover{ text-decoration: underline; }
/* Add these styles to /css/main.css for the Submissions page components */

.faq{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.faq-item{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 0;
  overflow:hidden;
}

.faq-item > summary{
  padding: 14px 16px;
  cursor:pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item > summary::-webkit-details-marker{ display:none; }

.faq-item[open] > summary{
  background: rgba(19,59,92,.06);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.faq-body{
  padding: 14px 16px 16px;
}

.center-actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* Accessibility helpers */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  border:2px solid currentColor;
  border-radius:10px;
  z-index:9999;
}
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Editorial Board layout */
.board-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}

.board-card{
  grid-column: span 12;
  display:grid;
  grid-template-columns: 112px 1fr;
  gap:16px;
  padding:16px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:16px;
  background:#fff;
}

.board-media{
  margin:0;
  width:112px;height:112px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
}

.board-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.board-name{
  margin:0 0 4px 0;
  font-size:18px;
  line-height:1.2;
}

.board-role{
  margin:0 0 4px 0;
  font-weight:700;
  font-size:13px;
  letter-spacing:.02em;
  opacity:.85;
}

.board-affil{
  margin:0 0 10px 0;
  font-size:14px;
  opacity:.9;
}

.board-bio{
  margin:0 0 10px 0;
  font-size:14px;
  line-height:1.55;
}

.board-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.board-links a{
  font-weight:700;
  text-decoration:none;
}
.board-links a:hover{
  text-decoration:underline;
}

@media (min-width: 720px){
  .board-card{ grid-column: span 6; }
}

@media (min-width: 1024px){
  .board-card{ grid-column: span 4; grid-template-columns: 120px 1fr; }
  .board-media{ width:120px; height:120px; }
}
.home-hero h1,
.home-hero .lead,
.home-hero .kicker {
  color: #ffffff;
}

.home-hero .lead {
  opacity: 0.9;
}
.site-header {
  padding-top: 8px;
  padding-bottom: 8px;
}


