.post__forum {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post__forum--item {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
}
.post__forum--author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.post__forum--author-image {
  width: 40px;
}
.post__forum--author-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.post__forum--author-info-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--orange-secondary);
}
.post__forum--author-info-time {
  font-size: 10px;
  font-weight: 700;
  color: var(--red-dark);
}
.post__forum--content {
  padding: 20px 15px;
  background: var(--white);
}
.post__forum--content-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--orange-secondary);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.post__forum--content-subtitle {
  font-size: 16px;
  font-weight: 800;
  margin: 10px 0 5px 0;
}
.post__forum--content-minititle {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 5px;
  margin-top: 10px;
}
.post__forum--content-description {
  font-size: 14px;
  margin-top: 5px;
  line-height: 1.5;
  text-align: justify;
}
.post__forum--content-list {
  line-height: 1.5;
  margin-top: 5px;
  margin-left: 15px;
  font-size: 14px;
  text-align: justify;
}
.post__forum--content-table {
  width: 100%;
  overflow-x: auto;
}
.post__forum--content-table::-webkit-scrollbar {
  height: 2px;
}
.post__forum--content-table::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px var(--black);
}

.post__forum--content-table::-webkit-scrollbar-thumb {
  background-color: var(--orange-secondary);
}
.post__forum--content-table table {
  width: max-content;
  min-width: 100%;
  margin-top: 10px;
  margin-bottom: 5px;
  background: var(--orange-primary);
  border-collapse: collapse;
  border-radius: 5px;
  overflow: hidden;
}
.post__forum--content-table thead {
  background: var(--red-dark);
}
.post__forum--content-table th {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 10px 20px;
  color: var(--white);
}
.post__forum--content-table td {
  padding: 10px 20px;
  font-size: 14px;
}

@media only screen and (max-width: 600px) {
  .post__forum--content-title {
    font-size: 14px;
  }
  .post__forum--content-subtitle {
    font-size: 14px;
  }
  .post__forum--content-minititle {
    font-size: 12px;
  }
  .post__forum--content-description {
    font-size: 12px;
  }
  .post__forum--content-list {
    font-size: 12px;
  }
  .post__forum--content-table th {
    font-size: 12px;
  }
  .post__forum--content-table td {
    font-size: 12px;
  }
}
