.records-page {
  padding-top: 42px;
}

.records-lead {
  padding: 34px 0 40px;
}

.records-lead span,
.section-title span {
  display: block;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.records-lead h3 {
  max-width: 900px;
  margin: 14px 0 22px;
  color: #111;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 900;
  word-break: keep-all;
}

.records-lead p {
  max-width: 880px;
  margin: 0;
  color: #3d4852;
  font-size: 18px;
  line-height: 1.82;
  word-break: keep-all;
}

.record-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 72px;
  border-top: 2px solid #111;
  border-bottom: 1px solid var(--line);
}

.record-stat-grid article {
  min-height: 150px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.record-stat-grid article:last-child {
  border-right: 0;
}

.record-stat-grid strong {
  color: var(--red);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1;
  font-weight: 900;
}

.record-stat-grid span {
  margin-left: 6px;
  color: #111;
  font-size: 20px;
  font-weight: 900;
}

.record-stat-grid p {
  margin: 18px 0 0;
  color: #39444e;
  font-size: 17px;
  font-weight: 800;
}

.section-title {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin: 56px 0 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid #111;
}

.section-title h3 {
  margin: 0;
  color: #111;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1;
  font-weight: 900;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.achievement-grid article {
  min-height: 240px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.achievement-grid b {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.achievement-grid strong {
  display: block;
  color: #111;
  font-size: 23px;
  line-height: 1.28;
  font-weight: 900;
  word-break: keep-all;
}

.achievement-grid p,
.archive-grid p {
  margin: 16px 0 0;
  color: #4a5660;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}

.record-news {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 18px;
}

.record-news article {
  border: 1px solid var(--line);
  background: #fff;
}

.record-news img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.record-news h4 {
  margin: 18px 20px 8px;
  color: #111;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
  word-break: keep-all;
}

.record-news time,
.record-news span {
  display: inline-block;
  margin: 0 20px 22px;
  color: #68737d;
  font-size: 14px;
  font-weight: 800;
}

.record-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  color: #fff;
  background: #171d24 !important;
}

.record-feature img {
  height: 260px;
}

.record-feature div {
  padding: 24px;
}

.record-feature span {
  margin: 0 8px 0 0;
  color: var(--red);
}

.record-feature time {
  margin: 0;
  color: rgba(255,255,255,.7);
}

.record-feature h4 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: 26px;
}

.record-feature p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.72;
  word-break: keep-all;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.archive-grid a {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.archive-grid a:hover {
  border-color: rgba(163,15,28,.45);
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.archive-grid strong {
  display: block;
  color: #111;
  font-size: 25px;
  font-weight: 900;
}

.archive-grid span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: 22px;
  padding: 0 15px;
  color: #fff;
  background: #171d24;
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .record-stat-grid,
  .achievement-grid,
  .record-news,
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .records-page {
    padding-top: 30px;
  }

  .record-stat-grid,
  .achievement-grid,
  .record-news,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .record-stat-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .record-stat-grid article:last-child {
    border-bottom: 0;
  }

  .section-title {
    display: block;
  }

  .section-title h3 {
    margin-top: 8px;
  }
}
