.block-rns-widget ul {
  margin: 0;
  padding: 0;
}
.block-rns-widget ul li {
  padding: 0;
  padding-bottom: 25px;
  list-style: none;
}
.block-rns-widget ul li:not(:last-child) {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--wp--preset--color--light-green);
}
.block-rns-widget ul li time {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--green);
}
.block-rns-widget ul li a {
  font-family: var(--wp--preset--font-family--secondary);
  margin-bottom: 0.2em;
  font-weight: 500;
  font-size: 22px;
  text-decoration: none;
}
.block-rns-widget ul li a:hover {
  text-decoration: underline;
}
.block-rns-widget ul li .skeleton.timestamp {
  max-width: 12ch;
}
.block-rns-widget ul li .skeleton:last-child {
  width: 80%;
}
.block-rns-widget .skeleton {
  opacity: 0.4;
  -webkit-animation: skeleton-loading 1.5s infinite linear alternate;
          animation: skeleton-loading 1.5s infinite linear alternate;
}
.block-rns-widget .skeleton-text {
  display: inline-block;
  width: 100%;
  height: 100%;
  min-height: 1em;
  border-radius: 3px;
}
@-webkit-keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 70%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 70%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}