/* ============================================
   RESUME PAGE STYLES
   ============================================ */

.resume-header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.resume-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

/* PDF viewer */
.resume-viewer {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.resume-embed {
  width: 100%;
  height: min(80vh, 1000px);
  display: block;
  border: 0;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .resume-embed {
    height: 70vh;
  }
}
