/* ─────────────────────────────────────────────
   Fixed background: photo stays bottom-right,
   content scrolls over it on the left.
   ───────────────────────────────────────────── */
html {
  background: #f7f7f7 url('marcus2.jpg') no-repeat right bottom fixed;
  background-size: 42% auto;
}

body {
  font-family: 'Inter', 'SF Pro Display', -apple-system, Helvetica, Arial, sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  padding: 10vh 0 12vh 4vw;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────────
   Content wrapper — frosted glass over photo
   ───────────────────────────────────────────── */
#wrapper {
  width: 52%;
  background-color: rgba(247, 247, 247, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 40px 48px 60px;
  border-radius: 4px;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   Intro / Hero
   ───────────────────────────────────────────── */
#greeting {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.15em;
}

#tagline {
  font-size: clamp(1em, 2vw, 1.3em);
  font-weight: 300;
  font-style: italic;
  color: #888;
  margin-bottom: 1.1em;
  letter-spacing: 0.01em;
}

#intro {
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  max-width: 38em;
}

/* ─────────────────────────────────────────────
   Contact / Social nav
   ───────────────────────────────────────────── */
#contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

#contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.82em;
  font-weight: 400;
  color: #333;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

#contact a:hover {
  background-color: rgba(255, 247, 0, 0.55);
  border-color: #bbb;
  color: #000;
}

#contact a svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.15s ease;
}

#contact a:hover svg {
  opacity: 1;
}

/* ─────────────────────────────────────────────
   Section headings (h2)
   ───────────────────────────────────────────── */
h2 {
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin: 3.5em 0 0.75em;
}

/* ─────────────────────────────────────────────
   Subsection headings (h3) — e.g. Conferences / Corporate
   ───────────────────────────────────────────── */
h3 {
  font-size: 0.65em;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  margin: 1.4em 0 0.5em;
}

/* ─────────────────────────────────────────────
   Lists
   ───────────────────────────────────────────── */
ul {
  border-top: 1px solid #e0e0e0;
}

li {
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 12px;
  transition: background-color 0.15s ease;
}

li:hover {
  background-color: rgba(255, 247, 0, 0.45);
}

/* ─────────────────────────────────────────────
   Links
   ───────────────────────────────────────────── */
