.hero-header {
        display: flex;
        gap: 2rem;
        align-items: flex-start;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 2px solid var(--color-red);
    }

    .hero-photo {
        width: 180px;
        height: 240px;
        object-fit: cover;
        border-radius: 4px;
        border: 3px solid #d4af37;
        flex-shrink: 0;
    }

    .hero-photo-placeholder {
        width: 180px;
        height: 240px;
        background: #ddd;
        border-radius: 4px;
        border: 3px solid #d4af37;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 3rem;
        flex-shrink: 0;
    }

    .hero-info h2 {
        font-size: 1.9rem;
        color: #0b2545;
        margin-bottom: 0.4rem;
    }

    .hero-meta {
        color: #777;
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.8;
    }

    .hero-bio {
        line-height: 1.75;
        color: #333;
    }

    .messages-section h3 {
        font-size: 1.3rem;
        color: #0b2545;
        margin-bottom: 1.25rem;
    }

    .message-card {
        background: #fff;
        border-left: 4px solid #d4af37;
        padding: 1rem 1.25rem;
        margin-bottom: 1rem;
        border-radius: 0 4px 4px 0;
    }

    .message-card .msg-meta {
        font-size: 0.85rem;
        color: #888;
        margin-bottom: 0.5rem;
    }

    .message-card .msg-body {
        line-height: 1.7;
        color: #333;
    }

    .add-message-form {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .add-message-form h3 {
        font-size: 1.1rem;
        color: #0b2545;
        margin-bottom: 1rem;
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1rem; }

    label { display: block; font-size: 0.9rem; color: #555; margin-bottom: 0.3rem; }

    input[type=text], textarea {
        width: 100%;
        padding: 0.55rem 0.75rem;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-family: Georgia, serif;
        font-size: 0.95rem;
        background: #fafafa;
    }

    textarea { resize: vertical; min-height: 100px; }
    .error { color: #c0392b; font-size: 0.85rem; margin-top: 0.25rem; }
