body::before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg2.jpg") no-repeat center center/cover;
}

#content .news .error {
  color: inherit;
  font-size: 1.4rem;
}

#feed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  gap: 20px;
}
#feed li {
  width: calc((100% - 60px) / 4);
  min-width: 214px;
}
#feed li.loading {
  background: none;
  margin-right: 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-family: Tahoma, Geneva, sans-serif;
  cursor: default;
  text-align: left;
}
#feed a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 7%;
  background: url(../img/content_bg.png);
  color: #333;
}
@media (any-hover: hover) {
  #feed a:hover .thumb {
    opacity: 0.6;
  }
}
#feed .thumb {
  aspect-ratio: 184/160;
  width: 100%;
  overflow: hidden;
  background: #fff;
  margin: 0 0 8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#feed .cap {
  font-size: 1.2rem;
  line-height: 1.4;
  max-height: 2.8em;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: auto;
}
#feed .date {
  font-family: "nimbus-sans", sans-serif;
  font-size: 1.1rem;
  display: block;
  margin-top: 15px;
  text-align: right;
  color: #9e8554;
  letter-spacing: 0.02em;
}