/* =========================
RESET + GLOBAL
========================= */
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;           /* ← This is the change */
  line-height: 1.68;
  color: #222;
  background: #f4f6f9;
}

.main-content p,
.main-content li {
  font-size: 14px;
  margin-bottom: 14px;
}

.main-content h1 {
  font-size: 22px;
}

.main-content h2 {
  font-size: 20px;
  margin: 28px 0 12px 0;
}

.main-content h3 {
  font-size: 16px;
  margin: 24px 0 10px 0;
}

.container {
width: 100%;
max-width: none;
margin: 0;
}

/* =========================
TOP BANNER
========================= */
/* TOP BANNER */
.top-banner {
  width: 100%;
  height: auto;
  max-height: 180px;        /* ← increased from 140px for better proportion */
  object-fit: contain;
  display: block;
  margin-bottom: 0;
}

.top-banner,
.footer-banner {
  max-width: 1100px;
  margin: 0 auto;
  display: block;
}

/* =========================
TOP NAVIGATION
========================= */

/* =========================
TOP NAVIGATION
========================= */
.top-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: #1a3a6b;
  padding: 14px 0;
  max-width: 1100px;           /* ← Same width as main content */
  margin: 0 auto;              /* ← Centers the nav bar */
  border-top: 3px solid #1a3a6b;
}

.top-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: opacity 0.2s ease;
}

.top-nav a:hover {
  opacity: 0.75;
}

/* =========================
MAIN LAYOUT
========================= */
.main-layout {
display: grid;
grid-template-columns: 260px 1fr;
gap: 30px;
max-width: 1100px;
margin: 30px auto;
padding: 0 20px;
align-items: start;
}

/* =========================
LEFT PANEL
========================= */
.left-panel {
font-size: 14px;
color: #444;
padding-top: 10px;
}

.left-panel img {
margin-bottom: 10px;
}

.logo-large {
width: 100%;
display: block;
margin-bottom: 25px;
}

.address {
line-height: 1.5;
margin-top: 10px;
margin-bottom: 30px;
}

/* =========================
MAIN CONTENT
========================= */
.main-content {
background: #ffffff;
padding: 30px;
border-radius: 4px;
max-width: 100%;
}

.main-content h1 {
font-size: 26px;
font-weight: 600;
color: #1a3a6b;
text-align: center;
margin: 10px 0 20px 0;
}

.main-content p {
margin-bottom: 12px;
line-height: 1.6;
font-size: 15px;
}

/* =========================
DIVIDER
========================= */
.section-divider {
margin: 25px 0;
border: none;
border-top: 1px solid #ddd;
}

/* =========================
IMAGE + TEXT SECTION
========================= */
.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-top: 15px;
}

.feature-img {
width: 100%;
max-width: 380px;
display: block;
margin: auto;
}

/* =========================
EDITORIAL BOARD GRID
========================= */
.editor-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px 50px;
margin-top: 20px;
}

.editor-item {
font-size: 14px;
line-height: 1.6;
}

.editor-name {
font-weight: 600;
color: #1f3c6d;
text-decoration: none;
}

.editor-name:hover {
text-decoration: underline;
}

/* FOOTER */
.footer-banner {
  width: 100%;
  height: auto;
  max-height: 120px;        /* ← better balanced footer size */
  object-fit: contain;
  display: block;
  margin-top: 40px;
}
/* Advisory Board - tighter spacing */
.advisory-list {
  margin-top: 10px;
  margin-bottom: 30px;
  padding-left: 20px;
}

.advisory-list li {
  margin-bottom: 6px;   /* much tighter than default */
  line-height: 1.5;
}

/* Make Editor-in-Chief match the other editor names */
.editor-item a.editor-name strong {
  color: #1f3c6d;
  font-weight: 600;
}