@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@400;700&family=Nunito:wght@200;400;600;700;800&family=Oswald:wght@700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Redressed&display=swap");
:root {
  --scale: 1.05;
  --bkg-offwhite: #fcf9f0;
  --offwhite: #f6f2eb;
  --accent-brown: #5a3320;
  --text-dark: #290000;
  --text-gray: #a2a2a2;
  --vlightgray: #ddd;
  --lightgray: #aaa;
  --mediumgray: #666;
  --darkgray: #444;
  --black: #000d04;
  --vlightgreen: #eef0ef;
  --lightgreen: #92b5ae;
  --lightergreen: #c5e3af;
  --graygreen: #65737e;
  --alt-green: #729c93;
  --bkg-light-green: #5a7263;
  --mediumgreen: #375750;
  --dart-lightgreen: #00693e;
  --dart-blackgreen: #0d1e1c;
  --dart-darkgreen: #12312b;
  --bkg-mediumgreen: #314639;
  --bkg-darkgreen: #1b502e;
  --blackgreen: #002e11;
  --anchor-green: #46604f;
  --anchor-red: #a05050;
  --hovergreen: #568d7b;
  --ff-serif: "Bitter", serif;
  --ff-serif-alt: "Lora", serif;
  --ff-sans-serif: "Nunito", sans-serif;
  --ff-sans-serif-alt: "Noto Serif", serif;
  --ff-header: "Bitter", serif;
  --ff-Redressed: "Redressed", cursive;
  --ff-title: Georgia, serif;
  --ff-display: "Playfair Display", serif;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* added */
fieldset {
  border: 0;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
/*
@media (prefers-reduced-motion: reduce) {
   html:focus-within {
      scroll-behavior: auto;
   }

   *,
   *::before,
   *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
   }
}
*/
html,
body {
  --colheight: 50em;
  font-size: clamp(1rem, 1.0202rem + 0.3548vw, 1.375rem);
  background: var(--mediumgreen);
  max-width: 1600px;
  margin: 0 auto;
}

.content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* ===== shared header ===== */
header nav a {
  text-decoration: none;
}

header nav a:link:not(.active),
header nav a:visited:not(.active) {
  color: var(--offwhite);
}

header nav .active {
  color: var(--lightgreen);
}

header nav li:hover.active a {
  color: var(--lightgreen);
  scale: 0.95;
}

header nav li:not(.active) a:hover {
  color: var(--lightergreen);
}

header nav a,
header nav a:hover {
  transition: all 0.3s ease-in-out;
}

p {
  line-height: 1.5;
  margin: 1em 0 0.5em 0;
  text-indent: 0;
}
p + p {
  text-indent: 0em;
}

.header-wrapper {
  width: 100%;
  position: relative;
  background: linear-gradient(0deg, var(--dart-darkgreen) 15%, var(--dart-blackgreen) 50%);
}

header {
  position: relative;
  font-size: 0.8em;
  width: 100%;
  padding: 0.3em;
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 3.5em;
  width: 3.5em;
  top: 50%;
  left: 6%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("/images/logo-300.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.bada-click {
  position: absolute;
  width: 3em;
  height: 4em;
  top: 0.5em;
  left: 1em;
  background: transparent;
}
.bada-click:hover {
  cursor: pointer;
}

nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
nav ul {
  color: var(--offwhite);
  display: flex;
  margin: 0;
  padding: 0 4em 0 0;
  list-style: none;
  font-family: var(--ff-sans-serif);
  font-variant: small-caps;
  font-size: 0.8em;
  line-height: 0.9;
}
nav li {
  margin-left: 0em;
  padding: 0.5em;
}
nav li a {
  color: var(--lightgray);
}
nav li:nth-child(7) {
  display: none;
}

.header-title-wrapper h1 {
  font-family: "Playfair Display";
  font-weight: 400;
  font-size: 2em;
  letter-spacing: 2px;
  padding: 0.25em;
  line-height: 1;
  color: var(--offwhite);
  text-align: center;
}

/* ===== shared footer ===== */
.footer-wrapper {
  background: linear-gradient(0deg, var(--dart-blackgreen), black);
  width: 100%;
  font-family: var(--ff-sans-serif);
  color: var(--offwhite);
  text-align: center;
  font-size: 0.9rem;
  padding-block: 0.7em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  border: -1px solid white;
}
.footer-wrapper a {
  color: var(--offwhite);
  text-decoration: none;
}
.footer-wrapper p {
  color: var(--offwhite);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  text-indent: 0;
}
.footer-wrapper:link, .footer-wrapper:visited {
  color: var(--lightgray);
}
.footer-wrapper:hover, .footer-wrapper:active {
  color: var(--lightgreen);
}

.divider-panel {
  --divider-color: var(--alt-green);
  --divider-thickness: 0.1em;
  position: relative;
  width: 100%;
  margin-top: -0.4em;
}
.divider-panel .divider-content {
  height: auto;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  font-size: 1em;
}
.divider-panel .divider-content::before {
  content: "";
  position: absolute;
  width: min(50ch, 60vw);
  height: var(--divider-thickness);
  inset: 0;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.divider-panel .divider-content-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  padding-inline: 0.2em;
  color: var(--vlightgray);
  background: #05241b;
  font-family: "Libre+Baskerville";
  font-style: italic;
  font-size: 1em;
}
.divider-panel .divider-content-wrapper span {
  font-weight: 800;
  font-family: "Oswald";
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ===== media queries ===== */
@media only screen and (max-width: 767px) {
  header:before {
    display: none;
  }

  .header-title-wrapper h1 {
    font-size: 1.7em;
  }

  nav {
    justify-content: center;
  }
}
/* view.css */
/* thanks Karen Menezes for radio buttons: http://blog.karenmenezes.com/ */
body {
  --form-control-color: var(--offwhite);
  --colheight: 46em;
  --nav-height: 11em;
}

#myBtn {
  font: var(--ff-sans-serif);
  font-weight: 600;
  line-height: 1.3;
  border-radius: 4px;
  letter-spacing: 1px;
  font-variant: all-small-caps;
  position: absolute;
  left: 45%;
  font-size: 0.7em;
  bottom: -0.5em;
  /* in middle of 1em gap space */
  color: var(--offwhite);
  border: 2px inset var(--dart-blackgreen);
  background: var(--accent-brown);
  transition: all 250ms ease-in-out;
}
#myBtn:hover {
  cursor: pointer;
  background: #895d48;
}
#myBtn:active {
  opacity: 0.8;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

/* general links */
a {
  transition: text-shadow 250ms ease-in-out;
}
a:link, a:visited, a:active {
  color: var(--dart-blackgeen);
  text-decoration: none;
  text-shadow: 0 0 1px var(--mediumgray);
}
a:hover {
  color: var(--dart-blackgeen);
  text-shadow: 0 0 1px var(--darkgray);
}

p {
  line-height: 1.5;
  margin: 1em 0 0.5em 0;
  text-indent: 0;
}
p + p {
  text-indent: 0em;
}

/* Scrollbars */
.bio-column,
.nav-column {
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.bio-column::-webkit-scrollbar,
.nav-column::-webkit-scrollbar {
  display: none;
}

/* main content */
#content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: var(--accent-brown);
}

.wrapper-main {
  width: clamp(300px, 100%, 1600px);
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: var(--ff-serif);
  font-size: 0.8em;
  background: var(--offwhite);
}

.two-columns {
  position: relative;
  width: 100%;
  display: flex;
  height: var(--colheight);
  overflow: auto;
}

#alum-image-column {
  position: relative;
  flex-basis: 30%;
  overflow: auto;
  background: var(--dart-blackgreen);
  box-shadow: 3px -3px 0.2em var(--lightgray);
}

.bio-column {
  position: relative;
  flex-basis: 70%;
  overflow: scroll;
  font-size: 0.9em;
}

/* Navlist Column  */
#alum-image-column::webkit-scrollbar,
.bio-column::webkit-scrollbar,
.nav-column::-webkit-scrollbar,
.nav-list::-webkit-scrollbar {
  display: none;
}

.nav-column {
  width: 66%;
  position: absolute;
  bottom: 0;
  left: 15%;
  border-bottom: 5px solid var(--dart-blackgreen);
  max-height: var(--nav-height);
  overflow: auto;
  background: var(--lightgreen);
  font-family: var(--ff-sans-serif);
  font-size: 1em;
  opacity: 0.7;
  transition: opacity 350ms ease-in-out;
}
.nav-column:hover {
  opacity: 1;
}
.nav-column .link {
  padding: 8px 25px;
  cursor: pointer;
  transition: 500ms;
}
.nav-column .link:hover {
  color: red;
}
.nav-column ul.names {
  flex-direction: column;
  align-items: center;
}
.nav-column ul.years {
  flex-direction: column;
  align-items: start;
  overflow: hidden;
}
.nav-column ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  padding: 0;
}
.nav-column ul li {
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0.25em;
}
.nav-column ul a {
  text-align: center;
}
.nav-column ul li.name-sorted {
  font-size: 0.95em;
  padding: 0.2em 0;
  text-align: center;
}
.nav-column ul a em {
  font-style: italic;
  font-weight: 400;
}

