.single-fv {
  width: 100%;
  height: 200px;
  background: url("../img/common/fix-page-FV_bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
}

.single-fv .title {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  width: 90%;
  max-width: 1000px;
  text-align: center;
}

.single-fv .title p {
  color: #fff;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 0;
}

.breadcrumb {
  background-color: #f7f7f7;
  padding: 10px 0;
}

.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb ul li {
  font-size: 14px;
  color: #000;
}

.breadcrumb ul li:not(:last-child):after {
  content: ">";
  margin-left: 8px;
  color: #e4e4e4;
}

.breadcrumb ul li a {
  color: #f0243f;
  text-decoration: none;
}

.breadcrumb ul li a:hover {
  text-decoration: underline;
}

.news-article {
  padding: 50px 0 80px;
}

.news-article .news-list {
  margin-bottom: 40px;
}

.news-article .news-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.news-article .news-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 5px rgba(0,0,0,.05);
  box-shadow: 0 1px 5px rgba(0,0,0,.05);
  -webkit-transition: -webkit-transform .3s,-webkit-box-shadow .3s;
  transition: -webkit-transform .3s,-webkit-box-shadow .3s;
  transition: transform .3s,box-shadow .3s;
  transition: transform .3s,box-shadow .3s,-webkit-transform .3s,-webkit-box-shadow .3s;
  border-bottom: 1px solid #e4e4e4;
}

.news-article .news-item:last-child {
  border-bottom: none;
}

.news-article .news-item:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 10px rgba(0,0,0,.08);
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

.news-article .news-item a {
  display: block;
  color: #000;
  text-decoration: none;
}

.news-article .news-item .news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.news-article .news-item .news-date {
  color: #f0243f;
  font-size: 15px;
  font-weight: normal;
  white-space: nowrap;
  margin-right: 15px;
  margin-bottom: 0;
}

.news-article .news-item .news-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
  margin-top: 5px;
}

.news-article .news-item .news-title::after {
  display: none;
}

.news-article .pagination {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.news-article .pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #f7f7f7;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.news-article .pagination .page-numbers.current {
  background-color: #f0243f;
  color: #fff;
  border-color: #f0243f;
  font-weight: bold;
}

.news-article .pagination .page-numbers.prev,
.news-article .pagination .page-numbers.next {
  padding: 0 15px;
  font-size: 18px;
}

.news-article .pagination .page-numbers:hover:not(.current) {
  background-color: #f0f0f0;
}

.news-article .no-posts {
  padding: 40px 0;
  text-align: center;
  font-size: 16px;
  color: #000;
}

@media screen and (max-width: 842px) {
  .news-article .news-item .news-title {
    font-size: 16px;
  }
}
/*# sourceMappingURL=archive.css.map */