        .insights-grid-section {
            background: #f8f9fb;
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            gap: 35px;
        }

        .insight-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.35s ease;
            text-decoration: none;
            color: #111;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }

        .insight-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
        }

        .insight-card img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .insight-card:hover img {
            transform: scale(1.05);
        }

        .insight-card .content {
            padding: 25px 25px 30px;
            background: #fff;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .insight-card h3 {
            font-size: 20px;
            font-weight: 600;
            line-height: 1.5;
            margin-bottom: 10px;
            color: #0d1a3a;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .insight-card h3 i {
            font-size: 14px;
            opacity: 0;
            transform: translateX(-5px);
            transition: all 0.3s ease;
            color: #1b3a8f;
        }

        .insight-card:hover h3 {
            color: #1b3a8f;
        }

        .insight-card:hover h3 i {
            opacity: 1;
            transform: translateX(0);
        }

        .insight-card p.date {
            font-style: italic;
            color: #7b8494;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .insight-card p.desc {
            font-size: 15px;
            color: #333;
            line-height: 1.7;
            margin: 0;
            flex-grow: 1;
        }

        @media (max-width: 768px) {
            .insight-card img {
                height: 180px;
            }

            .insight-card h3 {
                font-size: 18px;
            }

            .insight-card p.desc {
                font-size: 14.5px;
            }
        }