/* ATS-Optimized Resume Styles
   Designed for maximum compatibility with Applicant Tracking Systems.
   No columns, no floats, no grid, no images. Pure linear flow. */

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

body {
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 11pt;
  color: #222;
  background: #fff;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 40px;
}

a {
  color: #222;
  text-decoration: none;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #333;
}

h1 {
  font-size: 20pt;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.subtitle {
  font-size: 11pt;
  color: #555;
  margin-bottom: 6px;
}

.contact {
  font-size: 9.5pt;
  color: #444;
}

/* Section headings */
h2 {
  font-size: 12pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  border-bottom: 1px solid #999;
  padding-bottom: 3px;
  margin-top: 16px;
  margin-bottom: 8px;
}

/* Job entries */
article {
  margin-bottom: 12px;
}

h3 {
  font-size: 11pt;
  font-weight: 700;
  color: #111;
  margin-bottom: 1px;
}

.company {
  font-size: 10pt;
  color: #555;
}

.date {
  font-size: 9.5pt;
  color: #777;
  margin-bottom: 4px;
}

.context {
  font-size: 10pt;
  color: #555;
  font-style: italic;
  margin-bottom: 4px;
}

/* Grouped roles under one company */
.job-group h3 {
  font-size: 12pt;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
  margin-bottom: 3px;
}

.job-group > .company {
  margin-bottom: 2px;
}

.job-group > .date {
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

h4 {
  font-size: 10.5pt;
  font-weight: 700;
  color: #222;
  margin-bottom: 1px;
}

.role {
  margin: 0 0 8px 16px;
}

.role:last-child {
  margin-bottom: 0;
}

.role-tag {
  font-weight: 500;
  color: #555;
  font-size: 10pt;
}

.role > .date {
  margin-bottom: 3px;
}

.project-url {
  font-size: 9pt;
  color: #666;
  margin-bottom: 4px;
}

/* Bullet points */
ul {
  padding-left: 18px;
  list-style-type: disc;
}

li {
  font-size: 10pt;
  margin-bottom: 3px;
  line-height: 1.45;
}

/* Paragraphs */
p {
  font-size: 10pt;
  margin-bottom: 6px;
  line-height: 1.5;
}

section > p strong {
  color: #111;
}

/* Mobile */
@media (max-width: 600px) {
  body {
    padding: 20px 16px;
    font-size: 10.5pt;
  }

  h1 {
    font-size: 17pt;
  }

  h2 {
    font-size: 11pt;
  }

  h3 {
    font-size: 10.5pt;
  }

  .contact {
    font-size: 9pt;
  }

  li {
    font-size: 9.5pt;
  }

  p {
    font-size: 9.5pt;
  }
}

/* Print styles */
@page {
  size: A4;
  margin: 18mm 16mm;
}

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

  h1 {
    font-size: 18pt;
  }

  h2 {
    margin-top: 12px;
  }
}
