/*** public-info ***/
.public-info{ padding-bottom: 160px!important; margin-bottom: 0;}
.public-info__wrap { display: grid; gap:24px;}
.public-info__item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  background: #fff;
  border-radius: 3px;
  border-right: 1px solid var(--gray-pink);
  border-bottom: 1px solid var(--gray-pink);
  color: var(--blue);
  padding: 20px;
  transition: .5s;
  z-index: 1;
}
.public-info__item::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/nav/icon-pdf.svg") center / cover no-repeat ;
}
.public-info__name {
  font-weight: 500;
  line-height: 1.75;
  margin: 0;
  z-index:1;
}
.public-info__date {
  display: block;
  font-size: .9333em;
  font-weight: 500;
  line-height: calc(1em + 1px);
  color: #666;
  margin: 0;
}
.public-info__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.public-info__item:hover { background: var(--box-line);}

@media (min-width: 768px){.public-info__wrap {grid-template-columns: repeat(2, 1fr); }}
@media (min-width: 960px){.public-info__wrap {gap:32px; }}