.new-page {
  min-width: 1200px;
  min-height: 1262px;
  background: var(--white);
}

.new-hero {
  height: 180px;
  padding-top: 43px;
  color: var(--white);
  background: #363636;
  text-align: center;
}

.new-hero h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.35;
}

.new-hero p {
  margin: 13px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.new-content {
  width: 1200px;
  min-height: 1082px;
  margin: 0 auto;
  padding-top: 53px;
  display: flex;
  align-items: flex-start;
  gap: 52px;
}

.article-column {
  width: 804px;
  border-top: 1px solid #dedede;
}

.news-card {
  height: 196px;
  padding: 22px 8px;
  border-bottom: 1px solid #e2e2e2;
  display: flex;
  gap: 26px;
}

.news-image {
  width: 236px;
  height: 150px;
  flex: 0 0 236px;
  overflow: hidden;
  background: #eeeeee;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.news-card:hover .news-image img { transform: scale(1.03); }

.news-copy {
  min-width: 0;
  flex: 1;
  position: relative;
  padding-top: 5px;
}

.news-copy h2 {
  margin: 0;
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.news-copy h2 a:hover { color: #777777; }

.news-copy p {
  margin: 19px 0 0;
  color: #888888;
  font-size: 14px;
  line-height: 1.65;
}

.news-copy time {
  position: absolute;
  right: 1px;
  bottom: 3px;
  color: #aaaaaa;
  font-size: 13px;
}

.new-sidebar {
  width: 344px;
  padding: 0 15px;
  border-top: 1px solid #dedede;
}

.article-timeline {
  height: 328px;
  margin: 0;
  padding: 13px 0 24px;
  border-bottom: 1px solid #dedede;
  list-style: none;
  position: relative;
}

.article-timeline::before {
  content: "";
  width: 1px;
  position: absolute;
  left: 8px;
  top: 22px;
  bottom: 43px;
  background: #cfcfcf;
}

.article-timeline li {
  min-height: 42px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}

.article-timeline li > span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  color: var(--white);
  background: #777777;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.article-timeline li div {
  width: 265px;
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #555555;
  font-size: 14px;
  line-height: 19px;
}

.article-timeline a {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-timeline a:hover { color: #999999; }
.article-timeline time { color: #aaaaaa; font-size: 12px; white-space: nowrap; }

.thanks {
  padding-top: 126px;
  display: flex;
  align-items: flex-start;
  gap: 27px;
}

.thanks img {
  width: 135px;
  height: 152px;
  object-fit: cover;
}

.thanks p {
  margin: 36px 0 0;
  color: #777777;
  font-size: 14px;
  line-height: 1.75;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .new-page { min-width: 0; min-height: 0; }
  .new-hero { height: 170px; padding: 35px 20px 0; }
  .new-hero h1 { font-size: 28px; }
  .new-hero p { font-size: 16px; }
  .new-content { width: 100%; min-height: 0; padding: 32px 18px 55px; display: block; }
  .article-column { width: 100%; }
  .news-card { height: auto; min-height: 145px; padding: 18px 0; gap: 16px; }
  .news-image { width: 132px; height: 100px; flex-basis: 132px; }
  .news-copy { min-height: 100px; padding-top: 0; }
  .news-copy h2 { font-size: 15px; line-height: 1.45; }
  .news-copy p { margin-top: 9px; font-size: 13px; }
  .news-copy time { font-size: 12px; }
  .new-sidebar { width: 100%; margin-top: 35px; padding: 0; }
  .article-timeline li div { width: calc(100% - 32px); }
  .article-timeline a { max-width: 62%; }
  .thanks { padding-top: 42px; justify-content: center; }
}
