/* ACF Contact Display Frontend Styles (unique, namespaced) */
.acfcd-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 32px 24px 28px 24px;
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
  border: none;
  position: relative;
}

.acfcd-card__name {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 0.3em;
  font-family: inherit;
}

.acfcd-card__position {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 1.5em;
  font-weight: 400;
}

.acfcd-card__info {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 0.7em;
}

.acfcd-card__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  margin-top: 1.5em;
  text-decoration: none;
  font-weight: 600;
  color: #1976b6;
  font-size: 1.15rem;
  border: none;
  background: none;
  transition: color 0.2s;
}

.acfcd-card__contact:hover {
  color: #0d4e7a;
  text-decoration: underline;
}

.acfcd-card__contact-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 2px solid #1976b6;
  border-radius: 50%;
  background: #fff;
  color: #1976b6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  margin-right: 0.2em;
}

@media (max-width: 600px) {
  .acfcd-card {
    padding: 18px 6vw 18px 6vw;
    max-width: 98vw;
  }
  .acfcd-card__name {
    font-size: 1.3rem;
  }
  .acfcd-card__position {
    font-size: 1rem;
  }
  .acfcd-card__info {
    font-size: 1rem;
  }
  .acfcd-card__contact {
    font-size: 1rem;
  }
  .acfcd-card__contact-icon {
    width: 26px;
    height: 26px;
    font-size: 1.1em;
  }
} 