article a {
  color: #226cff;
  transition: 0.3s;
}
article a:hover {
  color: #7d41ff;
}
.post p,
.post ul li,
.post ol li {
  font-size: 18px;
}
.author_box {
  display: flex;
  border-top: 1px solid #000;
  padding: 40px 0 0 0;
  margin: 60px 0;
}
.author_box_image img {
  height: 64px;
  width: 64px;
  margin-right: 20px;
}
.author_box_meta h4 {
  margin-bottom: 0;
}
.author_box_meta p {
  margin-top: 0;
}
.grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media only screen and (max-width: 800px) {
  .grid_3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.read_more_posts {
  margin-top: 6rem;
  text-align: center;
}
.read_more_posts_grid {
  margin-top: 20px;
}
.read_more_posts_grid h4 {
  margin-bottom: 10px;
}
.read_more_grid_image_wrapper {
  width: 100%;
  display: block;
  position: relative;
}
.read_more_grid_image_wrapper:after {
  content: '';
  padding-bottom: 75%;
  display: block;
}
.read_more_grid_image_wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
footer {
  padding: 20px 0 60px;
  background-color: #000;
  color: #fff;
  text-align: center;
}
footer a {
  color: #fff;
}
footer .footer_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer_nav ul li {
  display: inline-block;
}
footer .footer_nav ul li a {
  padding: 0 10px;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}
footer .footer_nav ul li a:hover,
footer .footer_nav ul li a:active {
  color: #226cff;
}