#navlist-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  inset: 0;
  height: 2em;
  width: 100%;
  background: var(--dart-blackgreen);
  color: var(--vlightgray);
  font-size: 0.9em;
  padding-block: 0.25em;
}
#navlist-header p {
  width: 100%;
  font-family: var(--ff-sans-serif);
  font-size: 0.9em;
  padding: 0.2em 0;
  margin: 0;
  text-align: center;
  font-weight: 600;
  border: 2px solid var(--lightgreen);
  border-bottom: none;
}

#alum-navlist {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 0;
  overflow: hidden;
  font-size: 0.8em;
  line-height: 1;
}

#alum-navlist .selected {
  background: inherit;
}
#alum-navlist .selected a {
  color: var(--dart-blackgreen);
  text-decoration: underline;
}

#alum-navlist li.year {
  margin-top: 0.2em;
  margin-left: 2em;
  text-align: left;
  color: var(--dart-blackgreen);
  font-weight: 800;
}

#alum-navlist li.name {
  padding: 0;
  font-weight: 400;
  margin-left: 1em;
  text-shadow: none;
}
#alum-navlist li.name a:hover {
  text-shadow: none;
  font-weight: 600;
}

/* Alum Image column */
.alum-name-wrapper {
  width: 100%;
  margin-top: 1em;
}

