.home-template .po-limit  {
  max-width: 1400px
}



/*** HERO HIGHLIGHTS TOP HOME ***/
.po-home-highlight {
  display: flex;
  flex-direction: row;
  /* border-bottom: 1px solid var(--colorGrayLight); */
  padding-bottom: 50px;
  padding-top: 40px;
}

.po-home-highlight li {list-style: none;}

.po-home-highlight > * {
  flex: 1;
  flex-grow: 1;
}

.po-past-posts {order: 1;}
.po-home-featured {order: 2;}
.po-latest-posts {order: 3;}

.po-author-name {
  font-size: .8rem;
  display: inline-block;
  padding: 7px 0 0;
  font-weight: 400;
}

.po-past-posts > ul li,
.po-latest-posts > ul li {padding-bottom: 20px;}

.po-past-posts {max-width: 280px;}
.po-latest-posts {max-width: 290px;}

.po-latest-posts ul li {
  display: flex;
  width: 100%;
}

.po-latest-posts li > span {
  flex: 1;
  padding-right: 15px;
}
.po-latest-posts h3 {
  font-size: .9rem;
  font-weight: 700;
}

.po-latest-posts img {
  display: block;
  width: 80px;
  height: 80px;
}

.po-past-posts h2 {
  font-size: 1rem;
  font-weight: 500;
}

.po-past-posts img {
  height: 200px;
  width: 100%;
}

.po-home-featured {
  flex-grow: 2;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.po-home-featured .po-home-featured-image {
  width: 100%;
  display: block;
}

.po-home-featured .po-home-featured-image img {
  width: 100%;
  max-height: 500px;
}

.po-home-featured h1 {
  font-size: 2.3rem;
  line-height: 1;
  padding-top: 2vmin;
}

.po-home-featured p {
  font-size: 1.2rem;
  line-height: 1.3;
  padding: 2vmin;
}

.po-home-featured .po-author-name {padding: 0; font-weight: bold;}

.po-home-featured a:hover {text-decoration: none;}

.po-home-featured .po-featured-link {width: 90%;display: block;margin: 0 auto;}


.po-home-sponsor {
  max-width: 90px;
  position: absolute;
  top: 15px;
  left: 35px;
}


/*** 
PAID HIGHLIGHTS 
***/
.po-paid-highlights ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.po-paid-highlights {
  padding: 40px 0;
}

.po-paid-highlights li {
 margin-right: 20px;
 margin-bottom: 20px;
 flex: 1 0 250px;
}

.po-paid-highlights li:last-child {margin-right: 0;}

.po-paid-highlights img {
  width: 100%;
  height: 200px;
}
.po-paid-highlights a:hover {text-decoration: none;}

.po-paid-highlights h3 {padding: 10px;}
.po-paid-highlights .po-author-name {padding: 0 10px;}

@media only screen and (max-width: 900px) {

  .po-paid-highlights img {
    width: 100%;
    height: auto;    
  }

}


/****
COLUMNS OF CONTENT
****/

.po-home-content-call {
  display: flex;
  flex-wrap: wrap;
}

.po-home-content-call > * {
  flex: 1 0 300px;
  padding-right: 20px;
}

.po-home-authors-list {
  max-width: 260px;
}

.po-home-authors-list li {
  list-style: none;
  padding-bottom: 30px;
}

.po-home-authors-list li a {
  display: flex;
}
.po-home-authors-list li a > * {flex: 1}
.po-home-authors-list li a > div {flex-grow: 2;}

.po-home-authors-list a:hover {text-decoration: none;}

.po-home-authors-list img {
  max-width: 50px;
  height: 50px;
  border-radius: 3px;
  margin-right: 10px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all linear .1s;
  display: inline-block;
}

.po-home-authors-list a:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  transform: scale(1.05);
}

.po-home-authors-list h4 {
  font-size: 1rem;
}

.po-home-authors-list p {
  font-size: .85rem;
  padding: 5px 0 0;
}

.po-home-all-latest {
  flex-grow: 2;
}

.po-home-all-latest {
  padding: 0 40px 20px 20px;
}

.po-home-all-latest li {list-style: none;}
.po-home-all-latest .po-latest-link {
  display: block;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--colorGrayLight)
}

.po-home-all-latest h3 {
  max-width: 500px;
}

.po-home-all-latest a:hover {text-decoration: none;}
.po-home-all-latest p {
  padding: 10px 0;
}

.po-home-all-latest time {
  font-size: .7rem;
  color: rgba(0, 0, 0, 0.5);
}

.po-home-aside {
  max-width: 300px;
}

.po-home-aside > * {
  padding-bottom: 30px;
}

.po-topic-list {
  list-style: none;
}

.po-topic-item a {
  font-size: 1rem;
  display: flex;
  padding: 3px 0;
  position: relative;
}

.po-topic-item a h3 {
  font-size: 0.8rem;
  font-weight: 500;
  order: 1;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.po-topic-item h3:after {
  content: "";
  border-top: 1px dotted var(--colorGrayLight);
  height: 1px;
  flex: 1;
  margin: 0 10px;
  /* position: absolute;
  top: 10px;
  left: 0;
  width: 100%; */
}

.po-topic-item a .po-topic-count {
  border-radius: 10px;
  font-size: .6rem;
  border:1px solid var(--colorGrayLight);
  order: 3;
  padding: 3px 5px;
  height: auto;
}


@media only screen and (max-width: 900px) {

  .po-home-all-latest {order: 1; max-width: 100%;}
  .po-home-authors-list {order: 3; max-width: 100%;}
  .po-home-aside {order: 2; max-width: 100%;}

}



@media only screen and (max-width: 900px) {
  .po-past-posts {order: 2;border-bottom: 1px solid var(--colorGrayLight);margin-bottom: 40px;padding-bottom: 20px;}
  .po-latest-posts {order: 3;}
  
  .po-home-featured {order: 1; margin-bottom: 45px; padding: 0;}
  .po-home-featured h1 {font-size: 1.5rem;}
  .po-home-featured p {font-size: 1rem;}

  .po-home-sponsor {top: 10px; left: 15px;}

  .po-home-highlight {
    flex-direction: column;
    padding-bottom: 50px;
  } 

  .po-past-posts,
  .po-latest-posts {
    max-width: 100%;
  }

  .po-past-posts img {
    width: 100%;
  }

}