/* Generic "missing asset" placeholder box.
   Use on any element standing in for a photo/logo/graphic that still
   needs to be exported from Figma and dropped into Content/img/v2/...
   Grep for "ce-placeholder" to find every spot that still needs an asset. */

.ce-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed #c9cfda;
    border-radius: var(--ce-radius-sm);
    background: repeating-linear-gradient(45deg, #f4f6fa, #f4f6fa 10px, #eef1f6 10px, #eef1f6 20px);
    color: #6b7280;
    font-size: 0.7rem;
    font-weight: var(--ce-font-weight-semibold);
    line-height: 1.2;
    padding: 6px;
}

.ce-placeholder--circle {
    border-radius: 50%;
}