/* ===== MAIN COLUMN CAREER, NOTES, SOURCES ===== */
.bio-wrapper {
  margin-inline: 2%;
}

.quoted-header {
  /* gradient undeline */
}
.quoted-header p {
  margin-block: 1em 0;
  font-size: 1.2em;
  font-weight: 800;
  font-family: var(--ff-sans-serif);
  text-align: center;
  color: var(--blackgreen);
}
.quoted-header::after {
  content: "";
  display: block;
  margin: 0 auto;
  height: 0.15em;
  width: 68%;
  background: linear-gradient(to left, var(--offwhite), var(--blackgreen), var(--offwhite));
}

.note-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: relative;
  line-height: 1.5;
  padding: 0.5em 2em;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-wrap: break-word;
}
.note-wrapper + p {
  text-indent: 0;
}

.note-text {
  width: 100%;
  position: relative;
  font-size: 1em;
  font-weight: 400;
  margin: 0 auto;
  padding: 0.1em clamp(0.5rem, 2vw, 3rem);
}
.note-text p {
  line-height: 1.7;
  margin: 0 0 1em 0;
}
.note-text p:first-of-type::first-letter {
  font-family: var(--ff-Redressed);
  font-size: 2em;
  line-height: 1;
}
.note-text:before {
  position: absolute;
  color: var(--bkg-darkgreen);
  content: "“";
  font-family: var(--ff-title);
  font-weight: 400;
  display: block;
  font-size: 2em;
  left: -0.7em;
  top: -0.3em;
}
.note-text:after {
  position: absolute;
  color: var(--bkg-darkgreen);
  content: "”";
  font-family: var(--ff-title);
  font-weight: 400;
  display: block;
  font-size: 2em;
  right: -0.3em;
  bottom: 0em;
}
.note-text .can-hide {
  display: none;
}
.note-text .dots {
  display: none;
}

