section.news dl {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 50px;
}
section.news dt {
  flex: 1;
}
section.news dd {
  width: 150px;
}
section.news dd a:hover {
  opacity: 0.7;
}
@media screen and (max-width:740px){
  section.news dl {
    display: block;
    margin-bottom: 40px;
  }
  section.news dt {
    margin-bottom: 30px;
  }
  section.news dd {
    margin: 0 auto;
  }
}