.history-page{
  max-width:900px;
  margin:0 auto;
  padding-bottom:4rem;
}

.page-lead{
  margin-bottom:2rem;
}

.history-block{
  background:#fff;
  border:1px solid #ddd;
  border-radius:10px;
  padding:32px;
}

.history-list{
  list-style:none;
  margin:0;
  padding:0;
}

.history-list li{
  display:grid;

  grid-template-columns:140px 1fr;

  gap:20px;

  padding:16px 0;

  border-bottom:1px solid #eee;
}

.history-list li:last-child{
  border-bottom:none;
}

.history-date{
  color:#005bac;

  font-weight:700;

  white-space:nowrap;
}

.history-text{
  line-height:1.8;
}

@media (max-width:768px){

  .history-list li{

    grid-template-columns:1fr;

    gap:6px;
  }

}