.help-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.help-symbol {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 19px;
  background: var(--blue);
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(64, 88, 107, .16);
}

.founder-rule {
  border: 1px solid #aebfc8;
  background: #eef3f5;
}

.founder-rule h2,
.founder-rule p {
  color: var(--blue-dark);
}

.founder-rule p {
  font-weight: 700;
}

.solution-default-note {
  margin: -2px 0 16px;
  padding: 10px 12px;
  border: 1px solid #ead8d2;
  border-radius: 10px;
  background: #f8eeeb;
  color: #7c574e;
  font-size: 12px;
  line-height: 1.55;
}

.solution-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  height: 60px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  opacity: 1;
}

.solution-status.is-unsolved {
  border-color: #e7c6bd;
  background: #f7e8e4;
  color: #8a554a;
}

.solution-status.is-solved {
  border-color: #bfdac8;
  background: #e5f2e9;
  color: #426d51;
}

.solution-status.is-editable {
  box-shadow: 0 4px 12px rgba(64, 88, 107, .08);
}

.solution-status.is-editable:hover {
  filter: saturate(1.08) brightness(.985);
  transform: translateY(-1px);
}

.solution-status:disabled {
  cursor: default;
}

.detail-solution-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -7px 0 18px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
}

.solution-status.is-detail {
  min-width: 112px;
  font-size: 14px;
}

.post-log-attachment {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  margin-top: 10px;
  padding: 8px 10px;
  border: 1px solid #ccd8df;
  border-radius: 10px;
  background: #f1f5f6;
  color: var(--blue-dark);
}

.post-log-attachment:hover {
  border-color: var(--blue);
  background: #fff;
}

.post-log-attachment > span:last-child {
  min-width: 0;
}

.post-log-attachment strong,
.post-log-attachment small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-log-attachment strong {
  font-size: 11px;
}

.post-log-attachment small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.post-log-attachment.is-detail {
  margin: 0 0 18px;
  padding: 11px 13px;
}

.log-file-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
}

#postLogFile {
  padding: 8px;
}

.post .stats {
  align-self: stretch;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 0;
}

@media (max-width: 650px) {
  .help-heading { align-items: flex-start; }
  .help-symbol { width: 50px; height: 50px; flex-basis: 50px; border-radius: 15px; font-size: 28px; }
  .solution-status { min-width: 88px; }
  .detail-solution-panel { align-items: flex-start; }
}
