:root {
  color-scheme: light;
  --text: #333;
  --muted: #999;
  --faint: #cfcfcf;
  --link: #1772d0;
  --link-hover: #0b4d8a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--text);
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

#dhead {
  margin-top: 20px;
}

#dpic {
  grid-column: span 6;
  text-align: right;
}

#ddesc {
  grid-column: span 6;
  padding-top: 40px;
  padding-left: 20px;
}

.ppic {
  width: 240px;
  height: 240px;
  border-radius: 120px;
  object-fit: cover;
  border: 1px solid #ddd;
}

h1 {
  padding: 0;
  margin: 0;
  font-size: 34px;
  font-weight: normal;
}

h2 {
  max-width: 330px;
  padding: 0;
  margin: 5px 0 10px;
  color: var(--muted);
  font-size: 18px;
  font-style: italic;
  font-weight: normal;
}

#dico {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.iico {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  background: #f5f5f5;
  color: #555;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.iico:hover {
  color: #222;
  text-decoration: none;
  background: #eee;
}

hr {
  height: 1px;
  margin: 20px 0;
  padding: 0;
  border: 0;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.ico {
  position: relative;
  grid-column: span 1;
  border-left: 2px solid var(--faint);
}

.entry-dot {
  position: absolute;
  top: 0;
  left: -8px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 7px;
  background-color: var(--faint);
}

.entry-mark,
.pmark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-left: 10px;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  background: #f7f7f7;
  color: #555;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}

.desc {
  grid-column: span 10;
  padding-left: 20px;
  padding-bottom: 20px;
  font-size: 17px;
}

.timespan {
  grid-column: span 1;
  padding-right: 5px;
  color: #bbb;
  font-size: 14px;
  text-align: right;
}

.ctitle {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 36px;
}

.band {
  margin-top: 10px;
  padding-top: 1px;
  padding-bottom: 20px;
  background: #eee;
}

.project {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.band .project {
  border-bottom-color: #d8d8d8;
}

.pico {
  float: left;
  margin-right: 10px;
}

.pmark {
  width: 80px;
  height: 80px;
  margin-left: 0;
}

.pdesc {
  min-height: 80px;
}

.project-title,
.pdesc a {
  font-weight: bold;
}

.pend {
  clear: both;
}

.note {
  padding-top: 30px;
  padding-bottom: 80px;
}

.note h1 {
  margin-top: 10px;
}

.note h2 {
  max-width: none;
  margin-top: 32px;
  color: #333;
  font-style: normal;
  font-weight: normal;
}

.note .eyebrow {
  margin: 20px 0 0;
  color: #999;
  font-size: 14px;
}

.note .lede {
  margin: 8px 0 20px;
  color: #666;
  font-size: 18px;
  font-style: italic;
}

@media (max-width: 620px) {
  #dpic {
    grid-column: span 12;
    text-align: center;
  }

  #ddesc {
    grid-column: span 12;
    padding-top: 20px;
    padding-left: 0;
    text-align: center;
  }

  h2 {
    max-width: none;
  }

  #dico {
    justify-content: center;
  }

  .timespan {
    grid-column: span 2;
    font-size: 13px;
  }

  .ico {
    grid-column: span 2;
  }

  .desc {
    grid-column: span 8;
    padding-left: 12px;
    font-size: 16px;
  }

  .entry-mark {
    width: 42px;
    height: 42px;
    font-size: 11px;
  }

  .pmark {
    width: 56px;
    height: 56px;
    font-size: 11px;
  }
}
