/* Resume Section */
.resume {
  margin-left: var(--sidebar-width);
  padding: 80px 60px;
  min-height: auto;
  background: var(--bg-light);
  width: calc(100% - var(--sidebar-width));
}

.resume h2 {
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}

.resume h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--bg-gradient-alt);
  border-radius: 2px;
}

.resume embed {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

