#page-note {
  display: flex;
  flex-direction: column;
  border-left: 1px dashed black;
  padding-top: 100px;
  min-height: calc(100vh - 40px);
}
#page-note .page-header {
  padding-left: 20px;
  margin-bottom: 50px;
}
#page-note .page-header .page-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
#page-note .page-header .page-description {
  font-size: 11px;
  font-weight: normal;
}
#page-note .note-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  padding-left: 20px;
  width: 100%;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}
#page-note .note-content a.text-link {
  text-decoration: none;
  height: max-content;
  position: relative;
  padding: 2px 4px;
}
#page-note .note-content a.text-link:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 0;
  bottom: 0;
  z-index: -1;
  background-color: #6ab977;
  transition: height 0.1s;
}
#page-note .note-content a.text-link:hover {
  color: white;
}
#page-note .note-content a.text-link:hover:before {
  height: 100%;
}
#page-note .note-content .source-target {
  position: relative;
}
#page-note .note-content .source-target .source-target-content {
  position: absolute;
  right: 0;
  top: 0;
  translate: 40% -60%;
  font-size: 8px;
  opacity: 0.5;
}
#page-note .note-content .writing {
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  line-height: 1.5;
}
#page-note .note-content .writing:not(:last-child) {
  border-bottom: 1px solid #eee;
}
#page-note .note-content .writing .writing-title {
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
#page-note .note-content .writing .writing-separator {
  height: 10px;
}
#page-note .note-content .writing .writing-footer {
  margin-top: 10px;
  opacity: 0.5;
  font-size: 11px;
}
#page-note .note-content .writing.writing-play {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#page-note .note-content .writing.writing-play .play-item {
  display: flex;
  gap: 10px;
}
#page-note .note-content .writing.writing-play .play-item .play-character {
  font-size: 12px;
  min-width: max-content;
}
#page-note .note-content .writing.writing-play .play-item .play-action {
  font-size: 12px;
  font-style: italic;
}
#page-note .note-content .writing.writing-play .play-item.action-only {
  margin: 10px 0;
}
#page-note .note-content .writing.writing-play .play-item .play-dialogue {
  font-size: 14px;
}
#page-note .note-content .writing.writing-fiction {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#page-note .note-content .writing.writing-poetry {
  display: flex;
  flex-direction: column;
  gap: 2.5px;
}
#page-note .note-content .writing.writing-poetry.writing-analysis {
  flex-direction: row;
}
#page-note .note-content .writing.writing-poetry .poetry-content {
  width: 50%;
  flex: 0 50%;
}
#page-note .note-content .writing.writing-poetry .poetry-explanation {
  width: 50%;
  flex: 0 50%;
  font-weight: 700;
}
#page-note .note-content .writing.writing-poetry ul {
  list-style-type: circle;
  padding-inline-start: 20px;
  margin-bottom: 10px;
}
#page-note .note-content .writing.writing-left {
  padding-left: 20px;
}
#page-note .note-content .note-quote {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 80%;
  padding-inline-start: 20px;
}
#page-note .note-content .note-quote .quote {
  font-size: 16px;
  font-style: italic;
}
#page-note .note-content .note-quote .author {
  font-size: 11px;
}
#page-note .note-content.note-code ul, #page-note .note-content.note-code ol {
  padding-left: 1.5rem;
  font-family: "JetBrainsMono", sans-serif;
  font-size: 14px;
}
#page-note .note-content.note-code i {
  font-size: 12px;
  color: #6ab977;
  background: #F2F2F2;
  padding: 0.125rem;
  border-radius: 5px;
}
#page-note .note-content.note-code i.quote {
  color: cornflowerblue;
}
#page-note .note-sources {
  width: 100vw;
  margin-top: 50px;
  padding: 20px;
  font-size: 14px;
  border-top: 1px dashed black;
  opacity: 0.4;
}
#page-note .note-sources .source-title {
  font-size: 14px;
  font-weight: bold;
  opacity: 0.7;
}
#page-note .note-sources .source-list {
  list-style-type: none;
}
#page-note .note-sources .source-list .source-item {
  margin-top: 5px;
  position: relative;
  padding-left: 10px;
}
#page-note .note-sources .source-list .source-item a.source-label {
  font-size: 12px;
  color: black;
  display: inline-flex;
  align-items: center;
}
#page-note .note-sources .source-list .source-item a.source-label .link-preview {
  margin-left: 5px;
  display: inline-block;
  max-width: 400px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#page-note .note-sources .source-list .source-item .source-number {
  font-size: 12px;
}
#page-note .note-sources .source-list .source-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background-color: black;
  width: 6px;
  height: 6px;
  rotate: 45deg;
}
#page-note .note-sources:hover {
  opacity: 1;
}

@media (max-width: 500px) {
  #page-note {
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #page-note .page-header {
    padding: 1rem 2rem;
    margin-top: 20px;
  }
  #page-note .page-header .page-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  #page-note .page-header .page-description {
    font-size: 11px;
    font-weight: normal;
  }
  #page-note .note-content {
    padding: 1rem 2rem;
  }
  #page-note .note-content a.text-link {
    text-decoration: none;
    height: max-content;
    position: relative;
    padding: 2px 4px;
  }
  #page-note .note-content a.text-link:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    height: 0;
    bottom: 0;
    z-index: -1;
    background-color: #6ab977;
    transition: height 0.1s;
  }
  #page-note .note-content a.text-link:hover {
    color: white;
  }
  #page-note .note-content a.text-link:hover:before {
    height: 100%;
  }
  #page-note .note-content .source-target {
    position: relative;
  }
  #page-note .note-content .source-target .source-target-content {
    position: absolute;
    right: 0;
    top: 0;
    translate: 40% -60%;
    font-size: 8px;
    opacity: 0.5;
  }
  #page-note .note-content .writing {
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    line-height: 1.5;
  }
  #page-note .note-content .writing:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
  #page-note .note-content .writing .writing-title {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  #page-note .note-content .writing .writing-separator {
    height: 10px;
  }
  #page-note .note-content .writing .writing-footer {
    margin-top: 10px;
    opacity: 0.5;
    font-size: 11px;
  }
  #page-note .note-content .writing.writing-play {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  #page-note .note-content .writing.writing-play .play-item {
    display: flex;
    gap: 10px;
  }
  #page-note .note-content .writing.writing-play .play-item .play-character {
    font-size: 12px;
    min-width: max-content;
  }
  #page-note .note-content .writing.writing-play .play-item .play-action {
    font-size: 12px;
    font-style: italic;
  }
  #page-note .note-content .writing.writing-play .play-item.action-only {
    margin: 10px 0;
  }
  #page-note .note-content .writing.writing-play .play-item .play-dialogue {
    font-size: 14px;
  }
  #page-note .note-content .writing.writing-fiction {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  #page-note .note-content .writing.writing-poetry {
    display: flex;
    flex-direction: column;
    gap: 2.5px;
  }
  #page-note .note-content .writing.writing-poetry ul {
    list-style-type: circle;
    padding-inline-start: 20px;
    margin-bottom: 10px;
  }
  #page-note .note-content .note-quote {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 80%;
    padding-inline-start: 20px;
  }
  #page-note .note-content .note-quote .quote {
    font-size: 16px;
    font-style: italic;
  }
  #page-note .note-content .note-quote .author {
    font-size: 11px;
  }
  #page-note .note-sources {
    width: 100vw;
    margin-top: 50px;
    padding: 20px;
    font-size: 14px;
    border-top: 1px dashed black;
    opacity: 0.4;
  }
  #page-note .note-sources .source-title {
    font-size: 14px;
    font-weight: bold;
    opacity: 0.7;
  }
  #page-note .note-sources .source-list {
    list-style-type: none;
  }
  #page-note .note-sources .source-list .source-item {
    margin-top: 5px;
    position: relative;
    padding-left: 10px;
  }
  #page-note .note-sources .source-list .source-item a.source-label {
    font-size: 12px;
    color: black;
  }
  #page-note .note-sources .source-list .source-item .source-number {
    font-size: 12px;
  }
  #page-note .note-sources .source-list .source-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    background-color: black;
    width: 6px;
    height: 6px;
    rotate: 45deg;
  }
  #page-note .note-sources:hover {
    opacity: 1;
  }
}

/*# sourceMappingURL=note.css.map */
