/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--rule);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 4rem;
  align-items: start;
}

.hero__role {
  margin-bottom: 1rem;
}

.hero__photo {
  width: 300px;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--rule);
  position: relative;
  flex-shrink: 0;
}

.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__photo-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 400;
  color: var(--text-tertiary);
}

/* ============================================================
   EDUCATION ENTRIES
   ============================================================ */
.edu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.edu-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule-light);
  align-items: start;
}

.edu-item:last-child { border-bottom: none; }

.edu-logo {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}

.edu-logo img { width: 100%; height: 100%; object-fit: contain; }

.edu-name {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.edu-field { color: var(--text-secondary); font-size: 0.875rem; margin-bottom: 0.2rem; }
.edu-date { font-size: 0.8125rem; color: var(--text-tertiary); margin-bottom: 0.5rem; }

/* ============================================================
   EXPERIENCE ENTRIES
   ============================================================ */
.exp-list {
  display: flex;
  flex-direction: column;
}

.exp-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule-light);
  align-items: start;
}

.exp-item:last-child { border-bottom: none; }

.exp-logo {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  font-size: 0.6rem; font-weight: 600; color: var(--text-tertiary);
}

.exp-logo img { width: 100%; height: 100%; object-fit: contain; }

.exp-title {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.exp-company { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.15rem; }
.exp-date { font-size: 0.8125rem; color: var(--text-tertiary); margin-bottom: 0.5rem; }

/* ============================================================
   AWARDS
   ============================================================ */
.awards-list {
  display: flex;
  flex-direction: column;
}

.award-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-light);
}

.award-item:last-child { border-bottom: none; }

.award-name {
  font-size: 0.9375rem;
  font-weight: 500;
}

.award-detail {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: right;
  flex-shrink: 0;
}

/* ============================================================
   SKILLS
   ============================================================ */
.skills-list {
  display: flex;
  flex-direction: column;
}

.skill-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--rule-light);
  align-items: baseline;
}

.skill-row:last-child { border-bottom: none; }

.skill-category {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__photo { width: 140px; height: 170px; order: -1; }

  .skill-row { grid-template-columns: 1fr; gap: 0.25rem; }

  .award-item { flex-direction: column; gap: 0.25rem; }
  .award-detail { text-align: left; }
}
