*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Source Sans Pro', 'Source Sans 3', sans-serif;
  background: linear-gradient(135deg, #002B5B 0%, #6A0DAD 50%, #D10070 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 48px 40px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
}

.card-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #f0f0f0;
}

.card-name {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1A1A2E;
  margin-bottom: 4px;
  line-height: 1.2;
}

.card-tagline {
  font-style: italic;
  font-size: 14px;
  color: #8a9199;
  margin-bottom: 32px;
}

/* === SECTION HEADERS === */

.card-section-header {
  font-family: 'Source Sans Pro', 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #8a9199;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* === LINKS === */

.card-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 2px solid #008CFF;
  border-radius: 12px;
  color: #008CFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.card-link:hover {
  background: #008CFF;
  color: #fff;
}

.card-link:hover svg {
  fill: #fff;
}

.card-link svg {
  width: 20px;
  height: 20px;
  fill: #008CFF;
  flex-shrink: 0;
  transition: fill 0.2s ease;
}

/* === RESPONSIVE === */

@media (max-width: 520px) {
  body {
    padding: 16px;
  }

  .card {
    padding: 36px 24px 28px;
    border-radius: 16px;
  }

  .card-photo {
    width: 110px;
    height: 110px;
  }

  .card-name {
    font-size: 24px;
  }

  .card-title {
    font-size: 14px;
  }

  .card-tagline {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .card-link {
    padding: 12px 16px;
    font-size: 14px;
  }
}
