/* ==========================================================================
   Resume page -- values matched exactly against the real site's source.
   Note: this page's content area (below the hero) sits on a distinct
   grayish background (#F0F2F5) on the real site -- the hero strip above
   stays the normal off-white.
   ========================================================================== */

body.page-resume {
  background: #F0F2F5;
}

.resume-section {
  padding: 80px 0;
  border-top: 1px solid var(--color-border);
}
.resume-section:last-of-type { border-bottom: 1px solid var(--color-border); }

@media (max-width: 809px) {
  .resume-section { padding: 40px 0 60px; }
}

.resume-section h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 40px;
}
.resume-section h2 .muted { color: var(--color-text-tertiary); }

/* ---- Experience ---- */
.job-entry {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.job-logo {
  width: 33px;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.job-logo img { width: 100%; height: 100%; object-fit: contain; }

.job-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.job-title { display: flex; flex-direction: column; gap: 8px; }
.job-title h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}
.job-meta {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-tertiary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.job-meta .dot {
  width: 3px;
  height: 7px;
  border-radius: 14px;
  background: var(--color-border);
  display: inline-block;
}

.job-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 960px;
  margin-top: 2px;
}
.job-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-text-tertiary);
}
.job-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary-end);
}

/* ---- Tools ---- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  gap: 16px;
}
@media (max-width: 809px) {
  .tools-grid { grid-template-columns: 1fr; }
}

.tool-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 10px;
  background: var(--color-bg-alt);
  border-radius: 20px;
}
.tool-icon {
  width: 45px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-surface);
}
.tool-icon img { width: 100%; height: 100%; object-fit: cover; }
.tool-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2px;
}
.tool-card p { font-size: 15px; font-weight: 500; color: var(--color-text-tertiary); line-height: 1.4; }

/* ---- Skills ---- */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.skill-pill {
  padding: 12px 16px;
  border-radius: 12px;
  background: #F7F8FA;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
}

/* ---- Education ---- */
.education-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.education-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.education-item p { font-size: 15px; font-weight: 500; color: var(--color-text-tertiary); }
