/*
// Plugin Name : The Official Blog Plugin
// Created On : 12/05/2020
// Author : Joe Kustek
// Version : 1.0
// Description : A blog should be a plugin/add on not the core of the CMS
//
*/
/* the post data */
.featured-blog-header {
  font-size: 24px;
}
.post-content {
  margin-top: 20px;
}

.page-item.active .page-link {
    z-index: 0!Important;
}

@media only screen and (min-width: 991px) {
  .post-data {
    width: 75%;
    display: inline-block;
    float: left;
    margin-bottom: 20px;
    margin-right: 20px;
  }
  .post-sidebar {
    width: 23%;
    display: inline-block;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .post-data {
    width: 100%;
    margin-bottom: 20px;
  }
  .post-sidebar {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ************************************************************************** */
.blog-wrapper {
}

.blog-content {
  overflow: hidden;
}

.blog-content h3 {
  text-align: center;
  font-size: 24px;
  margin-top: 10px;
}
.blog-content h6, .blog-content h5 {
  text-align: center;
  font-size: 18px;
  text-align: center;
}
.blog-content p {
  font-size: 20px;
  text-align: center;
}
.blog-read {
  text-align:center;
  font-size:22px;
}

@media only screen and (min-width: 991px) {
  .blog-content {
    display: inline-block;
    width: 22%;
    min-height: 450px;
    max-height: 450px;
    padding:10px;
    margin-right: 21px;
    margin-bottom: 20px;
    background: #f5f5f5;
  }
  .blog-img-wrap {
    max-height: 200px;
    min-height: 200px;
    overflow: hidden;
  }
  .blog-img-wrap img {
    object-fit: cover;
      height: 200px;
      width: 100%;
  }
}

@media only screen and (max-width: 991px) {
.blog-content {
    width: 100%;
    padding:10px;
    margin-bottom: 20px;
    background: #f5f5f5;
  }
}
