#posts{
  padding: 30px 0;
}
#posts .out{
  display: flex;
  grid-gap: 40px;
  align-items: flex-start;
}
#posts .posts,
#post .posts{
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#posts .out .posts{
  gap: 40px;
  grid-template-columns: 1fr;
}
#posts .posts .post,
#post .posts .post{
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: .2s;
}
#posts .out .posts .post{
  flex-direction: row;
  align-items: flex-start;
}
#posts .posts .post:hover,
#post .posts .post:hover{
  transform: scale(1.01);
	filter: drop-shadow(5px 5px 10px rgba(0,0,0,.1));
}
#posts .posts figure,
#post .posts figure{
  aspect-ratio: 7/4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  width: 100%;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,.1));
}
#posts .out .posts figure{
  min-width: 30%;
  max-width: 30%;
}
#posts .posts .info,
#post .posts .info{
  display: grid;
  gap: 15px;
}
#posts .posts h4,
#post .posts h4{
  line-height: 1.1;  
  font-size: 1.1rem;
  color: var(--primarya);
  font-weight: 500;
  padding: 0 20px;
}
#posts .out .posts h4{
  padding: 0 !important;
}

#posts .posts p{
  line-height: 1;  
  font-size: .9rem;
  color: var(--colora);
  border-top: solid 1px var(--inputc);
  padding-top: 10px;
  margin-top: -5px;
}
#posts .posts span,
#post .posts span{
  line-height: 1;  
  font-size: .8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primarya);
}
#posts .posts button{
  gap: 10px;
  border: none;
  background: var(--secundary);
  color: var(--inputa);
  padding: 7px 10px;
  border-radius: 5px;
  margin: 0 auto 0 0;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
  top: 5px;
  left: 5px;
}
#posts .posts button i{
  margin-top: -2px;
}

#posts .filtro{
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  margin-top: 30px;
  margin-bottom: 10px;
}
#posts .filtro .buscar{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#posts .filtro button.busca{
  padding: 0 15px;
	border: solid 1px var(--inputd);
	border-radius: 5px;
	background: rgba(255, 255, 255, .2);
	color: var(--primarya);
	height: 40px;
}
#posts .filtro button.busca:hover{
	border-color: var(--basec);
}
#posts .filtro .buscar input:placeholder-shown ~ .limpar{
  display: none;
}
#posts .filtro .buscar input:not(:placeholder-shown) + .busca {
  display: none;
}
#posts .filtro .buscar input:not(:placeholder-shown) + .limpar {
  display: block;
}
#posts .filtro .buscar input{
  border-color: var(--inputd);
  border-radius: 5px;
  background: rgba(255, 255, 255, .2);
}
#posts .filtro .buscar input:hover,
#posts .filtro .buscar input:focus{
  border-color: var(--basec);
}
#posts .filtro .drop button{
  border-color: var(--inputd);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .2);
  color: var(--placeb);
}
#posts .filtro .drop button:hover{
  border-color: var(--basec);
}
#posts .filtro .drop button i{
  margin-top: -3px;
}
#posts .filtro .drop .uk-drop{
  padding: 5px;
  border-radius: 5px;
  background: var(--inputp);
}
#posts .filtro .drop .uk-drop ul{
  padding: 5px;
  max-height: 300px;
  max-width: 300px;
  overflow: auto;
}
#posts .filtro .drop .uk-drop ul li a{
  padding: 7px 10px;
  color: var(--primaryc);
  font-weight: 500;
  opacity: .9;
}
#posts .filtro .drop .uk-drop ul li a:hover{
  opacity: 1;  
}
#posts .filtro .drop .uk-drop ul li:not(:last-child){
  border-bottom: solid 1px var(--inputb);
}

#posts .mais{
  display: flex;
  justify-content: center;
  margin-top: 30px;
  align-items: center;
  grid-gap: 20px;
}
#posts .mais .uk-button{
	display: flex;
	align-items: center;
	line-height: 0;
	padding: 8px 24px;
	justify-content: center;
	grid-gap: 10px;
	border-radius: 5px;
	transition: .2s;
  line-height: 0;
  color: var(--colora);
  font-weight: 500;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
#posts .mais .uk-button i{
	font-size: 1.4rem;
  color: var(--colora);
  margin-top: -2px;
}
#posts .mais .uk-button:hover{
	background: rgba(255,255,255,.3);
	filter: drop-shadow(5px 5px 10px rgba(0,0,0,.1));
  box-shadow: 0 0 0 1px var(--basea);
}

#posts .aside{
  display: none;
}
#posts .out .aside{
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  min-width: 320px;
  max-width: 320px;
}
#posts .out .ranking{
  margin-top: 20px;
  list-style: none;
  display: grid;
  gap: 10px;
}
#posts .out .ranking a{
  text-decoration: none;
  display: flex;
  grid-gap: 10px;
  align-items: flex-start;
}
#posts .out .ranking h4{
  font-size: .9rem;
  line-height: 1.1;
}
#posts .out .ranking span{
  height: 36px;
  min-width: 36px;
  max-width: 36px;
  background: var(--primarya);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: var(--inputa);
}

