/* GLOBAL GRID SYSTEM */
.pm-grid {
    display: grid;
    gap: 30px;
}

/* AUTO RESPONSIVE */
.pm-grid.auto {
 grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* CARD BASE */
.pm-card {
    display: flex;
    flex-direction: column;
}

/* IMAGE FIX (this fixes your "loads funny" issue) */
.pm-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.pm-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.pm-card h3 {
    margin: 15px 0 5px;
}

.pm-card p {
    margin: 0;
    opacity: .7;
}


/* Hard clamp ALL images in the grid */
.grid-item-cont img {
  max-width: 100%;
  height: auto;
  display: block;
}

.grid-item-cont .et_pb_image_container {
  aspect-ratio: 1 / 1;   /* square headshots */
  overflow: hidden;
}

.grid-item-cont .et_pb_image_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roster-card .photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.roster-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-grid img {
  max-width: 100%;
  height: auto;
  display: block;
}

.pm-grid .photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.pm-grid .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#office-address-block {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
