/**
 * Contact card styling
 */

.contact-card {
  display: flex;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-card-photo-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.contact-card-photo {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

.contact-card-details {
  flex: 2;
  padding: 20px;
}

.contact-card-name {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
}

.contact-card-title {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: #000000;
}

.contact-card-spacer {
  margin: 0 0 15px 0;
}

.contact-card-phone,
.contact-card-email-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-card-phone .dashicons,
.contact-card-email-container .dashicons {
  font-size: 20px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.contact-card-phone-number,
.contact-card-email {
  margin: 0;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-card-phone-number:hover,
.contact-card-email:hover {
  opacity: 0.8;
}

/* Responsive styling */
@media (max-width: 600px) {
  .contact-card {
    flex-direction: column;
  }

  .contact-card-photo-container {
    padding: 20px 20px 0 20px;
  }

  .contact-card-details {
    padding-top: 10px;
  }
}
