.office-list{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:10px;
}

.office-list__item{
  border:1px solid rgba(0,0,0,.14);
  border-radius:10px;
  padding:14px 16px;
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.78));
  backdrop-filter:blur(2px);
}

.office-list__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}

.office-list__name{
  font-weight:700;
  letter-spacing:.02em;
  font-size:14px;
}

.office-list__addr{
  font-size:14px;
  line-height:1.7;
  opacity:.9;
}

.office-list__map{
  font-weight:700;
  font-size:13px;
  line-height:1;
  white-space:nowrap;
  position:relative;
  padding-left:14px;
}

.office-list__map:before{
  content:"";
  background-image:url(../images/home/arrow-3.svg);
  background-size:contain;
  background-repeat:no-repeat;
  background-position:50%;
  display:inline-block;
  width:10px;
  height:14px;
  position:absolute;
  left:0;
  top:50%;
  translate:0 -50%;
}

.office-list__map:hover{
  opacity:.75;
}

/* Footer variant */
.office-list--footer{
  margin-top:0;
  gap:10px;
}

.office-list--footer .office-list__item{
  border-color:rgba(255,255,255,.18);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
}

.office-list--footer .office-list__addr{
  opacity:.95;
}

.office-list--footer .office-list__map{
  opacity:.95;
}

@media screen and (min-width:770px){
  .office-list{
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-top:14px;
  }
  .office-list__name{
    font-size:15px;
  }
}

