/* Author box — single posts (2026-08-30) */
.hmmnm-author-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin: 2.5em 0 1em;
    padding: 20px 22px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.22);
    border-radius: 16px;
}
.hmmnm-author-avatar img {
    border-radius: 50%;
    display: block;
}
.hmmnm-author-name {
    font-size: 0.95em;
    color: #64748b;
    margin-bottom: 6px;
}
.hmmnm-author-name a {
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}
.hmmnm-author-name a:hover {
    color: #6366f1;
}
.hmmnm-author-bio {
    font-size: 0.92em;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 8px;
}
.hmmnm-author-links {
    font-size: 0.85em;
    margin: 0;
}
.hmmnm-author-links a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}
.hmmnm-author-links a:hover {
    text-decoration: underline;
}
@media (max-width: 480px) {
    .hmmnm-author-box { flex-direction: column; }
}