#posts .out .ranking li:nth-child(2) span{ opacity: .9; }
#posts .out .ranking li:nth-child(3) span{ opacity: .8; }
#posts .out .ranking li:nth-child(4) span{ opacity: .7; }
#posts .out .ranking li:nth-child(5) span{ opacity: .6; }

#posts .out .destaques{
  display: grid;
  gap: 20px;
  list-style: none;
  margin-top: 20px;
}
#posts .out .destaques a{
  display: grid;
  gap: 10px;
  text-decoration: none;
  transition: .2s;
}
#posts .out .destaques a:hover{
  transform: scale(1.01);
	filter: drop-shadow(5px 5px 10px rgba(0,0,0,.1));
}
#posts .out .destaques figure{
  aspect-ratio: 8/4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  width: 100%;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,.1));
}
#posts .out .destaques h4{
  font-size: .9rem;
  line-height: 1.1;
  color: var(--primarya);
  font-weight: 500;
}
#posts .out .destaques span{
  line-height: 1;  
  font-size: .8rem;
  color: var(--colora);
}



#post .conteudo {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 30px;
  margin-bottom: 60px;
}
.uk-breadcrumb{
  margin-top: 10px;
}
.uk-breadcrumb a,
.uk-breadcrumb span{
  color: var(--place);
}
.uk-breadcrumb li::before{
  margin: 0 10px !important;
}

#post .post{
  flex-grow: 1;
  display: grid;
  gap: 10px;
}
#post .post .autor{
  font-size: 1rem;
  color: var(--place);
}
#post .post .title{
  color: var(--primarya);
  font-weight: 500;
  font-size: 2.2rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
}
#post .post .chamada{
  color: var(--place);
  font-size: 1.1rem;
  line-height: 1.2rem;
}
#post .post .data{
  font-size: .9rem;
  color: var(--place);
  display: flex;
  align-items: center;
  line-height: 1;
  grid-gap: 10px;
  margin-top: 10px;
}
#post .post .data i{
  margin-top: -3px;
}
#post .post .data b{
  font-weight: 500;
}
#post .post .share{
  display: flex;
  grid-gap: 15px;
  align-items: center;
  line-height: 1;
  margin: 10px 0 0;
  color: var(--primarya);
}
#post .post .share a{
  display: flex;
  padding: 7px;
  background: var(--inputp);
  color: var(--primarya);
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0,0,0,.05);
}
#post .post .texto{
  padding: 20px 0;
  margin-top: 10px;
  border-top: solid 1px var(--basea);
  border-bottom: solid 1px var(--basea);
}
#post .post .texto img{
  max-width: 100%;
}




#post .aside {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 320px;
}
#post .aside .destaques{
  display: grid;
  gap: 30px;
  list-style: none;
  margin-top: 20px;
}
#post .aside .destaques a{
  display: grid;
  gap: 10px;
  text-decoration: none;
  transition: .2s;
  display: flex;
  flex-wrap: wrap;
  padding-right: 20px;
  border-bottom: solid 1px var(--basea);
}
#post .aside .destaques div{
  display: grid;
  grid-template-columns: 35px 1fr;
  grid-gap: 15px;
}
#post .aside .destaques div p{
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primarya);
}
#post .aside .destaques div p i{
  font-size: 1rem;
  margin: auto;
}
#post .aside .destaques div span{
  font-size: .8rem;
  line-height: 1.1;
  color: var(--primarya);
  font-weight: 700;
  letter-spacing: .6px;
  display: flex;
  align-items: center;
}
#post .aside .destaques div span i{
  font-size: 1.1rem;
}
#post .aside .destaques h4{
  font-size: .9rem;
  line-height: 1.1;
  color: var(--primarya);
  font-weight: 500;
}
#post .aside .destaques .border::after{
  content: "";
  height: 100%;
  width: 0;
  border-left: solid 1px var(--basea);
  margin: auto;
}
#post .aside .destaques a:hover{
  transform: scale(1.01);
  filter: drop-shadow(5px 5px 10px rgba(0,0,0,.1));
}
#post .aside .destaques img{
  border-radius: 5px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,.1));
  margin-bottom: 20px;
}



@media screen and (max-width: 720px) {
  #posts .posts, #post .posts{
    grid-template-columns: repeat(1, 1fr);
  }
  #post .conteudo{
    flex-direction: column;
  }
  #post .post .title {
    max-width: calc(100vw - 40px);
  }
  #post .post .chamada {
    max-width: calc(100vw - 40px);
    word-wrap: break-word;
  }
  #post .post .texto img {
    max-width: calc(100vw - 40px);
  }
  #post .post{
    width: calc(100vw - 40px);
  }
  #post .aside{
    min-width: 100%;
    max-width: 100%;
  }
}
