/* CSS Document */

/* =========================
   Reset / Base
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background-color: #fff;
}

/* =========================
   Page Layout
   ========================= */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;                /* pushes footer down when content is short */
  display: flex;
  justify-content: center; /* centers the mainBodyContent-wrapper */
}

/* =========================
   Global centered inner wrapper
   ========================= */

.inner {
  width: min(100%, 1856px);
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================
   Header
   ========================= */

.header-wrap {
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: flex-end; /* flush with bottom of image */
  gap: 2rem;
}

/* header image scales down */
.header-wrap img {
  width: min(477px, 100%);
  max-width: 100%;
  height: auto;
}

/* nav list (desktop) */
.roboto-HeaderNav {
  font-family: "Roboto", sans-serif;
  font-weight: 900;

  font-size: clamp(16px, 2.2vw, 35pt);
  gap: clamp(8px, 1.6vw, 1.5rem);

  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
  line-height: 1;
}

.roboto-HeaderNav li {
  display: flex;
  align-items: center;
}



/* link base + hover */
.roboto-HeaderNav a {
  color: #700000;
  text-decoration: none;
  padding: 0.2em 0.35em;
  display: inline-block;
}

.roboto-HeaderNav a:hover {
  color: #ffffff;
  background-color: #700000;
}

/* dropdown toggle button (hidden on desktop for now) */
.nav-toggle {
  display: none;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 18px;
  background: #d10000;
  color: #fff;
  border: 0;
  padding: 10px 14px;
  cursor: pointer;
}

/* =========================
   Main Body: content + side nav
   ========================= */

.mainBodyContent-wrapper {
  width: min(100%, 1856px);
  margin: 0 auto;
  padding: 24px 16px;

  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

/* main content column */
.content-wrapper {
  flex: 0 1 1400px;
  width: 100%;
  max-width: 1400px;

  display: flex;
  flex-direction: column;
  gap: 16px; /* space between primaryContentBox blocks */
}

/* primary content boxes */
.primaryContentBox {
  background: #bebcb5;
  border: 1px solid #191919;
  padding: 0 10px;
}

.primaryContentBox p {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.primaryContentBox h1 {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 36px;
  margin: 4px;
}

.primaryContentBox h2 {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin: 4px;
}

/* Primary content links ONLY inside h2 and p */
.primaryContentBox h2 a,
.primaryContentBox p a {
  font-size: inherit;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.primaryContentBox h2 a:hover,
.primaryContentBox p a:hover {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}

/* side nav column */
.sideNav-wrapper {
  flex: 0 1 456px;
  width: 100%;
  max-width: 456px;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* side nav header */
h1.sideNav-header {
  margin: 0;
  text-align: center;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 34px;
}

/* side nav card */
.sideNav-container1 {
  width: 100%;
  max-width: 400px; /* keeps desktop feel */
  margin: 0 auto;   /* centers when narrower than wrapper */

  background: #5c5b58;
  border: 1px solid #191919;
  padding: 0 10px;
  text-align: center;
}

.sideNav-container1 p {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}

.sideNav-container1 h1 {
  margin: 0;
  text-align: center;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 26px;
}

.sideNav-container1 p.sideNav-smallerP {
  font-size: 12px;
}

.sideNav-container1 p.sideNav-smallerP a {
  font-size: inherit;
  font-weight: bold;
  color: #fff;
}

.sideNav-container1 p.sideNav-smallerP a:hover {
  color: #000;
  background-color: #fff;
  text-decoration: none;
}

/* images: responsive + no baseline gap */
.primaryContentBox img,
.sideNav-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   Footer
   ========================= */

.site-footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 16px 0;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
}

.footer-inner {
  background: transparent;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* brand column */
.footer-brand {
  flex: 0 0 auto;
  max-width: 140px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  display: block;
  max-width: 100%;
  height: auto;
}

.footerCopyright {
  font-family: "Roboto", sans-serif;
  color: #fff;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.2;
}

/* links grid */
.footer-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.footer-links {
  font-family: "Roboto", sans-serif;
  font-size: 20pt;

  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  gap: 28px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #000;
  background-color: #fff;
}

/* =========================
   Responsive
   ========================= */

/* stack main body earlier */
@media (max-width: 1500px) {
  .mainBodyContent-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .content-wrapper,
  .sideNav-wrapper {
    max-width: 100%;
  }

  .sideNav-wrapper {
    width: min(100%, 456px);
  }
}

@media (max-width: 900px) {
  /* header stacks + centers */
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .roboto-HeaderNav {
    width: min(100%, 456px);
    justify-content: center;
  }

  /* make dropdown links full-width */
  .roboto-HeaderNav a {
    width: 100%;
    padding: 10px 12px;
  }

  /* optional: keep content wider than sidenav on small screens */
  .content-wrapper {
    max-width: 700px;
  }

  .sideNav-wrapper {
    max-width: 456px;
  }

  /* footer stacks + centers */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 650px) {
  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
/* Kill the phantom vertical gap on mobile by using grid when stacked */
@media (max-width: 1500px) {
  .mainBodyContent-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
  }

  .content-wrapper,
  .sideNav-wrapper {
    width: 100%;
    max-width: 700px; /* keep your content cap */
  }

  .sideNav-wrapper {
    max-width: 456px; /* keep sidenav narrower */
  }
}

/* =========================
   Mobile fine-tuning
   ========================= */

@media (max-width: 900px) {

  /* Reduce outer gutters to ~10px */
  .mainBodyContent-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* MAIN CONTENT: take basically the whole screen */
  .content-wrapper {
    max-width: 100%;
    width: 100%;
  }

  /* SIDENAV: about 80% of main column width, centered */
  .sideNav-wrapper {
    width: 80%;
    max-width: none;   /* remove the 456px cap on mobile */
    margin: 0 auto;
  }

  /* Make the side-nav cards fill the side-nav width */
  .sideNav-container1 {
    max-width: none;
    width: 100%;
  }

  /* ===== Typography bumps ===== */

  /* Main content */
  .primaryContentBox h1 { font-size: 34px; line-height: 1.15; }
  .primaryContentBox h2 { font-size: 26px; line-height: 1.2; }
  .primaryContentBox p  { font-size: 22px; line-height: 1.35; }

  /* Sidebar */
  h1.sideNav-header { font-size: 38px; line-height: 1.1; }

  .sideNav-container1 p { font-size: 18px; line-height: 1.35; }
  .sideNav-container1 p.sideNav-smallerP { font-size: 16px; line-height: 1.35; }

  /* Optional: make READ MORE pop a bit */
  .primaryContentBox p a {
    font-weight: 900;
  }
}

.editorsNote {
	background-color: #717169;
	border: 1px solid #000000;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	width: 85%;
	margin-left: auto;
	margin-right: auto;
}
.editorsNote p {
	color: white;
}

.pullquote {
	width: 80%;
	margin-left: auto;
	margin-right: 0;
}

.pullquote p,
.pullquote2 p {
	font-size: 36px;
	color: #474742;
	margin: 6px 0;   /* reduce top & bottom spacing */
	line-height: 1.2; /* optional but usually helps */
}

.pullquote2 {
	width: 80%;
	margin-left: 0;
	margin-right: auto;
}

hr {
	border: none;
	border-top: 2px solid #717169;
	margin: 10px 0;
}

p.authorBio,
p.authorBio a {
  font-size: 16px;
}
p.authorBio {
	width: 60%;
	margin-left: 30px;
	margin-right: 0;
}

p.listing1,
p.listing1 a {
  font-size: 16px;
}

p.listing2 {
  font-size: 14px;
}

.primaryContentBox ul {
	list-style-type: square;
	color: #000;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 20px;
}
.primaryContentBox ul a {
  font-size: inherit;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.primaryContentBox ul a:hover {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}

.caption {
    max-width: 900px;
    margin: 0 auto;
}

.caption p {
    text-align: center;
	margin: 0;
	color: #000000;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.caption p a {
    font-weight: bold;
    color: #000000;
    text-decoration: none;
}

.caption p a:hover {
    color: #ffffff;
}

.sideNavNewsletter p {
	text-align: center;
	color: #000000;
    font-family: "Roboto", sans-serif;
    font-size: 14px;	
}

.sideNavNewsletter a {
  font-size: inherit;
  font-weight: bold;
  color: #000;
  text-decoration: none;		
}

.sideNavNewsletter a:hover {
  color: #fff;
  background-color: #000;
  text-decoration: none;		
}


.sideNavNewsletter h1 {
	text-align: center;
	color: #000000;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 34px;	
}

