/*****************
Author: Mario Huerta
Date: June 17th, 2025


*****************/

main {
    text-align: center;
}

/***
Blog landing page
***/
/* Minimal blog styling */
.blogContainer {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.blogPost {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--white1);
}

.postThumbnail {
    height: 250px;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;  /* Center the thumbnail */
}
.blogPost:last-child {
  border-bottom: none;
}

.blogPost h3 {
  margin: 0 0 0.25rem 0;
}

.blogPost h3 a {
  text-decoration: none;
}

.blogPost h3 a:hover {
  text-decoration: underline;
}

.blogPost p {
  margin: 0;
  font-size: 0.875rem;
}

.blogPagination {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--white1);
}

.blogPagination a {
  padding: 0.5rem 1rem;
  color: var(--ashe);
  text-decoration: none;
  border: 1px solid var(--white2);
  border-radius: 6px;
  transition: all 0.2s ease;
}