a {
  color: #111;
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover  { color: #000; }
a:visited { color: #111; }

/* ─────────────────────────────────────────────
   Project items (Work, Teaching, Awards, Education)
   ───────────────────────────────────────────── */
.project a,
.project {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
  font-weight: 500;
  flex: 1;
}

/* Universal logo container — all logos same size, left-aligned */
.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 44px;
  height: 22px;
  flex-shrink: 0;
}

.logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

li:hover .logo-wrap img {
  opacity: 1;
}

/* Smaller variant for acquisition note — white bg so JPG edges don't show */
.logo-wrap--sm {
  width: 64px;
  height: 18px;
  background: #fff;
  border-radius: 2px;
  padding: 1px 3px;
}

.description {
  font-size: 0.875em;
  font-weight: 300;
  color: #666;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Long descriptions that should wrap (e.g. Charity) */
.description--wrap {
  white-space: normal;
  flex-shrink: 1;
  text-align: right;
  max-width: 60%;
}

/* ── Work: strict 2-column layout (kept for other sections) ── */
.two-col-list li.project {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.project__name-link {
  display: flex;
  align-items: center;
}

.two-col-list li.project > .description {
  text-align: right;
  white-space: nowrap;
}

.project__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.project__note {
  font-size: 0.75em;
  font-weight: 300;
  color: #bbb;
  font-style: italic;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.project__note:hover {
  color: #555;
}

/* ── Current Engagements — logo-box layout ────────────────── */
.engagements {
  border-top: 1px solid #e0e0e0;
}

.engagement {
  border-bottom: 1px solid #e8e8e8;
  padding: 0;
  transition: background-color 0.15s ease;
}

.engagement:hover {
  background-color: rgba(255, 247, 0, 0.45);
}

.engagement > a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 12px 6px;
  color: inherit;
}

.engagement__logo {
  flex-shrink: 0;
  width: 160px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.engagement__logo img {
  width: 160px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
  display: block;
  opacity: 0.82;
  transition: opacity 0.15s ease;
}

.engagement:hover .engagement__logo img {
  opacity: 1;
}

.engagement__company {
  font-size: 1em;
  font-weight: 500;
  color: #111;
  flex: 1;
}

.engagement__role {
  font-size: 0.82em;
  font-weight: 300;
  color: #666;
  white-space: nowrap;
}

.engagement__note {
  display: block;
  font-size: 0.75em;
  font-weight: 300;
  color: #bbb;
  font-style: italic;
  padding: 0 12px 10px calc(12px + 160px + 14px);
  transition: color 0.15s ease;
}

.engagement__note:hover {
  color: #555;
}

.engagement__sub {
  display: block;
  font-size: 0.75em;
  font-weight: 300;
  color: #aaa;
  padding: 0 12px 10px calc(12px + 160px + 14px);
}

/* Semrush brand name in their orange */
.semrush {
  color: #FF642D;
  font-weight: 500;
  font-style: normal;
}

/* Stacked layout: name on top, description below (e.g. Charity) */
.project--stacked,
.project--stacked a {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.project--stacked .description {
  white-space: normal;
  color: #666;
  font-size: 0.875em;
}

/* ─────────────────────────────────────────────
   Awards: Galileo media item
   ───────────────────────────────────────────── */
.project--media {
  flex-direction: column;
}

.project--media a {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.media-thumb {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 3px;
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   Venue grid — pill badges (Where I've Spoken)
   ───────────────────────────────────────────── */
.venue-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 0 4px;
  border-top: none; /* override ul rule — h3 acts as visual divider */
}

.venue-grid li {
  border: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 4px 12px;
  background: rgba(255,255,255,0.7);
  border-radius: 20px;
  font-size: 0.82em;
  font-weight: 400;
  color: #444;
  line-height: 1.5;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  letter-spacing: 0.01em;
}

.venue-grid li:hover {
  background-color: rgba(255, 247, 0, 0.55);
  border-color: #ccc;
}

/* Client logo pills — logo only, no text */
.venue-grid--clients li {
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.venue-grid--clients li img {
  height: 18px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
  opacity: 0.6;
  transition: opacity 0.15s ease;
  filter: grayscale(100%);
}

.venue-grid--clients li:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Corporate pills — logo + name */
.venue-grid--corporate li {
  font-weight: 500;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.venue-grid--corporate li img {
  height: 16px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   Speaking: horizontal scroll strip
   ───────────────────────────────────────────── */
.talks {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 2px 14px;
  border-top: 1px solid #e0e0e0;
  /* Thin, subtle scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}

.talks::-webkit-scrollbar        { height: 3px; }
.talks::-webkit-scrollbar-track  { background: transparent; }
.talks::-webkit-scrollbar-thumb  { background: #ddd; border-radius: 2px; }

/* Individual talk card */
.talks li {
  flex: 0 0 190px;        /* fixed card width */
  border-bottom: none;
  padding: 0;
  border-radius: 5px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #e8e8e8;
  background: #fff;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.talks li:hover {
  background: #fff;       /* override global li:hover yellow */
  border-color: #bbb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.talks a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #111;
}

/* Thumbnail */
.talk__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #e8e8e8;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Play icon overlay */
.talk__thumb::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.talks li:hover .talk__thumb::after {
  opacity: 1;
}

/* Info row below thumbnail */
.talk__info {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.talk__flag {
  font-size: 11px;
  line-height: 1;
}

.talk__title {
  font-size: 0.78em;
  font-weight: 500;
  color: #222;
  line-height: 1.35;
  transition: color 0.15s ease;
}

.talks li:hover .talk__title {
  color: #000;
}

.talk__event {
  font-size: 0.7em;
  font-weight: 300;
  color: #999;
  line-height: 1.3;
}

/* ─────────────────────────────────────────────
   Press items
   ───────────────────────────────────────────── */
.press a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 2px 0;
}

/* Row 1: pill + date on same line */
.press__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Publisher pill */
.press__publisher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  font-size: 0.75em;
  font-weight: 500;
  color: #444;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.15s, border-color 0.15s;
}

li:hover .press__publisher {
  background-color: rgba(255, 247, 0, 0.55);
  border-color: #bbb;
}

.press__favicon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
}

.press__logo {
  height: 13px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.press__date {
  font-size: 0.75em;
  font-weight: 300;
  color: #aaa;
  white-space: nowrap;
}

/* Row 2: article title */
.press__title {
  font-size: 0.95em;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  transition: color 0.15s;
}

li:hover .press__title {
  color: #000;
}

/* Press thumbnail (e.g. Galileo TV still) */
.press__thumb {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 3px;
  margin-top: 4px;
  display: block;
}

/* ─────────────────────────────────────────────
   Consulting — full-width list layout
   ───────────────────────────────────────────── */
.consulting-list {
  border-top: 1px solid #e0e0e0;
}

.consulting-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 12px;
  border-bottom: 1px solid #e8e8e8;
  transition: background-color 0.15s ease;
}

.consulting-item:hover {
  background-color: rgba(255, 247, 0, 0.45);
}

.consulting-item__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  border-radius: 8px;
  color: #888;
  margin-top: 1px;
  transition: background-color 0.15s, color 0.15s;
}

.consulting-item:hover .consulting-item__icon {
  background: rgba(255, 247, 0, 0.8);
  color: #333;
}

.consulting-item__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}

.consulting-item__title {
  font-size: 0.95em;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.consulting-item__body {
  font-size: 0.82em;
  font-weight: 300;
  color: #555;
  line-height: 1.55;
}

.consulting-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  border-top: none;
  padding: 3px 0 0;
}

.consulting-tags li {
  border: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 0.68em;
  font-weight: 400;
  color: #888;
  background: rgba(255,255,255,0.8);
  white-space: nowrap;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.consulting-item:hover .consulting-tags li {
  border-color: #ccc;
  color: #555;
}

/* ─────────────────────────────────────────────
   Weekly Shows
   ───────────────────────────────────────────── */
.shows-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 8px 0 4px;
}

.show__thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
}

.show__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.show:hover .show__thumb {
  transform: scale(1.03);
}

.show__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.15s ease;
  background: rgba(0,0,0,0.15);
}

.show:hover .show__play {
  opacity: 1;
}

.show {
  display: block;
  color: inherit;
}

.show:hover {
  color: inherit;
}

.show__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
  padding: 0 2px;
}

.show__title {
  font-size: 0.88em;
  font-weight: 500;
  color: #222;
}

.show__meta {
  font-size: 0.75em;
  font-weight: 300;
  color: #888;
}

.show__meta a {
  color: #666;
  text-decoration: underline;
  text-decoration-color: #ddd;
}

.show__meta a:hover {
  color: #000;
  text-decoration-color: #999;
}

/* ─────────────────────────────────────────────
   Books grid
   ───────────────────────────────────────────── */
.books {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
  border-top: 1px solid #e0e0e0;
  padding: 12px 0 4px;
}

.book {
  border-bottom: none;
  padding: 0;
}

.book:hover {
  background: transparent;
}

.book a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #333;
}

.book__cover-wrap {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
  background: #eee;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.book:hover .book__cover-wrap {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.book__cover {
  width: 100%;
  height: auto;
  display: block;
}

.book__flag {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 13px;
  line-height: 1;
  background: rgba(255,255,255,0.88);
  border-radius: 3px;
  padding: 2px 4px;
}

.book__title {
  font-size: 0.73em;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
  transition: color 0.15s;
}

.book:hover .book__title {
  color: #000;
}

.book__role {
  font-size: 0.65em;
  font-weight: 400;
  color: #bbb;
  letter-spacing: 0.03em;
}

.book__role--foreword {
  color: #999;
  font-style: italic;
}

/* ─────────────────────────────────────────────
   Giving Back / Charity items
   ───────────────────────────────────────────── */
.project--charity .charity__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.charity__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.charity__name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
  font-weight: 500;
  color: #222;
}

.charity__desc {
  font-size: 0.82em;
  font-weight: 300;
  color: #777;
  line-height: 1.4;
}

.charity__note {
  font-size: 0.72em;
  font-weight: 300;
  color: #bbb;
  font-style: italic;
}

.charity__impact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 1px;
}

.charity__amount {
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #222;
  line-height: 1;
  transition: color 0.15s;
}

li:hover .charity__amount {
  color: #000;
}

.charity__label {
  font-size: 0.65em;
  font-weight: 300;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────────
   Responsive — tablet
   ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  #wrapper {
    width: 60%;
  }
}

/* ─────────────────────────────────────────────
   Mobile hero photo — hidden on desktop
   ───────────────────────────────────────────── */
#mobile-photo {
  display: none;
}

