/* TRIP — Transportation Initiative at Penn
   Clean, minimal, professional stylesheet
   ------------------------------------------------------------ */

:root {
  --color-bg: #ffffff;
  --color-surface: #f7f8fa;
  --color-text: #1a1a1a;
  --color-text-muted: #5b6470;
  --color-border: #e5e7eb;
  --color-accent: #011f5b;        /* Penn navy */
  --color-accent-hover: #003087;
  --color-accent-soft: #eaf0fb;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Georgia", "Times New Roman", serif;

  --max-w: 1140px;
  --gutter: 1.5rem;

  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
a:hover { color: var(--color-accent-hover); border-bottom-color: currentColor; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.5rem; }
h3 { font-size: 1.25rem; margin-top: 1.5rem; }
h4 { font-size: 1.05rem; margin-top: 1.25rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------------- Header / Nav ---------------- */
.site-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  min-height: 70px;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.brand-penn {
  display: flex;
  align-items: center;
  border-bottom: none;
}
.brand-penn img {
  height: 42px;
  width: auto;
  display: block;
}
.brand-divider {
  display: inline-block;
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}
.brand {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-text);
  border-bottom: none;
  display: flex;
  align-items: baseline;
  gap: .55rem;
}
.brand .brand-mark {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}
.brand .brand-sub {
  font-family: var(--font-sans);
  font-size: .8rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

nav.primary ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.primary a {
  color: var(--color-text);
  font-size: .95rem;
  font-weight: 500;
  border-bottom: none;
  padding: .25rem 0;
}
nav.primary a:hover { color: var(--color-accent); }
nav.primary a.active {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

.menu-toggle { display: none; }

/* ---------------- Hero ---------------- */
.hero {
  background: var(--color-surface);
  padding: 5rem 0 4.5rem;
  border-bottom: 1px solid var(--color-border);
}
.hero .container { max-width: 880px; }
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-accent);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 { margin-bottom: 1rem; }
.hero .lede {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 720px;
  margin-bottom: 2rem;
}
.hero .cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Homepage hero: full-bleed Philly skyline with gradient overlay */
.hero.hero-home {
  position: relative;
  background-image: url('images/hero/philly-skyline.jpg');
  background-size: cover;
  background-position: center center;
  min-height: 560px;
  padding: 6rem 0 4.5rem;
  border-bottom: none;
  overflow: hidden;
  color: #fff;
}
.hero.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(75deg,
    rgba(1, 31, 91, 0.82) 0%,
    rgba(1, 31, 91, 0.55) 40%,
    rgba(1, 31, 91, 0.10) 100%
  );
  pointer-events: none;
}

/* About hero: Kickoff panel photo with vertical gradient */
.hero.hero-about {
  position: relative;
  background-image: url('images/hero/kickoff-panel.jpg');
  background-size: cover;
  background-position: center 30%;
  min-height: 520px;
  padding: 6rem 0 4.5rem;
  border-bottom: none;
  overflow: hidden;
  color: #fff;
}
.hero.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(1, 31, 91, 0.30) 0%,
    rgba(1, 31, 91, 0.55) 50%,
    rgba(1, 31, 91, 0.85) 100%
  );
  pointer-events: none;
}
.hero.hero-about .container { position: relative; z-index: 1; }
.hero.hero-about .eyebrow { color: rgba(255, 255, 255, 0.85); }
.hero.hero-about h1 {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.hero.hero-about .lede {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Contact hero: fireside chat photo */
.hero.hero-contact {
  position: relative;
  background-image: url('images/hero/fireside-chat.jpg');
  background-size: cover;
  background-position: center 40%;
  min-height: 460px;
  padding: 5.5rem 0 4rem;
  border-bottom: none;
  overflow: hidden;
  color: #fff;
}
.hero.hero-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(1, 31, 91, 0.40) 0%,
    rgba(1, 31, 91, 0.55) 50%,
    rgba(1, 31, 91, 0.82) 100%
  );
  pointer-events: none;
}
.hero.hero-contact .container { position: relative; z-index: 1; }
.hero.hero-contact .eyebrow { color: rgba(255, 255, 255, 0.85); }
.hero.hero-contact h1 {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.hero.hero-contact .lede {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* News hero: Ben Franklin Bridge at sunset */
.hero.hero-news {
  position: relative;
  background-image: url('images/hero/ben-franklin-bridge.jpg');
  background-size: cover;
  background-position: center 45%;
  min-height: 480px;
  padding: 5.5rem 0 4rem;
  border-bottom: none;
  overflow: hidden;
  color: #fff;
}
.hero.hero-news::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(1, 31, 91, 0.25) 0%,
    rgba(1, 31, 91, 0.50) 55%,
    rgba(1, 31, 91, 0.78) 100%
  );
  pointer-events: none;
}
.hero.hero-news .container { position: relative; z-index: 1; }
.hero.hero-news .eyebrow { color: rgba(255, 255, 255, 0.85); }
.hero.hero-news h1 {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.hero.hero-news .lede {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.hero.hero-home .container {
  position: relative;
  z-index: 1;
}
.hero.hero-home .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.hero.hero-home h1 {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.hero.hero-home .lede {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.hero.hero-home .btn {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
}
.hero.hero-home .btn:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--color-accent);
}
.hero.hero-home .btn.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.hero.hero-home .btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  padding: .75rem 1.4rem;
  font-size: .95rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  border-bottom: 1px solid var(--color-accent);
}
.btn:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}
.btn.btn-outline {
  background: transparent;
  color: var(--color-accent);
}
.btn.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ---------------- Sections ---------------- */
section.section {
  padding: 4rem 0;
}
section.section.alt {
  background: var(--color-surface);
}
.section-head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-accent);
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.section-head h2 { margin-top: 0; }

