/* Public social media connectivity icons */
.tb-social {
  display: grid;
  gap: 0.4rem;
}

.tb-social__title {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}

.tb-social__lead {
  margin: 0;
  font-size: 0.78rem;
  color: #64748b;
}

.tb-social__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.tb-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.tb-social__link:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-1px);
}

.tb-social__link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.site-header .tb-social__row,
.utility .tb-social__row {
  gap: 0.3rem;
}

.site-header .tb-social__link,
.utility .tb-social__link {
  width: 1.85rem;
  height: 1.85rem;
  background: transparent;
  color: #475569;
}

.site-header .tb-social__link:hover,
.utility .tb-social__link:hover {
  background: rgba(29, 78, 216, 0.1);
  color: #1d4ed8;
}

.site-footer__social.tb-social,
.site-footer__social .tb-social__row {
  justify-content: flex-end;
}
