/* Blog article page */
.blog-page .blog-article {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Round corner image box above blog header */
.blog-featured-image {
  border-radius: var(--radius-banner);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: var(--gray-100);
  box-shadow: var(--shadow);
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-back {
  margin-bottom: 1.5rem;
}

.blog-back a {
  color: var(--blue);
  font-weight: 500;
}

.blog-back a:hover {
  text-decoration: underline;
}

.blog-header {
  margin-bottom: 1.5rem;
}

.blog-page .blog-article h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #171f34;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .blog-page .blog-article h1 {
    font-size: 2rem;
  }
}

.blog-subtitle {
  font-size: 1.125rem;
  color: #585858;
  margin: 0;
  line-height: 1.5;
}

.blog-page .blog-article h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #171f34;
  margin: 2rem 0 0.75rem 0;
  line-height: 1.3;
}

.blog-page .blog-article h2:first-of-type {
  margin-top: 1.5rem;
}

.blog-page .blog-article h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #171f34;
  margin: 1.25rem 0 0.5rem 0;
  line-height: 1.3;
}

.blog-page .blog-article p {
  color: #585858;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.blog-page .blog-article ul {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  color: #585858;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.blog-page .blog-article ul li {
  margin-bottom: 0.35rem;
}

.blog-checklist {
  list-style: none;
  padding-left: 0;
}

.blog-checklist li {
  margin-bottom: 0.5rem;
}

.blog-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.blog-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.blog-table th,
.blog-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.blog-table th {
  background-color: var(--gray-50);
  font-weight: 600;
  color: #171f34;
}

.blog-table tbody tr:last-child td {
  border-bottom: none;
}

.blog-table td {
  color: #585858;
}

.blog-table td:first-child {
  font-weight: 500;
  color: var(--gray-800);
}
