/* ============================================================
TPG – Contact Band (full width)
Self-contained, clean, mobile friendly
============================================================ */

.tpg-contactBand{
  background: #f6f7f9;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 40px 0;
}

.tpg-contactBand__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tpg-contactHead{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tpg-contactTitle{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0;
  position: relative;
}

.tpg-contactTitle::after{
  content:"";
  display:block;
  width: 54px;
  height: 2px;
  background: #1f2328;
  margin-top: 8px;
}

.tpg-contactSub{
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

.tpg-contactGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tpg-contactCard{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.tpg-contactName{
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.tpg-contactRole{
  font-size: 0.85rem;
  opacity: 0.75;
}

.tpg-contactRight{
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tpg-contactLink{
  text-decoration: none;
  color: #1960a7; /* safe accent; change if needed */
  font-weight: 600;
  font-size: 0.92rem;
}

.tpg-contactLink:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 980px){
  .tpg-contactGrid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .tpg-contactGrid{
    grid-template-columns: 1fr;
  }
  .tpg-contactCard{
    flex-direction: column;
    align-items: flex-start;
  }
  .tpg-contactRight{
    text-align: left;
  }
}
