.question-content :is(.content-container, .not-found) {
  padding: 15px;
}
.question-content .content-container {
  position: relative;
  word-break: break-all;
}

.question-content .title {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.question-content .links a {
  padding: 10px;
  white-space: nowrap;
}
.question-content .links :not(.detail) {
  position: relative;
  z-index: 1;
}

.question-content .links .detail::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.question-content .links .detail:hover::after {
  background-color: rgb(255, 255, 255, 0.4);
}

.question-content header {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.question-content .tags .button {
  margin: 0;
}

.question-content .question-owner {
  flex-grow: 1;
}

.question-content .question-owner address {
  display: flex;
  justify-content: space-between;
}

.question-content .tags a {
  padding: 6px 12px;
}

.question-content .thumbnail {
  display: flex;
  max-height: min(250*(100vw / 768), 250px);
}
.question-content .thumbnail.small {
  max-height: 100px;
}

.question-content .thumbnail img {
  object-fit: contain;
  object-position: left;
}

.question-content .not-found {
  border-top: 1px solid #ddd;
}