.profile-card {
  background: linear-gradient(135deg, #f9f9f9, #fff);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(111, 78, 55, 0.2);
  display: flex;
  gap: 20px;
  padding: 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.profile-card__avatar img {
  border: 4px solid #fff;
  border-radius: 50%;
  height: 90px;
  transition: transform 0.3s ease;
  width: 90px;
}
.profile-card__avatar img:hover {
  transform: scale(1.05);
}
.profile-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profile-card__name {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.profile-card__name a {
  color: #1a1a1a;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.profile-card__name a:hover {
  color: #0073aa;
}
.profile-card__description {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}
.profile-card__sns {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  gap: 10px;
  list-style: none;
  margin: 0;
}

@media (width <= 768px) {
  .profile-card {
    align-items: center;
    flex-direction: column;
    padding: 24px;
    text-align: center;
  }
}
