/* resume.css — extends styles.css, resume-specific layout only */

/* override global main padding */
main {
  padding: 0;
}

/* centered column */
#resume-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem 3rem;
}

/* resume header */
#resume-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid whitesmoke;
}

#resume-header h1 {
  margin-bottom: 0.25rem;
}

.job-title {
  font-family: "Geist Mono", monospace;
  font-size: 1rem;
  font-style: italic;
  opacity: 90%;
  margin-bottom: 0.5rem;
}

.contact-info {
  font-family: "Geist Mono", monospace;
  font-size: 1rem;
  opacity: 75%;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

/* section h2 dividers — inherit from styles.css, just add rule */
#resume-content h2 {
  border-bottom: 1px solid whitesmoke;
  padding-bottom: 0.25rem;
}

/* h3: role title — bold weight, Geist Mono */
#resume-content h3 {
  font-family: "Geist Mono", monospace;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

/* h4: org/location — regular weight, italic */
#resume-content h4 {
  font-family: "Geist Mono", monospace;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  margin: 0.2rem 0 0.5rem 0;
  opacity: 75%;
}

/* job entries */
.job-entry {
  margin-bottom: 1.75rem;
}

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

.duration {
  font-family: "Geist Mono", monospace;
  font-size: 0.875rem;
  font-style: italic;
  opacity: 60%;
  white-space: nowrap;
}

/* lists */
#resume-content ul {
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}

#resume-content li {
  font-family: "Geist Mono", monospace;
  font-size: 1rem;
  line-height: 1.75rem;
  opacity: 90%;
  max-width: 100%;
}

/* education */
.education-line {
  font-family: "Geist Mono", monospace;
  font-size: 1rem;
  line-height: 1.75rem;
  opacity: 90%;
  margin-bottom: 0.5rem;
}

.education-line strong {
  font-weight: 700;
}

/* skills */
.skills-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skills-category {
  font-family: "Geist Mono", monospace;
  font-size: 1rem;
  line-height: 1.75rem;
  opacity: 90%;
}

.skills-category strong {
  font-weight: 700;
  color: crimson;
  font-style: normal;
}
