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

:root {
  font-size: 16px;
  --color-text: #ffffff;
  --color-bg: #000000;
  --color-link: #ffffff;
  --item-font-size: 10vw;
}

body {
  margin: 0;
  padding: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}



.header {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  padding: 10vh 0 5vh;
}

.header__item {
  cursor: default;
  position: relative;
  padding: 0 5vw;
}

.header__title {
  display: inline-block;
  cursor: default;
  position: relative;
  color: #ffffff;
  white-space: nowrap;
  font-size: var(--item-font-size);
  font-weight: 900;
  line-height: 1.15;
  padding: 0 1vw;
  text-transform: none;
}



.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 5vw;
  position: relative;
  z-index: 1;
}

.content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: #ebe684;
}

.content h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.content p {
  line-height: 1.7;
  margin: 0.8rem 0;
  color: #ccc;
}

.content a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content a:hover {
  color: #aaa;
}

.content ul {
  color: #ccc;
  line-height: 1.7;
  margin: 0.8rem 0;
  padding-left: 1.5rem;
}

.content li {
  margin: 0.4rem 0;
}

.content hr {
  border: none;
  border-top: 1px solid #333;
  margin: 2rem 0;
}

.headshot {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
  border: 2px solid #fff;
  width: 180px;
}

.notes-list {
  list-style: none;
  padding: 0;
}

.notes-list li {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.notes-list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 1.1rem;
}

.note-date {
  color: #888;
  font-size: 0.85rem;
}

.back-link {
  margin-bottom: 2rem;
}

.back-link a {
  color: #aaa;
  text-decoration: none;
}

.back-link a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumbs {
  padding: 2rem 5vw 0;
  font-size: 0.9rem;
}

/* Add spacing after breadcrumbs when there's no header/marquee */
.breadcrumbs + .content {
  margin-top: 3rem;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs span {
  color: #888;
}

/* Notes page specific - yellow bar */
.notes-page .content::before {
  background-color: #ebe684;
}

.notes-page .content h2,
.notes-page .content p,
.notes-page .content a,
.notes-page .content ul {
  font-weight: 700;
}

.notes-page .header__title {
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  pointer-events: none;
}

.notes-page .header__title:hover {
  opacity: 1 !important;
  transition: none !important;
}

@media (max-width: 600px) {
  :root {
    --item-font-size: 14vw;
  }

  .headshot {
    float: none;
    display: block;
    margin: 0 auto 20px;
  }
}
