.home-project-index,
.home-note-list {
  display: flex;
  flex-direction: column;
}

.home-object-link {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: transparent;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: padding-left .20s ease, border-color .20s ease, background-color .20s ease;
}

.home-object-link span {
  min-width: 0;
  color: rgba(255,255,255,.88);
  font-size: 12.5px;
  font-weight: 540;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-object-link small,
.home-object-link time {
  color: var(--home-soft);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .03em;
  white-space: nowrap;
}

.home-object-link b {
  justify-self: end;
  color: rgba(255,255,255,.34);
  font-size: 13px;
  font-weight: 400;
  transition: color .20s ease, transform .20s ease;
}

.home-object-link:hover,
.home-object-link:focus-visible {
  padding-left: 5px;
  border-color: rgba(255,255,255,.23);
  background: linear-gradient(90deg, rgba(255,255,255,.025), transparent 68%);
  outline: none;
}

.home-object-link:hover b,
.home-object-link:focus-visible b {
  color: rgba(255,255,255,.84);
  transform: scale(1.08);
}

.home-note-list .home-object-link {
  min-height: 62px;
}

@media (max-width: 520px) {
  .home-object-link {
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .home-object-link small,
  .home-object-link time {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-object-link,
  .home-object-link b {
    transition: none;
  }
}
