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

body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  background: #f5f5f5;
  color: #222;
  line-height: 1.5;
  padding: 2rem 1rem;
}

.resume {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem 2.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

header {
  margin-bottom: 0.25rem;
}

h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}

.subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.tags {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.2rem;
}

.contact {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.contact a {
  color: #555;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.summary {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
}

hr {
  border: none;
  border-top: 1.5px solid #ccc;
  margin: 0.7rem 0;
}

h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #111;
}

section {
  margin: 0.5rem 0;
}

.entry {
  margin-bottom: 0.7rem;
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.entry-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
}

.entry-date {
  font-size: 0.82rem;
  color: #666;
  white-space: nowrap;
}

.entry-sub {
  font-size: 0.88rem;
  color: #444;
  margin-bottom: 0.15rem;
}

.entry-detail {
  font-size: 0.85rem;
  color: #444;
  margin-left: 0;
}

.entry-detail-list {
  list-style: disc;
  margin: 0.15rem 0 0 1.2rem;
  font-size: 0.85rem;
  color: #444;
}

.entry-detail-list li {
  margin-bottom: 0.1rem;
}

.skills-list {
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
  color: #444;
}

.skills-list li {
  margin-bottom: 0.15rem;
}

@media print {
  body {
    background: #fff;
    padding: 0;
  }
  .resume {
    box-shadow: none;
    padding: 0.5in 0.75in;
  }
}

@media only screen and (max-width: 600px) {
  body {
    padding: 0.5rem;
  }
  .resume {
    padding: 1rem;
  }
  h1 {
    font-size: 1.5rem;
  }
  .entry-header {
    flex-direction: column;
  }
}
