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

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            color: #000;
            background: #fff;
        }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 16px 80px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .header-inner {
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            width: 95px;
        }

        .nav {
            display: flex;
            gap: 26px;
        }

        .nav a {
            color: #000;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
        }

        .header-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn-login {
            font-size: 14px;
            color: #000;
            text-decoration: none;
        }

        .btn-demo {
            background: linear-gradient(90deg, #02c3ef 0%, #015bf8 100%);
            color: #fff;
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 14px;
            text-decoration: none;
            font-weight: 600;
        }

        /* ===== HERO SECTION ===== */
        .blog-hero {
            padding: 140px 80px 80px;
            background: #f1f1f2;
            border-radius: 50px;
            margin-top: 125px;
        }

        .hero-container {
            max-width: 1240px;
            margin: 0 auto;
        }

        .back-link {
            display: inline-block;
            color: #02c3ef;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 20px;
            font-weight: 400;
            line-height: 1.6;
            color: #666;
        }

        /* ===== TRENDING SECTION ===== */
        /* ===== TRENDING SECTION ===== */
        .trending-section {
            padding: 80px 0;
            background: #fff;
        }

        .trending-container {
            max-width: 1180px;
            /* closer to their content width */
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-title {
            font-size: 44px;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin: 0 0 28px;
            color: #0b0f14;
        }

        /* 2-column grid */
        .trending-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 34px 56px;
            /* row gap, column gap */
        }

        /* horizontal card (image left, content right) */
        .trend-card {
            display: grid;
            grid-template-columns: 168px 1fr;
            column-gap: 18px;
            align-items: start;

            text-decoration: none;
            color: inherit;
        }

        /* image */
        .trend-img {
            width: 168px;
            height: 122px;
            border-radius: 16px;
            overflow: hidden;
            background: #f2f4f7;
        }

        .trend-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1);
            transition: transform 240ms ease;
        }

        /* content */
        .trend-body {
            padding-top: 2px;
        }

        .trend-pill {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: #1d4ed8;
            background: #e9f1ff;
            border-radius: 999px;
            padding: 4px 10px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .trend-title {
            margin: 0 0 14px;
            font-size: 20px;
            font-weight: 800;
            line-height: 1.25;
            color: #0b0f14;
        }

        .trend-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: rgba(11, 15, 20, 0.65);
            font-weight: 500;
        }

        /* vertical divider between meta items */
        .trend-meta .meta-sep {
            width: 1px;
            height: 14px;
            background: rgba(11, 15, 20, 0.25);
            display: inline-block;
        }

        /* hover behavior is subtle */
        .trend-card:hover .trend-title {
            /* text-decoration: underline; */
            text-underline-offset: 3px;
        }

        .trend-card:hover .trend-img img {
            transform: scale(1.04);
        }

        /* responsive */
        @media (max-width: 980px) {
            .trending-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 520px) {
            .section-title {
                font-size: 36px;
            }

            .trend-card {
                grid-template-columns: 140px 1fr;
            }

            .trend-img {
                width: 140px;
                height: 110px;
                border-radius: 14px;
            }

            .trend-title {
                font-size: 18px;
            }
        }

        /* ===== MOST RECENT SECTION ===== */
        /* ===== MOST RECENT ===== */
        .recent-section {
            padding: 96px 0 110px;
            background: #f1f1f2;
            border-radius: 50px;
            -webkit-border-radius: 50px;
            -moz-border-radius: 50px;
            -ms-border-radius: 50px;
            -o-border-radius: 50px;
        }

        .recent-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 80px;
            /* Owner has generous side padding */
        }

        /* Title is LEFT aligned on Owner */
        .recent-title {
            font-size: 44px;
            font-weight: 800;
            letter-spacing: -0.02em;
            text-align: left;
            margin: 0 0 40px;
            color: #0b0f14;
        }

        /* 3-column grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            column-gap: 10px;
            row-gap: 15px;
        }

        /* IMPORTANT: not a “boxed card” */
        .blog-card {
            display: block;
            text-decoration: none;
            color: inherit;
            background: white;
            border-radius: 0;
            padding: 20px;
            overflow: visible;
            transition: none;
            border-radius: 20px;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            -ms-border-radius: 20px;
            -o-border-radius: 20px;
        }

        .blog-card:hover {
            transform: none;
            box-shadow: none;
        }

        /* Image: rounded, big, and the main “card surface” */
        .blog-image {
            width: 100%;
            height: 190px;
            /* Owner-ish height */
            border-radius: 18px;
            overflow: hidden;
            background: #e9e9e9;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1);
            transition: transform 220ms ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.04);
            /* subtle zoom */
        }

        /* Content sits under image with tighter padding */
        .blog-content {
            padding: 14px 0 0;
            /* no big padding like your current */
        }

        /* Category looks like a small pill tag */
        .blog-category {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.02em;
            text-transform: uppercase;

            color: #1d4ed8;
            background: #e9f1ff;
            border-radius: 999px;
            padding: 4px 10px;
            margin: 0 0 10px;
        }

        /* Title: bold, clean */
        .blog-title {
            font-size: 20px;
            font-weight: 800;
            line-height: 1.25;
            margin: 0 0 14px;
            color: #0b0f14;
            min-height: unset;
            /* remove your forced height */
        }

        /* Hover underline (Owner style) */
        .blog-card:hover .blog-title {
            /* text-decoration: underline; */
            text-underline-offset: 3px;
        }

        /* Meta row with divider */
        .blog-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(11, 15, 20, 0.62);
            margin-top: 40px;
            text-align: end;
        }

        .blog-meta .meta-sep {
            width: 1px;
            height: 14px;
            background: rgba(11, 15, 20, 0.25);
            display: inline-block;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .recent-container {
                padding: 0 24px;
            }

            .blog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                column-gap: 28px;
                row-gap: 36px;
            }
        }

        @media (max-width: 640px) {
            .recent-title {
                font-size: 36px;
            }

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

            .blog-image {
                height: 210px;
            }
        }


        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 80px;
            background: #e8dcc8;
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .cta-text h2 {
            font-size: 40px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
            color: #fff;
        }

        .cta-btn {
            display: inline-block;
            background: #000;
            color: #fff;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
        }

        .cta-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 24px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #1a1a1a;
            color: #fff;
            padding: 80px 80px 40px;
        }

        .footer-grid {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-logo img {
            width: 95px;
            margin-bottom: 16px;
        }

        .footer-tagline {
            font-size: 14px;
            color: #999;
        }

        .footer-column h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #999;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-column ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            max-width: 1240px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 12px;
            color: #666;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            font-size: 12px;
            color: #666;
            text-decoration: none;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-container {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .header {
                padding: 14px 20px;
            }

            .blog-hero,
            .trending-section,
            .recent-section,
            .cta-section,
            .footer {
                padding-left: 20px;
                padding-right: 20px;
            }

            .hero-title {
                font-size: 36px;
            }

            .recent-title {
                font-size: 32px;
            }

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

            .trending-card {
                flex-direction: column;
            }

            .trending-image {
                width: 100%;
                height: 220px;
            }

            .trending-content {
                padding: 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }