/* Branch cards only */
.footer-branches{
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 0 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;

  /* parent is text-center, so override here */
  text-align: left;
}

.branch-card{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 18px 18px;
}

.branch-title{
  color: #fff;
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.branch-line{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  color: #fff;
  line-height: 1.5;
}

.branch-line i{
  width: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  color: #fff;
}

.branch-line span,
.branch-line a{
  color: #fff;
  word-break: break-word;
  text-decoration: none;
}

.branch-line a:hover{
  text-decoration: underline;
}

.branch-phones a{
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 767px){
  .footer-branches{
    grid-template-columns: 1fr;
  }
  .branch-title{
    font-size: 18px;
  }
}
