.nbo-news-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1024px) {
  .nbo-news-content {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .nbo-news-content {
    gap: 20px;
  }
}
.nbo-news-content .nbo-news-content-item {
  background: var(--white-color);
  width: 100%;
  max-width: calc(25% - 30px);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .nbo-news-content .nbo-news-content-item {
    max-width: calc(33.33% - 20px);
  }
}
@media (max-width: 768px) {
  .nbo-news-content .nbo-news-content-item {
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 540px) {
  .nbo-news-content .nbo-news-content-item {
    max-width: 100%;
  }
}
.nbo-news-content .nbo-news-content-item:hover {
  transform: scale(1.05, 1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  color: var(--blue-color);
}
.nbo-news-content .nbo-news-content-item:hover .nbo-item-rm::before {
  left: 60%;
}
.nbo-news-content .nbo-news-content-item:hover .nbo-item-rm::after {
  left: calc(60% + 2px);
}
.nbo-news-content .nbo-news-content-item .nbo-news-content-item-image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
}
.nbo-news-content .nbo-news-content-item .nbo-news-content-item-image img {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nbo-news-content .nbo-news-content-item .nbo-news-content-item-image .nbo-news-content-item-image-desc {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white-color);
  white-space: pre-line;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
  font-size: 18px;
}
.nbo-news-content .nbo-news-content-item .nbo-news-content-item-title {
  color: var(--blue-color);
  font-weight: 400;
  font-size: 18px;
  backface-visibility: hidden;
}

.nbo-news-content-item-date {
  position: relative;
  width: 110px;
  min-width: 110px;
  height: 100px;
  margin: 10px auto 0;
  border-radius: 15px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
  font-size: 54px;
  font-weight: 700;
  text-align: center;
  color: #4d4d4d;
  font-style: normal;
}
.nbo-news-content-item-date::before, .nbo-news-content-item-date::after {
  position: absolute;
  content: "";
}
.nbo-news-content-item-date::before {
  top: -10px;
  left: 27px;
  width: 8px;
  height: 20px;
  background: #4d4d4d;
  border-radius: 5px;
  z-index: 11;
}
.nbo-news-content-item-date::after {
  background: var(--white-color);
  top: 1px;
  left: 25px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 10;
}
.nbo-news-content-item-date .nbo-news-content-item-date-head {
  position: relative;
  height: 40%;
  background: #5bcffe;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  text-wrap: nowrap;
  color: var(--white-color);
  font-weight: 500;
  font-size: var(--font-size-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 5px;
  font-style: italic;
}
.nbo-news-content-item-date .nbo-news-content-item-date-head::before, .nbo-news-content-item-date .nbo-news-content-item-date-head::after {
  position: absolute;
  content: "";
}
.nbo-news-content-item-date .nbo-news-content-item-date-head::before {
  top: -10px;
  right: 27px;
  width: 8px;
  height: 20px;
  background: #4d4d4d;
  border-radius: 5px;
  z-index: 11;
}
.nbo-news-content-item-date .nbo-news-content-item-date-head::after {
  background: var(--white-color);
  top: 1px;
  right: 25px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 10;
}

.nbo-news-in-content .nbo-news-in-content-title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 30px;
  margin: 0 0 30px;
}
.nbo-news-in-content .nbo-news-in-content-title .nbo-news-content-item-date {
  display: inline-block;
  margin: 0;
}
.nbo-news-in-content .nbo-news-in-content-title h1 {
  width: 100%;
  font-size: var(--font-size-h5);
  font-weight: 400;
  color: var(--blue-color);
}
.nbo-news-in-content .nbo-news-in-desc {
  display: block;
  overflow: auto;
}
.nbo-news-in-content .nbo-news-in-desc .nbo-news-in-content-img {
  position: relative;
  float: right;
  margin: 0 0 40px 40px;
  padding: 0;
  width: 100%;
  max-width: 50%;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .nbo-news-in-content .nbo-news-in-desc .nbo-news-in-content-img {
    max-width: 100%;
    display: block;
    float: none;
    margin: 0 auto 30px;
  }
}
.nbo-news-in-content .nbo-news-in-desc .nbo-news-in-content-img img {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.nbo-news-in-content .nbo-news-in-desc .nbo-news-in-content-img .nbo-news-in-content-img-desc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  color: var(--white-color);
  font-size: var(--font-size-h5);
  z-index: 100;
  white-space: pre-line;
}
.nbo-news-in-content .nbo-news-in-desc p {
  margin: 0 0 10px 0;
  font-size: var(--font-size-sm);
}
.nbo-news-in-content .nbo-news-in-desc p a {
  color: var(--blue-color);
  text-decoration: underline;
}
.nbo-news-in-content .nbo-news-in-desc p a:hover {
  text-decoration: none;
}
.nbo-news-in-content .nbo-news-in-desc ul, .nbo-news-in-content .nbo-news-in-desc ol {
  display: block;
  padding: 0;
  margin: 10px 0 10px 40px;
}/*# sourceMappingURL=NewsPage.css.map */