---
title: "Our Editorial Team"
url: "https:\/\/buzzwiredaily.com\/our-editorial-team\/"
date: "2025-12-29"
author: "BWD Publishing"
reading_time_minutes: 4
categories: []
tags: []
ai_agent_priority: high
webmcp_tools_available: ["getPostContent","getPostMeta","getRelatedPosts","navigateToCategory","navigateTo"]
---

# Our Editorial Team

{

      "@context": "https://schema.org",

      "@type": "NewsMediaOrganization",

      "name": "BuzzWire Daily",

      "legalName": "BuzzWire Daily Media",

      "url": "https://buzzwiredaily.com",

      "slogan": "Raw News, Real Buzz",

      "foundingDate": "2024",

      "masthead": "https://buzzwiredaily.com/editorial-team/",

      "email": "contact@buzzwiredaily.com",

      "ethicsPolicy": "https://buzzwiredaily.com/editorial-team/#standards",

      "employee": [

        {

          "@type": "Person",

          "name": "Tanvir Shahriar",

          "jobTitle": "Editor-in-Chief",

          "url": "https://www.linkedin.com/in/i-am-tanvir-shahriar/"

        },

        {

            "@type": "Person",

            "name": "Jony Hasan",

            "jobTitle": "Senior Reporter",

            "url": "https://muckrack.com/jony-hasan"

        },

        {

            "@type": "Person",

            "name": "Ms Sharmin",

            "jobTitle": "Lead Reporter",

            "url": "https://muckrack.com/ms-sharmin"

        }

      ]

    }


        /* * BRANDING VARIABLES [cite: 178]

         */

        :root {

            --color-primary: #E61E2B;      /* Electric Red */

            --color-hover: #FF0022;        /* Voltage Red */

            --color-black: #0D0D0D;        /* Deep Black */

            --color-dark-gray: #2B2B2B;    /* Charcoal Gray */

            --color-meta: #4A4A4A;         /* Shadow Gray */

            --color-white: #FFFFFF;        /* Pure White */

            --color-bg-alt: #F8F8F8;       /* Off-White */


            --font-head: 'Bebas Neue', sans-serif;

            --font-sub: 'Roboto Condensed', sans-serif;

            --font-body: 'Inter', sans-serif;


            --spacing-s: 16px;

            --spacing-m: 24px;

            --spacing-l: 32px;

            --spacing-xl: 48px;

        }


        /* RESET & BASE */

        * { box-sizing: border-box; margin: 0; padding: 0; }


        body {

            font-family: var(--font-body);

            background-color: var(--color-white);

            color: var(--color-black);

            line-height: 1.6;

            -webkit-font-smoothing: antialiased;

        }


        /* TYPOGRAPHY [cite: 26] */

        h1, h2, h3 {

            line-height: 1.1;

            text-transform: uppercase;

            letter-spacing: -0.5px;

        }


        h1 {

            font-family: var(--font-head);

            font-size: clamp(48px, 5vw, 72px); /* Responsive [cite: 29] */

            color: var(--color-black);

            margin-bottom: var(--spacing-m);

        }


        h2 {

            font-family: var(--font-head);

            font-size: 36px;

            color: var(--color-black);

            margin-bottom: var(--spacing-m);

            border-bottom: 2px solid var(--color-primary); /* Brand Divider [cite: 85] */

            display: inline-block;

            padding-bottom: 4px;

        }


        h3 {

            font-family: var(--font-sub); /* Roboto Condensed [cite: 34] */

            font-size: 24px;

            color: var(--color-primary);

            margin-bottom: 8px;

            letter-spacing: 0;

        }


        p {

            margin-bottom: var(--spacing-m);

            font-size: 18px; /* [cite: 41] */

        }


        a {

            color: var(--color-primary);

            text-decoration: none;

            font-weight: 700;

            transition: color 0.2s ease;

        }


        a:hover {

            color: var(--color-black);

            text-decoration: underline;

        }


        /* LAYOUT UTILITIES [cite: 120] */

        .container {

            max-width: 1200px;

            margin: 0 auto;

            padding: 0 var(--spacing-s);

        }


        .section {

            padding: var(--spacing-xl) 0;

        }


        /* HEADER SECTION */

        .page-header {

            background-color: var(--color-bg-alt);

            padding: 64px 0;

            border-bottom: 1px solid #ddd;

            text-align: center;

        }


        .page-lead {

            max-width: 720px;

            margin: 0 auto;

            font-size: 20px;

            color: var(--color-dark-gray);

        }


        /* TEAM GRID [cite: 121] */

        .team-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 32px;

            margin-top: var(--spacing-l);

        }


        /* CARD COMPONENT [cite: 104] */

        .team-card {

            background: var(--color-white);

            border: 1px solid var(--color-bg-alt);

            padding: 0; /* Zero padding on container */

            transition: transform 0.2s ease, box-shadow 0.2s ease;

            /* Sharp corners [cite: 86] */

            border-radius: 0;

        }


        .team-card:hover {

            transform: translateY(-4px);

            box-shadow: 0px 4px 12px rgba(13,13,13,0.15); /* [cite: 87] */

            border-color: var(--color-primary);

        }


        /* Placeholder image styles */

        .card-image {

            width: 100%;

            height: 300px;

            background-color: var(--color-dark-gray);

            position: relative;

            overflow: hidden;

        }


        .card-image img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            /* High Contrast Filter [cite: 80] */

            filter: contrast(1.1);

        }


        .card-image::after {

            /* Red Overlay [cite: 83] */

            content: '';

            position: absolute;

            top: 0; left: 0; right: 0; bottom: 0;

            background: linear-gradient(to top, rgba(230, 30, 43, 0.2), transparent);

            pointer-events: none;

        }


        .card-content {

            padding: 24px; /* [cite: 108] */

        }


        .role-badge {

            display: inline-block;

            font-family: var(--font-sub);

            font-size: 14px;

            text-transform: uppercase;

            color: var(--color-meta);

            margin-bottom: 8px;

            letter-spacing: 1px;

        }


        .social-links {

            margin-top: 16px;

            font-size: 14px;

        }


        /* CONTENT BLOCK (Standards) */

        .content-block {

            max-width: 800px; /* Readability [cite: 133] */

        }


        .policy-item {

            margin-bottom: 32px;

            padding-left: 24px;

            border-left: 4px solid var(--color-primary); /* [cite: 188] */

        }


        .policy-item strong {

            display: block;

            font-family: var(--font-sub);

            font-size: 20px;

            color: var(--color-black);

            margin-bottom: 8px;

        }


        /* CONTACT TABLE */

        .contact-table {

            width: 100%;

            border-collapse: collapse;

            margin-top: 24px;

        }


        .contact-table td {

            padding: 16px 0;

            border-bottom: 1px solid #eee;

            vertical-align: top;

        }


        .contact-label {

            font-family: var(--font-sub);

            font-weight: 700;

            width: 150px;

            color: var(--color-primary);

        }


        /* RESPONSIVE */

        @media (max-width: 768px) {

            h1 { font-size: 48px; }

            .team-grid { grid-template-columns: 1fr; }

            .policy-item { padding-left: 16px; }

        }