/* ---------------- Grid / Cards ---------------- */
.grid {
  display: grid;
  gap: 1.75rem;
}
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.card:hover {
  border-color: #c9d1dc;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 0; }
.card h3 a { color: var(--color-text); border-bottom: none; }
.card h3 a:hover { color: var(--color-accent); }
.card p:last-child { margin-bottom: 0; }
.card .card-tag {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: .75rem;
}
.card .card-link {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: .92rem;
  font-weight: 500;
}
.card .card-link a {
  border-bottom: none;
}
.card .card-link a:hover {
  border-bottom: 1px solid currentColor;
}

/* ---------------- People bios (About page) ---------------- */
.person-bio {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.75rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}
.person-bio:first-of-type { padding-top: 1rem; }
.person-bio:last-of-type { border-bottom: none; padding-bottom: 1rem; }
.person-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--color-surface);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-photo svg {
  width: 50%;
  height: 50%;
  color: #c9d1dc;
}
.person-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 .25rem;
}
.person-body h3 a { color: var(--color-text); border-bottom: none; }
.person-body h3 a:hover { color: var(--color-accent); }
.person-title {
  font-style: italic;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
  font-size: 1rem;
}
.person-body p {
  line-height: 1.7;
}
.person-body p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .person-bio {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .person-photo {
    max-width: 220px;
  }
}

/* ---------------- Feature lists ---------------- */
ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.feature-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 1rem;
}
ul.feature-list li:last-child { border-bottom: none; }
ul.feature-list .marker {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ---------------- Quote ---------------- */
.pullquote {
  border-left: 3px solid var(--color-accent);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--color-text);
  font-style: italic;
}
.pullquote cite {
  display: block;
  margin-top: .75rem;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--color-text-muted);
}

/* Homepage Leslie feature: portrait + quote side-by-side */
.leslie-feature {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: center;
}
.leslie-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.leslie-quote {
  margin: 0;
  padding: 0;
  border-left: 3px solid var(--color-accent);
  padding-left: 1.75rem;
}
.leslie-quote p {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.4;
  color: var(--color-text);
  font-style: italic;
  margin: 0 0 1.25rem;
}
.leslie-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}
.leslie-quote cite span {
  display: block;
  font-weight: 400;
  font-size: .9rem;
  color: var(--color-text-muted);
  margin-top: .15rem;
}

@media (max-width: 820px) {
  .leslie-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 520px;
    margin: 0 auto;
  }
  .leslie-photo img {
    max-width: 320px;
    margin: 0 auto;
  }
  .leslie-quote p { font-size: 1.35rem; }
}

