/* $darkbrown: #332a29; */
.feed {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feed .note {
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
}
.feed .note .note-title {
  color: #e26d5c;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.feed .note .note-title:hover {
  color: #ffe1a8;
}
.feed .note .note-title .title-icon {
  width: 1.4rem;
  margin-left: -1.8rem;
  padding-right: 0.4rem;
  color: inherit;
}
@media screen and (max-width: 600px) {
  .feed .note .note-title .title-icon {
    margin-left: 0;
  }
}
.feed .note .note-title .title-text {
  font-weight: bold;
  font-size: 1.3rem;
  color: inherit;
}
.feed .note .note-subtitle {
  margin-bottom: 0;
}
.feed .note .note-date {
  margin-top: 0;
  font-size: 1rem;
  opacity: 0.5;
}