@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #fafafa, #f1f1f1);
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 20px;
}

.profile {
  text-align: center;
  padding: 24px 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  width: clamp(280px, 92vw, 400px);
}

.profile-img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 0 0 4px #fff, 0 6px 18px rgba(0,0,0,.08);
}

.name {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.title {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

.divider {
  border-top: 1px solid #eee;
  margin: 16px 0;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 14px;
  margin: 10px 0;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  background: #000;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
  transition: transform .08s ease, opacity .2s ease, box-shadow .2s ease;
}

.button i {
  margin-right: 8px;
}

.button:hover {
  opacity: .92;
  box-shadow: 0 10px 22px rgba(0,0,0,.26);
}

.button:active {
  transform: translateY(1px);
}
