/* ICP 2032 — image slot styles.
   Image slots keep a stable aspect ratio; theme.css tunes colours and borders. */

.icp-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 120px;
  padding: 24px;
  text-align: center;
  color: var(--ph-fg, #6b6b6b);
  background-color: var(--ph-bg, #f2f2f0);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 11px,
    var(--ph-stripe, rgba(0, 0, 0, 0.04)) 11px,
    var(--ph-stripe, rgba(0, 0, 0, 0.04)) 12px
  );
  border: var(--ph-border, 1px dashed rgba(0, 0, 0, 0.25));
  border-radius: var(--ph-radius, 12px);
}

.icp-placeholder__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icp-placeholder__note {
  font-size: 13px;
  line-height: 1.4;
  max-width: 42ch;
  opacity: 0.85;
}

/* Hero placeholder fills its band. Anchor its label to the top-left so it never
   collides with hero headline/overlay content, which sits lower in the band. */
.icp-placeholder--hero {
  min-height: 100%;
  height: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px 10px;
  padding: 20px 24px;
  text-align: left;
  border-radius: var(--ph-radius-hero, var(--ph-radius, 12px));
}

.icp-placeholder--hero .icp-placeholder__note {
  max-width: 32ch;
}
