/* ============================================================
   IMAGE PLACEHOLDER — replace src="" with your image URL
   ============================================================ */
.img-placeholder {
  background: var(--blue-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 240px;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--blue-dim);
}
.img-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit:cover; }

.about-img {
  object-fit: cover;
  border-color: var(--dark);
  border-width: 2px;
  border-style: solid;

}