/*
 * *
 * * Blog Page
 */
.c-blog-home-page {
  margin-bottom: 40px;
}


.c-blog__page-title {
  margin-bottom: 30px;
}


.c-blog__article-title {
  order: 3;
  padding: 0 24px;
  margin: 0 0 8px 0;
}


.c-blog__article-title-link {
  font-size: 18px;
  color: black;
  font-weight: bold;
}


.c-blog__article-date {
  order: 2;
  opacity: 0.7;
  font-size: 12px;
  margin: 0 0 8px 0;
  padding: 0 24px;
}


.c-blog__continue-reading-link {
  display: flex;
  position: absolute;
  bottom: -18px;
  color: black;
  order: 5;
  padding: 8px 24px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.04);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  transition: all 0.2s ease;
}

.c-blog__continue-reading-link:hover {
  background: black;
  color: white;
  transition: all 0.2s ease;
}


.c-blog__article-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 48px 24px;
  margin: 0 0 48px 0;
}


.c-blog__article-wrapper {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0px 6px 8px -4px rgba(0, 0, 0, 0.04);
  grid-row-gap: 0;
  position: relative;
  top: 0;
}

.c-blog__article-wrapper:hover {
  top: -6px;
  transition: top 0.3s ease;
}


.c-blog__article-thumb {
  width: 100%;
  order: 1;
  margin: 0 0 8px 0;
}


.c-blog__article-thumb-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}


.c-blog__article-excerpt {
  order: 4;
  padding: 0 24px;
  margin: 0 0 24px 0;
}


@media only screen and (max-width: 640px) {
  .c-blog__article-list {
  grid-template-columns: repeat(2, 1fr);
}
}


