@charset "utf-8";

.data {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  margin-bottom: 20px;
}
.data li:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: var(--main);
  color: #fff;
  border-radius: 5px;
  font-size: 150%;
}
.data li:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.data li:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
  font-size: 150%;
  line-height: 1;
  color: var(--main);
}

dd {margin-bottom: 20px;}