.tm-card .tm-photo {
  display: block;
  margin: 0 auto;
  height: auto; 
  width: auto; /* Devotion Pro sets all images to 100% */
  max-width: 100%;
  /* border-radius: 8px; */ /* Not using rounded photos elsewhere on the site */
}

.tm-card .tm-icon-link,
.tm-card .tm-icon-standalone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.tm-card .tm-icon-img {
  display: block;
  height: auto;
  max-width: 100%;
}

.tm-card .tm-desc {
  color: #444;
  font-size: .95rem;
  line-height: 1.55;
  text-align: left;
  margin: 0 auto;
  /* 251124: This is what ultimately determines the max width of the card */
  /* orig: max-width: 36ch; */
  max-width: 24ch; 
  min-width: 24ch; 
}

.imagebox-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.imagebox-link .imagebox {
  cursor: pointer;
}

.imagebox-link h4 {
  color: #ffffff;
}

.group-card {
  overflow: hidden; /* keeps the image flush with rounded corners if card-shadow applies border-radius */
  background: #fff;
  max-width: 36ch; 
  min-width: 36ch; 
}

.group-card .gc-photo-wrap {
  width: 100%;
}

.group-card .gc-photo {
  display: block;
  width: 100%;
  height: auto;
}

.group-card .gc-body {
  /* padding: 18px 20px 20px; */
  padding: 18px 10px 10px;
  text-align: center;
}

.group-card .gc-title {
  margin: 12px 0 10px;
  font-size: 1.1rem; 
  line-height: 1.25;
  /* font-weight: 600; */
}

.group-card .gc-desc {
  margin: 0 0 14px;
  /* color: #444; */
  /* font-size: .95rem; */
  line-height: 1.55;
  text-align: left;
}

.group-card .gc-desc p {
  margin: 0; /* keep description tight like your example */
}

.group-card .gc-email {
  margin-top: 8px;
}

.group-card .gc-email-link {
  display: inline-flex;
  flex-direction: column;   /* icon above text, like screenshot */
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.group-card .gc-email-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000; /* icon uses currentColor */
}

.group-card .gc-email-text {
  color: #333;
  font-size: 0.95rem;
}


