/* Global reset-ish */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #222;
  background: #f3f4f6;
}

/* Page container */
.page {
  max-width: 900px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2.5rem 2rem 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.header h1 {
  font-size: 1.9rem;
  margin-bottom: 0.25rem;
}

.tagline {
  font-size: 0.95rem;
  color: #4b5563;
}

.contact p {
  font-size: 0.9rem;
}

.contact a {
  color: #2563eb;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Sections */
main section {
  margin-bottom: 1.8rem;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #111827;
  border-left: 4px solid #f59e0b;
  padding-left: 0.5rem;
}

h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* Paragraphs & lists */
p {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

ul {
  margin-left: 1.1rem;
  margin-bottom: 0.4rem;
}

li {
  font-size: 0.93rem;
  margin-bottom: 0.2rem;
}

/* Pills / skill blocks */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.pill-group {
  background: #f9fafb;
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #e5e7eb;
}

/* Compact list */
.compact-list li {
  display: inline-block;
  margin-right: 0.8rem;
  margin-bottom: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #fef3c7;
  font-size: 0.85rem;
}

/* Jobs */
.job {
  margin-bottom: 1.3rem;
}

.job header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.job .company {
  font-size: 0.92rem;
  color: #6b7280;
}

.job .meta p {
  font-size: 0.85rem;
  text-align: right;
  color: #6b7280;
}

.job-summary {
  margin-top: 0.3rem;
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
}

.job-subheading {
  margin-top: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  margin-top: 1.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Mobile */
@media (max-width: 640px) {
  .header {
    flex-direction: column;
  }

  .job header {
    flex-direction: column;
    align-items: flex-start;
  }

  .job .meta p {
    text-align: left;
  }
}