## BWD Editorial Team


                Raw News, Real Buzz. Meet the journalists and editors dedicated to unfiltered, electrifying urban news coverage.
            




    



## Newsroom Leadership




                    
                

                    Editor-in-Chief

### Tanvir Shahriar

Leading the strategic vision of BuzzWire Daily, ensuring every story meets our standards for "Voltage" and accuracy.



                        [LinkedIn Profile →](https://www.linkedin.com/in/i-am-tanvir-shahriar/)
                    




                    
                

                    Managing Editor

### Marcus Thorne

Coordinates daily news coverage and manages the newsroom flow to keep the pulse fast and relevant.



                        [View Profile →](#)
                    


    





## Reporting Team




                        
                    

                        Senior Reporter (Politics)

### Jony Hasan

Specializing in hard-hitting news and investigative pieces, getting the facts that others miss.



                            [MuckRack Profile →](https://muckrack.com/jony-hasan)
                        




                        
                    

                        Lead Reporter (Culture)

### Ms Sharmin

Covering the intersection of modern culture and society, capturing the "Real Buzz" of the streets.



                            [MuckRack Profile →](https://muckrack.com/ms-sharmin)
                        




                        
                    

                        Entertainment Correspondent

### Sarah Jenkins

From viral trends to celebrity deep-dives, Sarah brings the "Neon Red" energy to our entertainment section.



                            [View Profile →](#)
                        







## Editorial Standards

At BuzzWire Daily, we adhere to strict journalistic standards to ensure accuracy and trust. We believe in reporting that is uncut, unmissable, and above all, correct.



                **1. Fact-Checking & Verification**

                Every story is verified before publication. We prioritize accuracy over speed, ensuring all breaking news is corroborated by reliable sources.
            

                **2. Corrections Policy**

                We are committed to transparency. If an error occurs, we will correct it immediately and note the correction at the bottom of the article.
            

                **3. Independence**

                Our editorial team operates independently of our advertisers. No outside entity influences our coverage or editorial voice.
            

## Contact Us



General Inquiries
[contact@buzzwiredaily.com](mailto:contact@buzzwiredaily.com)


News Tips
[contact@buzzwiredaily.com](mailto:contact@buzzwiredaily.com)


Corrections
[contact@buzzwiredaily.com](mailto:contact@buzzwiredaily.com)

---
*Source: [BuzzWireDaily - Gossip, Gangsters &amp; Blockbuster Buzz](https://buzzwiredaily.com/our-editorial-team/) | Processed by WebMCP Nexus Priority Stream*