/* === RESUME CONTENT STYLES (extracted from existing styles) === */

/* Scope everything to resume view inside the markdown-rendered detail area */
.container.resume-view .project-detail-content h1 {
  font-size: 2.2em;
  color: var(--border-color);
  text-align: center;
  margin-bottom: 8px;
  margin-top: 16px;
  font-family: "Space Mono", monospace;
}

.container.resume-view .project-detail-content h1 + p {
  text-align: center;
  font-weight: bold;
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.container.resume-view .project-detail-content h2 {
  font-size: 1.4em;
  color: var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 5px;
  margin-top: 35px;
  margin-bottom: 20px;
  font-family: "Space Mono", monospace;
}

.container.resume-view .project-detail-content h3 {
  font-size: 1.2em;
  color: black;
  background-color: transparent;
  margin-top: 25px;
  margin-bottom: 8px;
  font-weight: bold;
  padding: 0;
  border-radius: 0;
  display: block;
}

.container.resume-view .project-detail-content h3 + p {
  margin-top: 5px;
  font-style: italic;
  color: #555;
}

.container.resume-view .project-detail-content hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 30px 0;
}

.container.resume-view .project-detail-content ul {
  margin: 15px 0;
  padding-left: 0;
  list-style: none;
}

.container.resume-view .project-detail-content ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.container.resume-view .project-detail-content ul li:before {
  content: "•";
  color: var(--border-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.container.resume-view .project-detail-content strong {
  color: black;
  font-weight: bold;
}

/* Opt-in blue bold variants for selected items in markdown */
.container.resume-view .project-detail-content strong.resume-blue,
.container.resume-view .project-detail-content b.resume-blue,
.container.resume-view .project-detail-content .resume-strong-blue {
  color: var(--border-color) !important;
}

/* If using span helper, ensure bold weight */
.container.resume-view .project-detail-content .resume-strong-blue {
  font-weight: bold;
}

.container.resume-view .project-detail-content em {
  color: #666;
  font-style: italic;
}

/* Resume section spacing */
.container.resume-view .project-detail-content > h2:first-child {
  margin-top: 0;
}

/* Responsive adjustments for resume */
@media (max-width: 767px) {
  .container.resume-view .project-detail-content h1 {
    font-size: 1.8em;
  }

  .container.resume-view .project-detail-content h2 {
    font-size: 1.2em;
  }

  .container.resume-view .project-detail-content h3 {
    font-size: 1.1em;
  }
}

/* Mobile resume-specific H3 overrides (mirror existing mobile behavior) */
.container.mobile-project-view.resume-view .project-detail-content h3,
.container.resume-view.mobile-project-view .project-detail-content h3 {
  color: black !important;
  background-color: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: block !important;
}

/* (Optional) Content index overrides under resume view — harmless if unused */
.container.resume-view .content-index-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.container.resume-view .content-index-box ul li {
  margin-bottom: 0;
  padding-left: 0;
  position: static;
  line-height: auto;
}

.container.resume-view .content-index-box ul li:before {
  display: none;
}

/* --- Resume-only mobile overrides --- */
@media (max-width: 480px) {
  /* Remove bottom padding on mobile project info only for resume */
  .container.resume-view.mobile-project-view .mobile-project-info,
  .container.mobile-project-view.resume-view .mobile-project-info {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}


