.resume-section {
  background: radial-gradient(circle at top left, #151827 0, #080912 52%, #04040c 100%);
}

.resume-section .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.resume-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.resume-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.resume-card {
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  background: linear-gradient(145deg, #141622 0, #0a0b15 50%, #05050c 100%);
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.78);
}

.resume-role {
  font-size: 1.1rem;
  margin: 0 0 6px;
}

.resume-meta {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}

.resume-description {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.skills-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}

.skills-column {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.skills-heading {
  font-size: 1.1rem;
  margin: 0 0 14px;
}


.skill {
  margin-bottom: 18px;
  width: 100%;
}

.skill-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: 6px;
}

.skill-bar {
  width: 100%;
  min-width: 0;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-progress {
  display: block;
  height: 100%;
  width: 0;
  min-width: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    oklch(58% 0.16 264.665),
    oklch(46% 0.15 264.665)
  );
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px color-mix(in srgb, var(--color-accent) 30%, transparent);
  will-change: width;
}

@media (max-width: 1024px) {
  .resume-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .skills-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

