.post__subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
}
.post__date {
  font-weight: 700;
}
/* padding: 0.6rem 1rem; */
table.post__table {
  width: 100%;
  border: 0.5px;
  border-collapse: collapse;
  text-align: start;
  line-height: 30px;
  margin-bottom: 20px;
}
table.post__table thead {
  font-weight: bold;
}
table.post__table th {
  padding: 5px;
  border: 0.5px solid #000000;
}
table.post__table td {
  border: 0.5px solid #000000;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  table.post__table thead {
    display: none;
  }
  table.post__table tr {
    display: block;
    margin-bottom: 1rem;
    border: 0.5px solid #000000;
  }
  table.post__table td {
    display: block;
    text-align: right;
  }
  table.post__table td:before {
    content: attr(aria-label);
    float: left;
    font-weight: bold;
  }
}

@media (max-width: 576px) {
  .post__subtitle {
    font-size: 16px;
  }
  table.post__table {
    font-size: 14px;
  }
}

