/* Layout */

.hs-blog-post-listing {
  display: flex;
  flex-wrap: wrap;
}

.hs-blog-post-listing__post {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  overflow: hidden;
  width: 100%;
}

/* Featured image */

.hs-blog-post-listing__post-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* Article content */

.hs-blog-post-listing__post-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hs-blog-post-listing__post-tags,
.hs-blog-post-listing__post-title,
.hs-blog-post-listing__post-timestamp,
.hs-blog-post-listing__post-author,
.hs-blog-post-listing__post-image--card {
  margin: 0 0 0.5rem;
}

/* Author */

.hs-blog-post-listing__post-author {
  align-items: center;
  display: flex;
}

.hs-blog-post-listing__post-author-image-wrapper {
  height: 40px;
  margin-right: 0.5rem;
  width: 40px;
}

.hs-blog-post-listing__post-author-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* Tags */

.hs-blog-post-listing__post-tag {
  display: inline-block;
}

/* Publish date */

.hs-blog-post-listing__post-timestamp {
  display: block;
}

/* Button */

.hs-blog-post-listing__post-button-wrapper {
  margin-top: auto;
}

.hs-blog-post-listing__post-button {
  display: inline-block;
}

.blog-pagination {
display: flex;
text-align: center;
justify-content: center;
margin: 0 auto;
}
}
.blog-pagination > div {
    display: inline-block;
}
.blog-pagination-left {
    text-align: right;
}
.blog-pagination-right {
    text-align: left;
}
.blog-pagination a {
display: inline-block;
text-align: center;
border-radius: 4px;
padding: 10px 15px;
color: #373a3c;
background-repeat: no-repeat;
background-size: contain;
}
.blog-pagination a:hover,
.blog-pagination a:focus {
    text-decoration: none;
}
.blog-pagination a.elipses {
    border: 0;
}

.blog-pagination a.next-link,
.blog-pagination a.prev-link {
    color: #d6034d;
  font-family: AvenirBold;
  
}
.blog-pagination a.next-link:hover,
.blog-pagination a.prev-link:hover {
    background-color: #008cd4;
    color: #fff;
}