/* ===== SOURCES ===== */
.sources-wrapper {
  padding: 0 0 1em;
  font-size: 0.9em;
  line-height: 1.2;
  transition: opacity, color, text-shadow 250ms ease-out;
}
.sources-wrapper a:link, .sources-wrapper a:hover, .sources-wrapper a:visited, .sources-wrapper a:active {
  color: var(--anchor-red);
  text-shadow: none;
  text-shadow: 0 0 1px var(--mediumgray);
  opacity: 0.8;
}
.sources-wrapper a:hover {
  color: var(--anchor-red);
  text-shadow: 0 0 2px var(--mediumgray);
  opacity: 1;
}

cite {
  font-family: var(--ff-sans-serif);
  font-style: normal;
  color: var(--mediumgray);
  line-height: 1.1;
}
cite i {
  line-height: 1;
}

.sources-text-header {
  font-family: var(--ff-sans-serif);
  color: var(--darkgray);
  line-height: 1;
  margin: 0.6em 0 0 0;
  padding: 0;
}

.profile-source {
  font-family: var(--ff-sans-serif);
  color: var(--mediumgray);
  line-height: 1;
  margin: 0.5em 0 0 0;
  padding: 0;
  text-indent: -2em;
  padding-left: 2em;
}
.profile-source em {
  font-style: normal;
  color: var(--darkgray);
}

.sources-text {
  font-family: var(--ff-sans-serif);
  color: var(--mediumgray);
  text-indent: 0;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}
.sources-text ol {
  list-style-type: disc;
  margin: 0;
  padding: 0 1em 0 3em;
}
.sources-text ol li {
  position: relative;
  margin: 0;
  padding: 0.1em 0;
}

.refline {
  border-style: inset;
  border-width: 2px;
  display: block;
  margin: 0.3em 0 0.2em 0;
  width: 40%;
}

/* ===== Alum Image and info ===== */
.alum-name {
  display: flex;
  flex-direction: column;
  place-items: center;
  margin-block: 1.8em 0.5em;
}
.alum-name h2 {
  font-family: "Playfair Display";
  font-weight: 400;
  font-size: 1.1em;
  line-height: 1.3;
  color: var(--offwhite);
  text-align: center;
  text-shadow: 1px 1px 3px var(--dart-blackgreen);
  padding: 0 1em 0 1em;
}
.alum-name h2::after {
  content: "";
  display: block;
  width: 90%;
  height: 0.1em;
}

.career-summary {
  font-family: var(--ff-sans-serif);
  font-style: italic;
  font-size: 0.8em;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  padding-inline: 2em;
  color: var(--lightgray);
}

.alum-image-wrapper-check {
  display: block;
  clear: both;
}

figure.alum-image {
  display: block;
  position: relative;
  margin: 0em auto;
  margin-bottom: 0.25em;
}
figure.alum-image img {
  display: block;
  margin: 0 auto;
  max-width: 76%;
  height: auto;
  border: 0.2em solid var(--blackgreen);
}
figure.alum-image img:hover {
  cursor: zoom-in;
}

.alum-info {
  font-family: var(--ff-sans-serif);
  margin-bottom: 1em;
}

.alum-data-wrapper {
  font-size: 0.8em;
  line-height: 1.4;
  color: var(--vlightgray);
}
.alum-data-wrapper p.label {
  margin: 0;
  text-align: center;
}
.alum-data-wrapper p.data {
  margin: 0 0.3em;
  font-family: var(--ff-sans-serif);
  line-height: 1.4;
  text-indent: 0;
  text-align: center;
}

/* Secondary Nav */
.nav-secondary-wrapper {
  display: block;
  width: 100%;
  height: var(--nav-height);
}

.nav-secondary {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 0;
  border-radius: 0.25em;
  background: transparent;
}

