     /* ================= BLOG DETAIL ================= */

        .blog-detail-page {
            background: #fff;
            color: #111;
        }

        /* HERO */
        .blog-hero {
            position: relative;
            height: 65vh;
            min-height: 420px;
            overflow: hidden;
        }

        .blog-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
        }

        /* HERO CONTENT CENTERED */
        .blog-hero-content {
            position: absolute;
            inset: 0;
            /* full overlay */
            display: flex;
            align-items: center;
            /* vertical center */
            justify-content: center;
            /* horizontal center */
            text-align: center;
            color: #fff;
            padding: 0 20px;
        }

        /* Optional width control for readability */
        .blog-hero-content .blog-title {
            max-width: 800px;
            margin: 0 auto;
        }

        /* TEXT */
        .blog-title {
            font-size: 42px;
            line-height: 1.2;
            max-width: 800px;
        }

        /* CONTENT */
        .blog-container {
            max-width: 850px;
            padding: 80px 20px;
        }

        /* LEAD */
        .blog-lead {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 25px;
        }

        /* HEADINGS */
        .blog-container h2 {
            font-size: 26px;
            margin: 35px 0 15px;
        }

        /* TEXT */
        .blog-container p {
            font-size: 16px;
            color: #444;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        /* IMAGE */
        .blog-image {
            margin: 35px 0;
        }

        .blog-image img {
            width: 100%;
            border-radius: 12px;
        }

        .blog-image span {
            display: block;
            font-size: 12px;
            color: #777;
            margin-top: 8px;
        }

        /* QUOTE */
        blockquote {
            margin: 35px 0;
            padding: 18px 22px;
            border-left: 4px solid var(--orange-main);
            background: #f8f8f8;
            font-style: italic;
            color: #333;
            font-size: 15px;
        }

        /* ================= TABLET ================= */
        @media (max-width: 992px) {

            .blog-title {
                font-size: 30px;
            }

            .blog-container {
                padding: 60px 20px;
            }

            .blog-lead {
                font-size: 18px;
            }

            .blog-container h2 {
                font-size: 22px;
            }
        }

        /* ================= MOBILE ================= */
        @media (max-width: 768px) {

            .blog-hero {
                height: 50vh;
                min-height: 320px;
            }

            .blog-hero-content {
                padding: 0 15px;
            }

            .blog-title {
                font-size: 22px;
            }

            .blog-container {
                padding: 40px 15px;
            }

            .blog-lead {
                font-size: 16px;
            }

            .blog-container p {
                font-size: 15px;
            }

            .blog-container h2 {
                font-size: 20px;
            }

            blockquote {
                font-size: 14px;
            }
        }

        /* ================= SMALL MOBILE ================= */
        @media (max-width: 480px) {

            .blog-title {
                font-size: 20px;
                line-height: 1.3;
            }

            .blog-hero-content {
                bottom: 20px;
            }

            .blog-container {
                padding: 30px 12px;
            }
        }