
 
        /* Base styles for the page header */
        .page-header {
            background-color: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            padding: 1.5rem;
            text-align: center;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1a202c;
        }

        .page-header p {
            text-align: center;
            font-size: 1rem;
            color: #6b7280;
            margin-top: 0.75rem;
        }


        .blog-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 1.5rem;
        }

            @media (min-width: 768px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            }

            @media (min-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
            }

        /* The clickable link that wraps the card and info */
        .blog-item-link {
            display: block;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        /* The card container */
        .blog-card {
            background-color: white;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        /* Hover effect on the card itself */
        .blog-item-link:hover .blog-card {
            transform: translateY(-8px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .blog-thumbnail-container {
            overflow: hidden;
            aspect-ratio: 3 / 2;
        }

        .blog-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease-in-out;
        }

        /* Hover effect on image inside the card */
        .blog-item-link:hover .blog-thumbnail {
            transform: scale(1.1);
        }

        .blog-card-placeholder {
            width: 100%;
            height: 100%;
            background-color: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
        }

        /* The information text that remains static */
        .blog-text {
            padding-top: 0.75rem;
            text-align: center;

        }
        .blog-text h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #09008b;
            margin-bottom: 0.25rem;

            
        }
        .blog-text h3:hover{
            text-decoration: underline;
            transform: translateY(-3px);
            
        }
        .no-posts {
            text-align: center;
            color: #ff5050;
            font-size: 1.125rem;
        }