ul.prev-next {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0.25em;
  font-family: var(--ff-sans-serif);
  font-variant: small-caps;
  font-size: 1.1em;
  background-color: black;
  color: var(--mediumgray);
  line-height: 1;
}
ul.prev-next li {
  font-size: 0.6em;
  font-weight: 600;
  padding: 0;
  list-style: none;
}
ul.prev-next li a {
  display: inline-block;
  padding-inline: 0.5em;
  background-color: black;
  transition: all 250ms ease-in-out;
}
ul.prev-next li.left a {
  font-weight: 600;
  width: auto;
  text-align: right;
}
ul.prev-next li.right a {
  font-weight: 600;
  width: auto;
  text-align: left;
}
ul.prev-next li a:hover, ul.prev-next li a:active {
  font-style: italic;
  color: var(--lightgray);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.scrollup {
  display: none;
  position: absolute;
  bottom: -10vh;
  right: 0.25em;
  width: 2em;
  height: 2em;
  border: 0;
  padding: 0;
  border-radius: 100%;
  cursor: pointer;
  z-index: 200;
  opacity: 0;
  font-weight: bold;
  font-size: 1.5em;
  color: var(--mediumgray);
  background: transparent;
}
.scrollup.showing {
  opacity: 0.6;
  bottom: 50vh;
}
.scrollup:hover {
  opacity: 0.6;
}
.scrollup:focus {
  outline: none;
}
@media (max-width: 767px) {
  .scrollup {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

/* radio buttons */
form {
  position: absolute;
  width: 100%;
}

.form-control {
  font-family: var(--ff-sans-serif);
  font-size: 0.7em;
  font-weight: bold;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 1em;
}

.radio-buttons {
  display: flex;
  place-content: center;
  justify-content: space-between;
  padding: 0.5em;
  gap: 1em;
  font-size: 1em;
}

.form-control + .form-control:focus-within {
  color: var(--offwhite);
}

input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--offwhite);
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  display: grid;
  place-content: center;
}
input[type=radio]::before {
  content: "";
  width: 0.85em;
  height: 0.85em;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: 120ms -webkit-transform ease-in-out;
  transition: 120ms transform ease-in-out;
  transition: 120ms transform ease-in-out, 120ms -webkit-transform ease-in-out;
  background-color: black;
}
input[type=radio]:checked::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
input[type=radio]:checked::before:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
}

/** new buttons **/
:root {
  --form-control-color: var(--dart-blackgreen);
}

form {
  display: grid;
  place-content: center;
}

.form-control {
  font-family: system-ui, sans-serif;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
}

.radio-buttons {
  display: flex;
  gap: 4em;
}

.form-control + .form-control:focus-within {
  color: var(--form-control-color);
}

.form-control:focus-within {
  color: var(--form-control-color);
}

input[type=radio] {
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  display: grid;
  place-content: center;
}

/* ===== MEDIA QUERIES ===== */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  #navlist-header {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 767px) {
  body {
    --nav-height: 8em;
  }

  #content {
    margin: 0 auto;
  }

  .menu-toggle {
    display: none;
  }

  .wrapper-main {
    cursor: default;
  }

  .two-columns {
    flex-direction: column;
    height: auto;
  }

  .alum-data-wrapper {
    margin-bottom: 0;
    font-size: 1.1em;
  }

  .nav-column {
    position: relative;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    max-height: 7em;
    width: 14em;
    font-size: 1.2em;
  }

  .nav-secondary-wrapper {
    border: 0;
    height: 100%;
    width: 100%;
  }

  ul.prev-next {
    font-size: 1.5em;
  }

  #navlist-header {
    font-size: 0.9em;
  }

  #alum-navlist {
    font-size: 0.9em;
  }

  .note-wrapper {
    padding: 0.5em;
  }

  .alum-name h2 {
    font-size: 2em;
  }

  .quoted-header::after {
    display: none;
  }

  .bio-wrapper {
    margin: 0 5%;
  }

  .sources-wrapper {
    pointer-events: none;
  }
}
@media only screen and (max-width: 467px) {
  .sources-wrapper {
    pointer-events: none;
    font-size: 1.1em;
    line-height: 1.5;
  }
}
