/* Minimal replacement for the original Tailwind-generated stylesheet. */
* {
  box-sizing: border-box;
}

html {
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0 auto;
  max-width: 800px;
  padding: 0 0.5rem;
  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  font-feature-settings: "rlig" 1, "calt" 1;
}

.page {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

.profile,
.section {
  margin-bottom: 1.5rem;
}

h1,
h2 {
  margin-top: 0.75rem;
  color: #333;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 0.5rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

p {
  margin: 0 0 1rem;
  color: #333;
  font-size: 1rem;
}

main > .section + .section {
  margin-top: 1rem;
}

a {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: #1e40af;
}

.profile-links {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

.profile-links img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.75rem;
  border-radius: 9999px;
  object-fit: cover;
}

.socials {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.socials a {
  font-weight: 500;
}

.job-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
}

footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
}

footer p {
  margin: 0;
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1rem;
}


.contact-links {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 24px;
}

.contact-links .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #000;
  text-decoration: none !important;
  border-bottom: none !important;

  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Remove underline effects from global link styles */
.contact-links .contact-icon::before,
.contact-links .contact-icon::after {
  display: none !important;
  content: none !important;
}

.contact-links .contact-icon:hover {
  color: #000;
  text-decoration: none !important;
  opacity: 0.55;
  transform: translateY(-2px);
}

.contact-links .contact-icon svg {
  display: block;
  color: #000;
}