/*
  Portfólio v 1.1;
  11/29/2023;
  João Diogo Pereira;
*/

.artigo{
  z-index: 0;
  position: relative;
  border-radius: 35px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all .3s ease-in-out;
  aspect-ratio: 1;
}

.btns--artigo{
  padding: 1rem;
  border-radius: 50%;
  aspect-ratio: 1;
  background-color: #e9128b;
  border:solid 1px #e9128b;
  color: #fff;
  font-family: BebasNeue;
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.artigo:hover{
  transform: translateY(-5px);
}

.artigo:hover .btns--artigo{
  color: #e9128b;
  background-color: #fff;
  border: solid 1px #fff;
}

.page-numbers{
  font-family: BebasNeue;
  font-size: 20px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: #7b7b7b;
  transition: all .3s ease-in-out;
}

.page-numbers.current, .page-numbers:hover{
  color: #e9128b;
}