/* Resume header */
.resume-header {
  margin-bottom: 40px;
}

.resume-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #e6edf3;
  margin-bottom: 10px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  color: #8b949e;
  margin-bottom: 4px;
}

.languages {
  font-size: 13px;
  color: #6e7681;
}

/* Sections */
.resume-section {
  margin-bottom: 36px;
}

.resume-section h2 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #58a6ff;
  padding-bottom: 8px;
  border-bottom: 1px solid #21262d;
  margin-bottom: 20px;
}

/* Entries */
.entry {
  margin-bottom: 24px;
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.entry-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #e6edf3;
}

.entry-header h3 a {
  color: #e6edf3;
  text-decoration: none;
  transition: color 0.15s;
}

.entry-header h3 a:hover {
  color: #58a6ff;
}

.role {
  font-size: 14px;
  color: #c9d1d9;
  margin-top: 2px;
}

.entry-meta {
  text-align: right;
  flex-shrink: 0;
}

.entry-meta .location,
.entry-meta .dates {
  display: block;
  font-size: 13px;
  color: #8b949e;
}

.repo-link {
  font-size: 13px;
  color: #58a6ff;
  text-decoration: none;
}

.repo-link:hover {
  text-decoration: underline;
}

.detail {
  font-size: 14px;
  color: #8b949e;
}

/* Lists */
.entry ul {
  list-style: none;
  padding: 0;
}

.entry ul li {
  font-size: 14px;
  color: #c9d1d9;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.entry ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #30363d;
}

/* Skills grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.skill-group h4 {
  font-size: 13px;
  font-weight: 600;
  color: #e6edf3;
  margin-bottom: 8px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tags span {
  background: #161b22;
  border: 1px solid #30363d;
  color: #c9d1d9;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 16px;
}

/* Mobile */
@media (max-width: 600px) {
  .entry-header {
    flex-direction: column;
    gap: 4px;
  }

  .entry-meta {
    text-align: left;
  }

  .resume-header h1 {
    font-size: 28px;
  }
}