/* ─────────────────────────────────────────────
   Responsive — mobile (no fixed photo, full width)
   ───────────────────────────────────────────── */
@media (max-width: 768px) {
  html {
    background: #f7f7f7;
    /* disable fixed bg on iOS — prevents shaky scroll */
    background-attachment: scroll;
  }

  body {
    padding: 6vh 5% 10vh;
    overflow-x: hidden;
  }

  #wrapper {
    width: 100%;
    padding: 28px 20px 48px;
    background-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  #mobile-photo {
    display: block;
    margin-bottom: 24px;
  }

  #mobile-photo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    object-position: top center;
    border-radius: 3px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18), 4px 6px 0 rgba(0,0,0,0.06);
    transform: rotate(-2deg);
    display: block;
  }

  #greeting {
    font-size: 2.25em;
  }

  #intro {
    font-size: 1.1em;
  }

  .shows-grid {
    grid-template-columns: 1fr;
  }

  .project a,
  .project {
    flex-wrap: wrap;
  }

  .description {
    white-space: normal;
  }

  .description--wrap {
    max-width: 100%;
    text-align: left;
  }
}

/* ─────────────────────────────────────────────
   Reduced motion
   ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #wrapper        { animation: none; }
  li, a,
  .name img,
  .talks a > img  { transition: none; }
}

/* ─────────────────────────────────────────────
   Dark mode
   ───────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  html {
    background-color: #111;
  }

  body {
    color: #ccc;
  }

  #wrapper {
    background-color: rgba(17, 17, 17, 0.95);
  }

  h1 { color: #eee; }
  h2 { color: #555; }
  h3 { color: #4a4a4a; }

  #tagline { color: #666; }

  #contact a {
    background: rgba(255,255,255,0.05);
    border-color: #333;
    color: #aaa;
  }
  #contact a:hover {
    background-color: rgba(255,247,0,0.12);
    border-color: #555;
    color: #eee;
  }

  /* Engagements */
  .engagements { border-top-color: #2a2a2a; }
  .engagement { border-bottom-color: #222; }
  .engagement:hover { background-color: rgba(255,247,0,0.07); }
  .engagement__company { color: #ddd; }
  .engagement__role { color: #666; }
  .engagement__note,
  .engagement__sub { color: #444; }

  /* Consulting */
  .consulting-item { background: rgba(255,255,255,0.03); border-color: #252525; }
  .consulting-item:hover { background: rgba(255,255,255,0.06); border-color: #333; }
  .consulting-item__icon { color: #555; }
  .consulting-item__title { color: #ddd; }
  .consulting-item__body { color: #888; }
  .consulting-tags li { background: rgba(255,255,255,0.06); border-color: #2a2a2a; color: #777; }
  .consulting-item:hover .consulting-tags li { border-color: #383838; }

  /* Shows */
  .show { background: rgba(255,255,255,0.03); }
  .show__title { color: #ccc; }
  .show__meta { color: #666; }

  /* Venue pills */
  .venue-grid li {
    background: rgba(255,255,255,0.04);
    border-color: #282828;
    color: #777;
  }
  .venue-grid li:hover {
    background-color: rgba(255,247,0,0.09);
    border-color: #3a3a3a;
  }

  /* Projects / two-col rows */
  .project { border-bottom-color: #222; }
  .project:hover { background-color: rgba(255,247,0,0.07); }
  .project__name-link,
  .project a { color: #ccc; }
  .description { color: #666; }

  /* Teaching / Awards */
  .two-col-list li { border-bottom-color: #222; }
  .two-col-list li:hover { background-color: rgba(255,247,0,0.07); }

  /* Press */
  .press a { border-bottom-color: #222; }
  .press a:hover { background-color: rgba(255,247,0,0.07); }
  .press__title { color: #ccc; }
  .press__publisher { color: #666; }
  .press__date { color: #555; }

  /* Books */
  .book { background: rgba(255,255,255,0.03); border-color: #252525; }
  .book:hover { background: rgba(255,255,255,0.06); }
  .book__title { color: #ccc; }
  .book__meta { color: #666; }

  /* Footer */
  footer a { color: #444 !important; }
  footer a:hover { color: #888 !important; }
}
