.information .Info article {
  padding: 0;
  width: 100%;
}

.information .Info article .grid {
  display: grid;
  grid-template-columns: calc(16.8% - 20px) 14.1% calc(69.1% - 20px);
  grid-template-rows: 1fr;
  gap: 0px 20px;
  grid-auto-flow: row;
  grid-template-areas: "data label txt";
  border-bottom: 1.5px solid #eee;
  padding-block: 40px;
}

@media (max-width: 428px) {
  .information .Info article .grid {
    grid-template-columns: 28.99% 63.19%;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "data txt" "label txt";
    padding-block: 32px;
  }
}

.information .Info article .data {
  justify-self: center;
  align-self: center;
  grid-area: data;
  font-size: 14px;
  font-weight: normal;
}

@media (max-width: 428px) {
  .information .Info article .data {
    align-self: end;
  }
}

.information .Info article .label {
  justify-self: center;
  align-self: center;
  grid-area: label;
  width: 100%;
  font-size: 12px;
  background: #eee;
  color: #515151;
  border: none;
  font-weight: 500;
}

@media (max-width: 428px) {
  .information .Info article .label {
    margin-block: 0;
    margin-top: 5px;
    align-self: flex-start;
  }
}

.information .Info article .txt {
  grid-area: txt;
  align-self: center;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  font-weight: normal;
}

@media (max-width: 428px) {
  .information .Info article .txt {
    font-size: 13px;
  }
}

.information .Info article:first-child {
  border-top: 1.5px solid #eee;
}
