/* ============================================================
   PGM Reviewed By — frontend styles
   Renders the "Reviewed by Jane Doe, CCS-P" line at the top of
   single blog posts, visually continuing the theme's .entry-meta.
   Theme palette: #1b4253 (primary), #c6882d (gold), #5a6a75 (muted)
   ============================================================ */

.pgm-reviewed-by-line {
    margin: -8px 0 18px;
    padding: 0;
    color: #5a6a75;
    font-size: .95rem;
    font-style: italic;
    line-height: 1.4;
}

.pgm-reviewed-by-label {
    font-weight: 600;
    color: #1b4253;
    font-style: normal;
}

.pgm-reviewed-by-name {
    color: #1b4253;
    text-decoration: none;
    font-style: normal;
    font-weight: 600;
}

.pgm-reviewed-by-name:hover,
.pgm-reviewed-by-name:focus {
    color: #c6882d;
    text-decoration: underline;
}

.pgm-reviewed-by-credentials {
    color: #c6882d;
    font-weight: 600;
    font-style: normal;
}

/* Responsive: collapse the negative top-margin on small screens to
   prevent overlap when the entry-meta wraps onto multiple lines.   */
@media screen and (max-width: 720px) {
    .pgm-reviewed-by-line {
        margin-top: 4px;
    }
}
