.fw-show section {
  margin-bottom: 2rem;
}

.fw-show .top::after {
  content: '';
  display: block;
  clear: both;
}

.fw-show .top img {
  margin-bottom: 1rem;
}

.fw-show .top ul {
  list-style: disc;
  font-size: 0.875rem;
  padding-left: 1rem;
}

.fw-show .top li:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

.fw-show aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fw-show .signin {
  display: flex;
  gap: 0.5rem;
}

.fw-show .signin img {
  width: 1rem;
}

.fw-show .history-name {
  margin-bottom: 1rem;
}

.fw-show .history-name span {
  font-size: 0.75rem;
  margin-left: 1rem;
  color: tomato;
}

.fw-show .history-name input[type='text'] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--light-700);
  border-radius: 0.5rem;
}

.fw-show .update {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.fw-show .histories ul,
.fw-show .projects ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.fw-show .projects p,
.fw-show .projects a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.fw-show .histories a,
.fw-show .projects a {
  text-decoration: underline;
}

.fw-show .projects img {
  width: 1.5rem;
}

@media (min-width: 744px) {
  .fw-show .top img {
    width: calc(100% / 3);
    float: left;
    margin-right: 1rem;
  }
}

@media (min-width: 1024px) {
  .fw-show {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: flex-start;
    gap: 2rem;
  }

  .fw-show article {
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
  }

  .fw-show section {
    margin: 0;
  }

  .fw-show .top img {
    float: none;
    margin-right: 0;
  }
}
