/* Print-optimized resume — open resume.html and use Print → Save as PDF */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 10.5pt;
  line-height: 1.5;
  color: #1e293b;
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.resume-toolbar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.resume-toolbar a,
.resume-toolbar button {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}

.resume-toolbar button {
  background: #0d9488;
  color: #fff;
  border: none;
}

.resume-toolbar a {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

header {
  border-bottom: 2px solid #0d9488;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

h1 {
  font-size: 1.75rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #0d9488;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: #475569;
}

.contact-row a {
  color: #0d9488;
  text-decoration: none;
}

section {
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0d9488;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.25rem;
  margin-bottom: 0.75rem;
}

.summary {
  color: #475569;
  font-size: 0.95rem;
}

.job {
  margin-bottom: 1rem;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.job-title {
  font-weight: 700;
  color: #0f172a;
}

.job-company {
  color: #64748b;
  font-size: 0.9rem;
}

.job-date {
  font-size: 0.85rem;
  color: #0d9488;
  font-weight: 500;
  white-space: nowrap;
}

ul {
  padding-left: 1.1rem;
  color: #475569;
  font-size: 0.9rem;
}

li {
  margin-bottom: 0.2rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.skills-grid dt {
  font-weight: 600;
  color: #0f172a;
}

.skills-grid dd {
  color: #475569;
  margin: 0 0 0.5rem;
}

.cert-list,
.edu-list {
  list-style: none;
  padding: 0;
}

.cert-list li,
.edu-list li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

@media print {
  body {
    padding: 0;
    font-size: 10pt;
  }

  .resume-toolbar {
    display: none;
  }

  a {
    color: #0f172a;
    text-decoration: none;
  }
}
