/* ===== Individual blog post page ===== */
.post-article {
  padding: 64px 175px;
}

.post-article .post-category {
  color: var(--color-maroon);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.post-article h1 {
  margin-bottom: 16px;
}

.post-article img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 32px;
  background: var(--color-nav-bg);
}

.post-article .post-meta {
  color: #888;
  font-size: 14px;
  margin-bottom: 40px;
}

.post-article p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

.post-article .back-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: 700;
  color: var(--color-maroon);
}

.post-article h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.post-article h3 {
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.post-article ul {
  margin: 0 0 24px 20px;
  list-style: disc;
}

.post-article li {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

.post-article a {
  color: var(--color-maroon);
  font-weight: 600;
}

.post-article table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 16px;
}

.post-article th,
.post-article td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

.post-article th {
  background: var(--color-nav-bg);
  font-weight: 700;
}

@media (max-width: 900px) {
  .post-article {
    padding: 40px 24px;
  }

  .post-article table,
  .post-article thead,
  .post-article tbody,
  .post-article th,
  .post-article td,
  .post-article tr {
    display: block;
  }

  .post-article th {
    display: none;
  }

  .post-article td {
    border-bottom: none;
    padding: 6px 0;
  }

  .post-article td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--color-maroon);
    margin-bottom: 2px;
  }

  .post-article tr {
    padding-bottom: 16px;
    border-bottom: 1px solid #ddd;
  }
}
