
        .blog-card img {
            border-radius: 10px 10px 0 0;
        }

        .meta-info {
            font-size: 14px;
            color: #6c757d;
        }

        .meta-info i {
            color: #28a745;
            margin-right: 5px;
        }

        .read-btn {
            background: #28a745;
            border: none;
            padding: 10px 20px;
            font-weight: 500;
        }

        .read-btn:hover {
            background: #218838;
        }

        .sidebar-card {
            border-radius: 12px;
        }

        .category-item {
            background: #f8f9fa;
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            color: #000;
            transition: 0.3s;
        }

        .category-item:hover {
            background: #e9ecef;
        }

        .section-title {
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .section-title::after {
            content: "";
            width: 50px;
            height: 3px;
            background: #28a745;
            position: absolute;
            left: 0;
            bottom: -8px;
        }
  