.index h1 {
  margin-bottom: 0;
}

.fancy-section {
  position: relative;

  margin: 4rem 0 4rem;
  min-height: 4.5rem;
}

.year-number {
  position: absolute;
  z-index: -1;
  top: -4.8rem;
  left: -2.5rem;

  font-size: 10rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.08em;

  color: var(--fg);
  opacity: 0.065;

  user-select: none;
  pointer-events: none;
}

.posts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;

  margin: 0;
}

.title {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;

  color: var(--muted);
  text-decoration: none;
}

.title:hover {
  color: var(--fg);
  opacity: 1;
}

.meta {
  font-size: 0.9rem;
  color: var(--muted);
  white-space: nowrap;

  opacity: 0.65;
}

header {
  margin-bottom: 1rem;
}

article {
  margin-top: 0;
}

article h1 {
  margin: 0;
}

article .meta {
  margin-bottom: -0.25rem;
}

@media (max-width: 820px) {
  .year-number {
    top: -2.5rem;
    left: -0.4rem;

    font-size: 5.5rem;
  }
}

@media (max-width: 600px) {
  .header {
    margin-bottom: 3rem;
  }

  .year {
    margin: 3.5rem 0 4rem;
  }

  .row {
    flex-direction: column;
    gap: 0;

    margin-bottom: 0.5rem;
  }

  .title {
    font-size: 1rem;
  }

  .meta {
    font-size: 0.85rem;
  }
}

.recipe-category {
  position: relative;
  margin-top: 4rem;
}

.recipe-category-name {
  position: absolute;
  z-index: -1;
  top: -0.42rem;
  left: -2.5rem;
  transform: translateY(-42%);

  font-size: 6.5rem;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;

  color: var(--fg);
  opacity: 0.065;

  user-select: none;
  pointer-events: none;
}

.recipe-category:first-of-type {
  margin-top: 0;
}

@media (max-width: 820px) {
  .recipe-category-name {
    top: -0.15rem;
    left: -0.4rem;

    font-size: 4.0rem;
  }
}
