{# simple_contact_card.css #}
.contact-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  background: white;
  max-width: 300px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.contact-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
}

.contact-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-card__placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #007acc;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.contact-card__name {
  margin: 0 0 4px 0;
  font-size: 1.25em;
  color: #333;
}

.contact-card__title {
  margin: 0 0 4px 0;
  color: #007acc;
  font-size: 0.9em;
  font-weight: bold;
}

.contact-card__office {
  margin: 0;
  color: #666;
  font-size: 0.85em;
}

.contact-card__details {
  margin-bottom: 20px;
}

.contact-card__detail {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.contact-card__icon {
  font-size: 16px;
}

.contact-card__link {
  color: #333;
  text-decoration: none;
  font-size: 0.9em;
}

.contact-card__link:hover {
  color: #007acc;
  text-decoration: underline;
}

.contact-card__button {
  width: 100%;
  padding: 12px 16px;
  background: #007acc;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.2s;
}

.contact-card__button:hover {
  background: #005a9e;
}