<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.item-story{
  position: relative;
  height: 400px;
  max-width: 250px;
  margin: 20px auto 20px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  transition: .3s all;
  box-shadow: 3px 4px 8px rgba(0,0,0,.5);
}

.item-story:hover{
  text-decoration: none;
  opacity: .8;
}

.item-story .logo-jc{
  background-image: url("../../../../assets/images/logo-jc-webstories.webp");
  width: 100%;
  height: 22px;
  position: absolute;
  top: 30px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0px 1px 2px black);
}

.item-story h4{
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 4px 5px rgba(0,0,0,.5);
}

.pagination{
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 16px;
}

.page-item.disabled{
  opacity: .8;
  cursor: none;
  pointer-events: none;
}

.page-link{
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #005d95;
  background-color: #fff;
  border: 1px solid #e2e8f0;
}

.page-item.disabled .page-link{
  color: #333333;
}


.page-item:first-child .page-link{
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.page-item:last-child .page-link{
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

</pre></body></html>