* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-bg);
  font-family: var(--font-sans);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
}

.nav-link {
  position: relative;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--color-ink);
}
.nav-link.active {
  color: var(--color-ink);
}
.nav-link.inactive {
  opacity: .55;
}

.thumb,
.thumb-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 11px/1.4 var(--font-mono);
  letter-spacing: .02em;
  text-align: center;
}
.thumb {
  background: repeating-linear-gradient(135deg, rgba(0, 0, 0, .055) 0 2px, transparent 2px 14px);
  color: rgba(0, 0, 0, .32);
}
.thumb-dark {
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 2px, transparent 2px 14px);
  color: rgba(255, 255, 255, .4);
}
img.post-card__thumb,
img.post-feature-image,
img.highlight-card__visual,
img.about-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
