@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== BASE ===== */
html { font-size: 16px; }

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #54595f;
  background: #fff;
  line-height: 1.7;
}

a { color: #336699; text-decoration: underline; }
a:hover { color: #19334c; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-weight: normal; line-height: 1.3; }

/* ===== HEADER ===== */
.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #dedeDE;
}

.site-header__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px 0;
}

.site-header__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.site-title {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: none;
}

.site-title a { color: #19334c; text-decoration: none; }
.site-title a:hover { color: #336699; }

.site-header__social {
  display: flex;
  gap: 14px;
  font-size: 13px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.site-header__social a { color: #555; text-decoration: none; }
.site-header__social a:hover { color: #336699; text-decoration: underline; }

/* ===== NAV ===== */
.site-nav { margin-top: 12px; border-top: 1px solid #dedede; }

.site-nav ul { list-style: none; display: flex; flex-wrap: wrap; }

.site-nav li { position: relative; }

.site-nav a.nav-link {
  display: block;
  padding: 11px 15px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.8px;
  color: #54595f;
  text-decoration: none;
}

.site-nav a.nav-link:hover { color: #336699; }

.site-nav a.nav-link.active {
  color: #336699;
  border-bottom: 2px solid #336699;
}

/* dropdown arrow */
.site-nav li.has-dropdown > a.nav-link::after {
  content: " ▾";
  font-size: 10px;
  color: #999;
}

/* dropdown */
.site-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #dedeDE;
  min-width: 230px;
  z-index: 200;
  list-style: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.site-nav li.has-dropdown:hover .dropdown { display: block; }

.site-nav .dropdown li a {
  display: block;
  padding: 9px 16px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.5px;
  color: #54595f;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
}

.site-nav .dropdown li:last-child a { border-bottom: none; }
.site-nav .dropdown li a:hover { background: #eff9ff; color: #336699; }

/* mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #dedeDE;
  padding: 7px 14px;
  font-size: 14px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  cursor: pointer;
  margin: 10px 0 6px;
}

/* ===== MAIN CONTENT ===== */
.article-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 44px 24px 80px;
}

/* ===== PAGE HEADER ===== */
.page-title {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #336699;
  margin-bottom: 6px;
}

.page-date {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #696666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

/* ===== QUICK LINKS ===== */
.quick-links {
  font-size: 16px;
  line-height: 2.2;
  margin-bottom: 30px;
}

.about-photo {
  margin-bottom: 28px;
}

.about-photo img {
  width: 100%;
  max-width: 1000px;
  border-radius: 4px;
}

/* ===== STATEMENT ===== */
.statement {
  font-size: 21px;
  line-height: 1.55;
  font-style: normal;
  color: #19334c;
  margin-bottom: 32px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 500;
}

/* ===== BODY TEXT ===== */
.body-text p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #54595f;
}

.body-text .hl {
  font-weight: 600;
  color: #3d4550;
}

.body-text h2 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #336699;
  margin-top: 40px;
  margin-bottom: 14px;
}

.body-text ul {
  margin-left: 22px;
  margin-bottom: 20px;
}

.body-text ul li {
  font-size: 17px;
  line-height: 1.9;
  color: #54595f;
}

/* ===== PAPER ENTRIES ===== */

.paper-entry {
  margin-bottom: 28px;
  padding-bottom: 28px;
}

.paper-entry:last-child { border-bottom: none; }

.paper-entry p {
  font-size: 17px;
  line-height: 1.7;
  color: #54595f;
  margin-bottom: 4px;
}

.paper-entry .paper-title {
  font-size: 17px;
  line-height: 1.7;
  color: #19334c;
  margin-bottom: 6px;
}

.paper-entry .paper-meta {
  font-size: 14px;
  color: #696666;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-style: italic;
}

/* ===== CTA ===== */
.page-cta {
  margin-top: 36px;
  font-size: 17px;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid #dedede;
  padding: 22px 24px;
  text-align: center;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #696666;
  margin-top: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .site-nav ul { display: none; flex-direction: column; }
  .site-nav ul.open { display: flex; }
  .site-nav a.nav-link { padding: 10px 16px; border-bottom: 1px solid #f0f0f0; }
  .site-nav .dropdown { position: static; border: none; box-shadow: none; }
  .site-nav li.has-dropdown:hover .dropdown { display: block; }
  .site-nav .dropdown li a { padding-left: 32px; }
  .site-header__top { flex-direction: column; }
  .page-title { font-size: 28px; }
  .statement { font-size: 18px; }
}