/* ---------------- News / posts list ---------------- */
.post-list { list-style: none; padding: 0; margin: 0; }
.post-list li {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.post-list li:last-child { border-bottom: none; }
.post-date {
  font-size: .85rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.post-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 .35rem;
}
.post-title a { color: var(--color-text); border-bottom: none; }
.post-title a:hover { color: var(--color-accent); }
.post-meta {
  font-size: .85rem;
  color: var(--color-text-muted);
  margin-bottom: .5rem;
}
.post-excerpt {
  color: var(--color-text-muted);
  margin: 0;
}

/* ---------------- Sponsors (inline list, used on About) ---------------- */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.sponsor-grid li {
  border: 1px solid var(--color-border);
  padding: 1rem;
  text-align: center;
  font-size: .95rem;
  background: #fff;
  border-radius: var(--radius);
}
.sponsor-grid li a { color: var(--color-text); border-bottom: none; }
.sponsor-grid li a:hover { color: var(--color-accent); }

/* ---------------- Sponsor logo grid (dedicated Sponsors page) ---------------- */
.sponsor-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.sponsor-logo-grid li {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.sponsor-logo-grid li:hover {
  border-color: #c9d1dc;
  box-shadow: var(--shadow-sm);
}
.sponsor-logo-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  border-bottom: none;
  gap: .5rem;
}
.sponsor-logo-grid img {
  max-height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.sponsor-logo-grid li.tall img {
  max-height: 115px;
}
.sponsor-logo-grid .logo-placeholder {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}
.sponsor-logo-grid .placeholder-tag {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-muted);
  font-weight: 500;
  font-family: var(--font-sans);
}

/* ---------------- Advisor cards ---------------- */
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.advisor-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
  display: flex;
  flex-direction: column;
}
.advisor-card:hover {
  border-color: #c9d1dc;
  box-shadow: var(--shadow-sm);
}
.advisor-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.advisor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advisor-photo svg {
  width: 55%;
  height: 55%;
  color: #c9d1dc;
}
.advisor-body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.advisor-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 .25rem;
  color: var(--color-text);
}
.advisor-name a { color: var(--color-text); border-bottom: none; }
.advisor-name a:hover { color: var(--color-accent); }
.advisor-title {
  font-size: .92rem;
  color: var(--color-text);
  margin: 0 0 .15rem;
}
.advisor-org {
  font-size: .9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---------------- Contact form ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info p { margin: 0 0 .25rem; }
.contact-info .label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: .25rem;
}

form.contact-form .field { margin-bottom: 1.25rem; }
form.contact-form label {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: .4rem;
}
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: .7rem .85rem;
  font: inherit;
  font-size: .95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}
form.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---------------- Footer ---------------- */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 2.5rem 0 2rem;
  margin-top: 4rem;
  font-size: .92rem;
  color: var(--color-text-muted);
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer a { color: var(--color-text-muted); border-bottom: none; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer .footer-brand { max-width: 360px; }
.site-footer .footer-brand strong { color: var(--color-text); }
.site-footer .footer-host-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-muted);
  margin-top: 1.25rem;
  margin-bottom: .5rem;
  font-weight: 600;
}
.site-footer .footer-host-logo {
  display: inline-block;
  border-bottom: none;
}
.site-footer .footer-host-logo:hover { opacity: .8; }
.site-footer .footer-host-logo img {
  max-height: 56px;
  width: auto;
  display: block;
}
.site-footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.site-footer .copyright {
  width: 100%;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  font-size: .85rem;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 820px) {
  .grid.cols-2, .grid.cols-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .post-list li {
    grid-template-columns: 1fr;
    gap: .35rem;
  }
}
@media (max-width: 700px) {
  nav.primary ul { gap: 1rem; flex-wrap: wrap; }
  nav.primary a { font-size: .9rem; }
  .brand .brand-sub { display: none; }
  .brand-group { gap: .75rem; }
  .brand-penn img { height: 34px; }
  .brand-divider { height: 32px; }
  .hero { padding: 3.5rem 0 3rem; }
  section.section { padding: 3rem 0; }
  .hero.hero-home {
    min-height: 480px;
    padding: 4rem 0 3rem;
  }
  .hero.hero-home::before {
    background: linear-gradient(180deg,
      rgba(1, 31, 91, 0.30) 0%,
      rgba(1, 31, 91, 0.55) 45%,
      rgba(1, 31, 91, 0.85) 100%
    );
  }
}

@media (max-width: 520px) {
  .site-header .container {
    justify-content: flex-start;
  }
  nav.primary ul {
    gap: .25rem .9rem;
    width: 100%;
  }
  nav.primary a {
    font-size: .88rem;
  }
}
