/* ============================================
   PROJECT CARDS & WORKSPACE SCREENSHOTS
   ============================================ */

/* Projects Dashboard Card Images */
.project-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated-2);
  border-bottom: 2px solid var(--border);
  padding: 1.25rem;
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-card__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-med);
}

.project-card:hover .project-card__image {
  transform: scale(1.05);
}

/* Detailed Case Study Role Screenshots */
.role-image-container {
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 3px;
  box-shadow: 4px 4px 0 0 var(--shadow-color);
  overflow: hidden;
  background: transparent;
}

[data-theme="dark"] .role-image-container {
  border-color: #8e8e93;
  background: #8e8e93;
  box-shadow: 4px 4px 0 0 #8e8e93;
}

.role-screenshot-img {
  width: calc(100% + 4px);
  max-width: none;
  height: auto;
  display: block;
  border-radius: 4px;
  margin-left: -2px;
  margin-top: -2px;
  margin-bottom: -10px;
  image-rendering: -webkit-optimize-contrast;
}

