        /* --- SCOPED CSS FOR BYLINE --- */
        .FmgByline {
            /* Variables from Style Guide */
            --fmg-ink: var(--fmg-color-ink-900, #141633);
            --fmg-purple: var(--fmg-color-accent, #7334F0);
            --fmg-purple-soft: rgba(115, 52, 240, 0.22);
            --fmg-green-text: #166534;
            --fmg-green-icon: #059669;
            --fmg-grey-text: #6B7280;
            
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px; 
            margin: 0 0 32px 0;
            padding: 0;
            width: 100%;
            font-family: 'Nunito', sans-serif; /* Body font default */
        }

        /* Profile Unit */
        .FmgByline__Profile {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Avatar: Increased to 44px for better visibility */
        .FmgByline__Avatar {
            width: 44px;  
            height: 44px;
            border-radius: 50% !important;
            object-fit: cover;
            /* "Glass" Border */
            border: 2px solid white;
            box-shadow: 0 2px 8px rgba(20, 22, 51, 0.1);
            margin: 0 !important;
            display: block;
        }

        /* Text Wrapper */
        .FmgByline__Meta {
            display: flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1.1;
        }

        /* LABELS (Written By / Reviewed By) */
        .FmgByline__Role {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--fmg-grey-text);
            font-weight: 700;
            margin-bottom: 2px;
        }
        
        .FmgByline__Role--medical {
            color: var(--fmg-green-text); /* Dark Green for text readability */
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .FmgByline__Icon {
            color: var(--fmg-green-icon); /* Brighter green for the check */
            font-size: 0.8rem;
        }

        /* NAMES */
        .FmgByline__Name {
            font-family: 'Montserrat', sans-serif; /* Heading Font */
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--fmg-purple); /* Electric Purple */
            text-decoration: none;
            position: relative;
            display: inline-block;
            transition: opacity 0.2s ease;
        }
        
        /* The "Glass" Underline Effect */
        .FmgByline__Name::after {
            content: '';
            display: block;
            width: 100%;
            height: 2px;
            background: var(--fmg-purple-soft);
            /* IMPROVEMENT: Increased margin to 3px to clear descenders (y, j, g) */
            margin-top: 3px;
            border-radius: 2px;
        }

        .FmgByline__Name:hover {
            opacity: 0.8;
            text-decoration: none;
        }

        /* DATE (Pushed to Right) */
        .FmgByline__Date {
            margin-left: auto; 
            /* IMPROVEMENT: Reduced size/weight for better hierarchy */
            font-size: 0.75rem; 
            color: #9CA3AF; /* Lighter grey */
            font-weight: 500;
        }

        /* Mobile Adjustments */
        @media (max-width: 600px) {
            .FmgByline {
                gap: 16px;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .FmgByline__Date {
                margin-left: 0; /* Reset push on mobile */
                margin-top: 4px;
                font-size: 0.75rem;
                padding-top: 12px;
                border-top: 1px solid #F3F4F6;
                width: 100%;
                color: var(--fmg-grey-text);
            }
        }
