.news-page {
  min-width: 1200px;
  background: #ffffff;
}

.news-layout {
  display: grid;
  grid-template-columns: 232px 968px;
  width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 232px);
}

.news-sidebar {
  background: #f1f4f7;
}

.news-sidebar-head {
  height: 115px;
  padding: 56px 0 0 32px;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  color: #111111;
}

.news-categories {
  display: flex;
  flex-direction: column;
  padding-top: 3px;
}

.news-categories a {
  position: relative;
  height: 50px;
  padding-left: 32px;
  border-top: 1px solid rgba(16, 55, 160, 0.03);
  font-size: 20px;
  line-height: 50px;
  color: #666666;
  transition: color 0.2s ease;
}

.news-categories a.is-active {
  background: #ffffff;
  color: #6a6a6a;
}

.news-categories a.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: #1037a0;
}

.news-content {
  display: flex;
  min-height: calc(100vh - 232px);
  flex-direction: column;
  padding: 0 0 113px;
}

.news-content-head {
  width: 968px;
  height: 115px;
  padding: 0 0 0 32px;
  background: #f4f7ff;
  display: flex;
  align-items: center;
}

.news-content-head h1 {
  margin: 0;
  padding-left: 0;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  width: calc(100% - 32px);
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  color: #1037a0;
}

.news-list {
  padding: 15px 0px 0 32px;
}

.news-list.is-loading,
.news-list.is-empty,
.news-list.is-error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 15px 32px 0;
  font-size: 18px;
  color: #8d96ae;
}

.news-item {
  display: grid;
  grid-template-columns: 141px minmax(0, 1fr);
  align-items: center;
  margin-top: 29px;
  padding: 27px 0px 21px 22px;
  background: #f7f9fb;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.news-item.is-clickable {
  cursor: pointer;
}

.news-item.is-clickable:hover {
  background: #f2f6ff;
  box-shadow: 0 12px 24px rgba(16, 55, 160, 0.08);
  transform: translateY(-2px);
}

.news-date {
  display: flex;
  height: 108px;
  width: 108px;
  overflow: hidden;
}

.news-date img {
  display: block;
  width: 108px;
  height: 108px;
  object-fit: cover;
}

.news-copy{
  padding-right: 41px;

}

.news-date strong {
  display: block;
  margin-top: 4px;
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
}

.news-date span {
  display: block;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.34);
}

.news-copy h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
  color: #1037a0;
}

.news-copy p {
  font-size: 16px;
  line-height: 1.82;
  color: #d0d0d0;
}
.news-copy div{
  text-align: right;
  font-family: "DINOT-Bold";
  font-size: 16px;
  color: #d0d0d0;
  font-weight: 400;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  margin-top: auto;
  padding-top: 110px;
}

.news-pagination a,
.page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background: #ffffff;
  font-size: 16px;
  line-height: 1;
  color: #222222;
}

.page-ellipsis {
  min-width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: #b6b6b6;
}

.news-pagination a.is-current {
  border-color: #1037a0;
  color: #1037a0;
  font-weight: 700;
}

.page-arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #222222;
  border-right: 2px solid #222222;
  transform: rotate(45deg);
}

.page-arrow:first-child span {
  transform: rotate(-135deg);
}

.page-arrow.is-disabled span {
  border-color: #d8d8d8;
}

.news-pagination.is-hidden {
  visibility: hidden;
}
