.news-top-container {
  width: 100%;
  height: 500px;
  position: relative;
  top: -105px;
  overflow: hidden;
}
.news-top-container.news-background {
  background: url("/public/img/pristontale/background/news-header.png") no-repeat center;
  background-size: cover;
}
.news-top-container .news-header {
  position: relative;
  top: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.news-top-container .news-header .title {
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Baumans", system-ui;
  font-weight: normal;
  font-size: 3.5rem;
  letter-spacing: 0.02rem;
  color: #CCC;
}
.news-top-container .news-header .subtext {
  max-width: 400px;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", system-ui;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.02rem;
  color: #e6af67;
  text-align: center;
}
.news-top-container .separator {
  position: absolute;
  top: 490px;
  width: 100%;
  height: 20px;
  background-size: auto 100%;
  border-top: 1px #222 solid;
  border-bottom: 1px #222 solid;
  z-index: 2;
}

.container-news {
  width: 100%;
  min-height: 100vh;
  position: relative;
  margin-top: -100px;
  margin-bottom: 100px;
}
.container-news .news-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.container-news .news-block a {
  text-decoration: none;
}
.container-news .news-block a:hover {
  cursor: pointer;
}
.container-news .news-block a:hover .news-box, .container-news .news-block a:hover .news-box-list {
  border: 1px rgba(230, 175, 103, 0.74) solid;
  box-shadow: #e6af67 2px 2px 10px;
}
.container-news .news-block .news-box {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  background-color: rgba(34, 34, 34, 0.43);
  border: 1px rgba(230, 175, 103, 0.45) solid;
}
.container-news .news-block .news-box .content {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 1rem;
  gap: 1rem;
}
.container-news .news-block .news-box .content .title {
  display: flex;
  flex: 1 1;
  justify-content: flex-start;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  color: #e6af67;
}
.container-news .news-block .news-box .content .summary {
  display: flex;
  flex: 1 1;
  justify-content: flex-start;
  align-items: center;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02rem;
  color: #CCC;
  padding-top: 0.5rem;
}
.container-news .news-block .news-box .content .date {
  display: flex;
  flex: 1 1;
  justify-content: flex-start;
  align-items: center;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02rem;
  color: #AAA;
}
.container-news .news-block .news-box-list {
  display: flex;
  flex: 1 1;
  flex-direction: row;
  background-color: rgba(34, 34, 34, 0.43);
  border: 1px rgba(230, 175, 103, 0.45) solid;
}
@media (max-width: 800px) {
  .container-news .news-block .news-box-list {
    flex-direction: column;
  }
}
.container-news .news-block .news-box-list .image img {
  max-width: 300px;
}
@media (max-width: 800px) {
  .container-news .news-block .news-box-list .image img {
    max-width: 100%;
  }
}
.container-news .news-block .news-box-list .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 1rem;
}
.container-news .news-block .news-box-list .content .title {
  display: flex;
  flex: 1 1;
  justify-content: flex-start;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  color: #e6af67;
}
.container-news .news-block .news-box-list .content .summary {
  display: flex;
  flex: 1 1;
  justify-content: flex-start;
  align-items: center;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02rem;
  color: #CCC;
  padding-top: 0.5rem;
}
.container-news .news-block .news-box-list .content .date {
  display: flex;
  flex: 1 1;
  justify-content: flex-start;
  align-items: center;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02rem;
  color: #AAA;
  padding-top: 1rem;
}

.container-view {
  width: 100%;
  min-height: 100vh;
  position: relative;
  margin-top: -100px;
  margin-bottom: 100px;
}
.container-view .header-block {
  width: 100%;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  position: relative;
  top: 100px;
  border: 1px rgba(230, 175, 103, 0.45) solid;
  border-radius: 4px;
}
.container-view .header-block img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: 4px;
}
.container-view .header-block .header-content {
  height: 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.48);
  justify-content: center;
  align-items: center;
}
.container-view .header-block .header-content .title {
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.02rem;
  color: #e6af67;
}
.container-view .header-block .header-content .author {
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02rem;
  color: #CCC;
  padding-top: 0.5rem;
}
.container-view .header-block .header-content .author .username {
  color: #e6af67;
}
.container-view .header-block .header-content .date {
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02rem;
  color: #AAA;
  padding-top: 1rem;
}
.container-view .view-block {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 100px;
  min-height: 300px;
  background-color: rgba(0, 0, 0, 0.48);
  border: 1px rgba(230, 175, 103, 0.45) solid;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02rem;
  color: #CCC;
  border-radius: 4px;
}
.container-view .view-block .news-icon {
  position: relative;
  display: flex;
  top: -20px;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  color: #e6af67;
}
.container-view .view-block .view-box {
  padding: 0 1rem 1rem 1rem;
}

/*# sourceMappingURL=news.css.map */
