/* Click-to-edit for staff: the rendered text and the textarea that replaces it.
   Shared by /about/ and the homepage hero, so both pages edit the same way. */

.md-edit.staff .md-rendered { cursor: pointer; }

.md-edit.staff .md-rendered:hover {
    outline: 2px dashed #b8962e;
    outline-offset: 3px;
    border-radius: 4px;
}

.md-edit textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px 12px;
    border: 2px solid #b8962e;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    box-sizing: border-box;
    resize: vertical;
    display: none;
}

.md-edit.editing textarea { display: block; }
.md-edit.editing .md-rendered { display: none; }

@media (max-width: 480px) {
    .md-edit textarea { padding: 8px 2px; }
}
